DBNorm is a full-stack academic project developed as part of the B.Tech final year curriculum.
The system focuses on analyzing relational database schemas and transforming them into well-structured normal forms.
B.Tech Final Year Major Project
DBNorm
├── frontend # React application
└── backend # Spring Boot application
Database normalization is a critical process in relational database design, but performing it manually is time-consuming and error-prone.
Students and developers often face difficulties in identifying functional dependencies and determining the correct normal form.
There is a lack of simple, interactive tools that can automatically analyze schemas and guide users through the normalization process.
DBNorm addresses this problem by providing an automated and user-friendly database normalization system.
- To analyze relational database schemas provided by the user
- To identify functional and multivalued dependencies
- To determine the highest normal form of a given schema
- To normalize schemas up to 3NF, BCNF, 4NF, and 5NF
- To provide a simple and interactive web-based interface
- React.js
- HTML5
- CSS3
- JavaScript
- Spring Boot
- Java
- RESTful APIs
- Hibernate / JPA
DBNorm follows a modular client–server architecture.
The frontend, developed using React and Vite, allows users to input database schemas and functional dependencies.
The backend, implemented using Spring Boot, applies normalization algorithms and business logic on the received input.
The computed normal form and normalized schemas are then returned to the frontend for visualization, without using persistent storage.
- Accepts user-defined relational schemas and functional dependencies
- Automatically determines the current normal form of a schema
- Performs normalization up to 3NF, BCNF, 4NF, and 5NF
- Applies normalization logic dynamically without persistent storage
- Displays normalized schemas and results in real time
- Simple and user-friendly web interface
- Node.js and npm
- Java JDK 8 or above
- Maven
Frontend:
- cd frontend
- npm install
- npm start
Backend:
- cd backend
- mvn clean install
- mvn spring-boot:run
Sanjeevni Srivastava
B.Tech – Computer Science and Engineering
🔗 LinkedIn: https://www.linkedin.com/in/sanjeevni-srivastava-17492a2b9/
This project was developed as a part of the B.Tech final year major project, focusing on practical implementation of database normalization concepts using a full-stack approach.


