Bhanu Priya has Published 1581 Articles

What are the TCL commands in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 12:24:53

13K+ Views

Transaction Control language is a language that manages transactions within the database.It is used to execute the changes made by the DML statements.TCL CommandsTransaction Control Language (TCL) Commands are:Commit − It is used to save the transactions in the database.Rollback − It is used to restore the database to that ... Read More

What are the DDL commands in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 12:14:53

13K+ Views

Data definition language (DDL) is a language that allows the user to define the data and their relationship to other types of data.Data Definition language statements work with the structure of the database table.Various data types used in defining columns in a database tableIntegrity and value constraintsViewing, modifying and removing ... Read More

What is the procedure to access database users in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 12:09:24

1K+ Views

Let’s see the procedure to access database users in DBMS step by step.Step 1 − The request from the user is passed to the DBMS user interface, where oracle engine locates the files for the given relation.The relation is nothing but − table schemaLinking between the recordsStep 2 − The ... Read More

Describe the College Management system in three layer architecture?

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 12:08:35

514 Views

The three-schema architecture divides the database into three-level used to create a separation between the physical database and the user application. In simple terms, this architecture hides the details of physical storage from the user.The database administrator (DBA) responsible is to change the structure of database storage without affecting the ... Read More

Explain the Network Model in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 09:53:32

19K+ Views

The network model was created to represent complex data relationships more effectively when compared to hierarchical models, to improve database performance and standards.It has entities which are organized in a graphical representation and some entities are accessed through several paths. A User perceives the network model as a collection of ... Read More

What is a Data Model in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 09:52:18

4K+ Views

It is a collection of concepts that can be used to describe the structure of a database. The structure of the database means data types, relationships and constraints that should hold the data nothing but it provides the necessary means to achieve the abstraction.A Model is basically a conceptualization between ... Read More

Check which FD violates 2NF in the given relation and decompose R into 2NF

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 09:46:23

5K+ Views

Normalization is the process of organizing the data in a database. It helps in removing the duplicate values in the database. Normalization divides the large table into smaller tables and links them using relationships.The normal form is used to reduce redundancy from the database table. Normalization is the name given ... Read More

Explain about triggers and active databases in DBMS

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 09:45:12

11K+ Views

A trigger is a procedure which is automatically invoked by the DBMS in response to changes to the database, and is specified by the database administrator (DBA). A database with a set of associated triggers is generally called an active database.Parts of triggerA triggers description contains three parts, which are ... Read More

Explain about 2NF with an example in DBMS

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 09:44:03

2K+ Views

In the 2NF, relation must be in 1NF. In the second normal form, all the non-key attributes are fully functional dependent on the primary key. Or a relation is in 2NF, when it is in 1NF and there is no partial dependency.ExampleConsider a relation R (rollno, name, subjectcode, subjectname, duration)RollnoNameSubjectcodeSubjectnameDuration1HariS1C60 ... Read More

What is an equivalence of sets of functional dependencies?

Bhanu Priya

Bhanu Priya

Updated on 03-Jul-2021 09:33:17

5K+ Views

A set of functional dependencies (FD) F is said to cover another set of functional dependencies E if every FD in E is also in F closure; that is, if every dependency in E can be inferred from F.Alternatively, we can say E is covered by F. Two sets of ... Read More

Advertisements