What is Transaction in DBMS ?
If we need one or more database access operations, we have a logical unit of processing called Database Transaction. In...
Normal Forms in DBMS ?
There are 4 types of form in Normalization : First Normal Form(1NF) If a relation does not contain any multi valued...
What are the types of databases ?
The different types of databases are: Hierarchical Database In this database data is organized in a tree like structure....
What is DBMS Queries ?
SQL Commands SQL commands are instruction which is used to communicate with the database. It is also used to perform...
What is an XML Database in DBMS
For storing huge amount of data in xml format we use XML format. As XML is rapidly growing in every field, we need to have a...
What is Relational Algebra in DBMS ?
A procedural query language which is used widely is known as Relational Algebra. Instances of relation are given as input...
What do you understand by Query Optimization ?
It is a phase which identifies a plan for evaluation query that has the least estimated cost. We can use query optimizer...
Explain levels of abstraction in DBMS ?
There are 3 levels of abstraction in DBMS Physical Level It is the lowest level of data abstraction and is managed by DBMS....
What is Hierarchical model in DBMS ?
Features of Hierarchical Model This model is based on the tree structure. This model contains a collection of records that...
What is Join in DBMS and what are its types ?
DBMS join is a binary operation that allows combining join products and selecting in one single statement. If data needs to...
What is ER Model in DBMS ?
ER stands for Entity-Relationship model. It is a high level data model. If any data elements or relationship of any...
What are the disadvantages of DBMS ?
High Cost Disadvantage of DBMS is its high cost of software and hardware. For users to use a DBMS they require a high speed...
Different types of Keys in DBMS
There are 7 keys in DBMS Primary Key Key which is used to identify one and only instance of entity uniquely. An Enity can...
What are the data models in DBMS ?
There are 4 data models in DBMS Relational Data Model Edgar F.Codd described the model in 1969. Data are designed using...
Difference between Trigger and Stored procedure in DBMS
Triggers Stored Procedures A Trigger is created in such a way that it fires when a specific event occurs. A group of sql...
Difference between DBMS and File System
File System DBMS A software that manages and organizes the file in storage medium is called as file system. DBMS is ...
What are Database Management Tools ?
phpMyAdmin: PhpMyAdmin is the most popular open-source web-based database management tool by MySQL. Using phpMyAdmin we can...
What is DBMS Utilities ?
Data Loading Utility: Data loading utility helps to load data from an external format without writing programs. Backup...
Difference between RDBMS and DBMS ?
DBMS RDBMS Data is stored in file format Data is stored in table format. Data is stored either in a hierarchical form or...
Difference between Delete and Truncate
Delete Truncate Used to delete rows from a table based on the condition provided on the where clause. Used to delete...