Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.

DebaA17/DBMS-LAB

Repository files navigation

DBMS Lab Solutions

Oracle SQL CI

Academic DBMS lab solutions aligned with the 4th-semester syllabus (BPPIMT), written specifically for Oracle Database Express Edition (Oracle XE).


📂 Navigation

🎓 Lab Notebook Preparation

📝 Semester Assignments


⚡ Quick Start

Database Reset

To drop all existing tables and start with a clean environment in your Oracle APEX or SQL workspace, run this block:

BEGIN
  FOR r IN (SELECT table_name FROM user_tables) LOOP
    EXECUTE IMMEDIATE 'DROP TABLE "' || r.table_name || '" CASCADE CONSTRAINTS PURGE';
  END LOOP;
END;
/

📦 Installer Bundle

The Debian-compatible installation bundle Linux-DBMS.zip (Oracle XE 10g) is hosted on GitHub Releases.

About

This repository contains Database Management System (DBMS) lab solutions for BCA 4th Semester students of BPPIMT, Salt Lake for the Academic Session 2025–26. It includes SQL queries, database design programs, normalization exercises, and other practical implementations as per the academic syllabus.

Topics

Resources

License

Stars

4 stars

Watchers

0 watching

Forks

Contributors