Bhanu Priya has Published 1581 Articles

Which normal form is the highest that satisfies the functional dependencies(DBMS)?

Bhanu Priya

Bhanu Priya

Updated on 06-Jul-2021 12:38:00

926 Views

Let's take the dependencies F= {AB->CDEF, AF->ED, F->B} which ONE of the following is the highest normal form that a table R=ABCDEF could satisfy.Select any one from the following −No normal form would be satisfied.Boyce-Codd Normal Form1st Normal Form2nd Normal Form3rd Normal FormGiven Functional dependencies of F are as follows ... Read More

Explain how normal forms can be transformed from lower to higher(DBMS)

Bhanu Priya

Bhanu Priya

Updated on 06-Jul-2021 12:35:42

311 Views

In the database management system there are several rules to manage the tables and do the changes like insertion, deletion, updatation and there are different stages at which the tables are organized and these stages are known as normal forms.It is a standard structure of relational databases in which a ... Read More

What is multivalued dependency in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 06-Jul-2021 12:25:13

9K+ Views

Multivalued dependency (MVD) is having the presence of one or more rows in a table. It implies the presence of one or more other rows in that same table. A multivalued dependency prevents fourth normal form. A multivalued dependency involves at least three attributes of a table.It is represented with ... Read More

Check which FD violates 3NF in a given relation and decompose R into 3NF(DBMS)

Bhanu Priya

Bhanu Priya

Updated on 06-Jul-2021 12:23:40

4K+ Views

A relation is in 3NF when it is in 2NF and there is no transitive dependency or a relation is in 3NF when it is in 2NF and all non-key attributes directly depend on candidate key.Third normal form (3NF) is the third step in normalizing a database and it builds ... Read More

What is functional dependency and transitive dependency (DBMS)?

Bhanu Priya

Bhanu Priya

Updated on 06-Jul-2021 12:21:09

12K+ Views

Let us begin by understanding what a functional dependency is in the database management system (DBMS).Functional DependencyFunctional dependency refers to the relation of one attribute of the database to another. With the help of functional dependency, the quality of the data in the database can be maintained.The symbol for representing ... Read More

Construct an ER diagram for a company in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 04-Jul-2021 06:33:02

11K+ Views

ProblemDraw of ER model for company considering the following constraints −In a company, an employee works on many projects which are controlled by one department.One employee supervises many employees.An employee has one or more dependents.One employee manages one department.SolutionFollow the steps given below to draw an ER model for the ... Read More

Construct an ER diagram for the Library management system(DBMS)?

Bhanu Priya

Bhanu Priya

Updated on 04-Jul-2021 06:32:17

10K+ Views

ProblemDraw an ER model for library management application considering the following constraints −In a library multiple students can enroll.Students can become a member by paying an appropriate fee.The books in the library are identified by a unique ID.Students can borrow multiple books from subscribed libraries.SolutionFollow the steps given below to ... Read More

Construct an ER diagram for the Banking system in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 04-Jul-2021 06:31:15

19K+ Views

ProblemDraw an ER model of the Banking database application considering the following constraints −A bank has many entities.Each customer has multiple accounts.Multiple customers belong to a single branch.Single customer can borrow multiple loans.A branch has multiple employees.SolutionFollow the steps given below to draw an ER model of the Banking database ... Read More

Explain Mapping the ER diagrams with binary and ternary relationships(DBMS)?

Bhanu Priya

Bhanu Priya

Updated on 04-Jul-2021 06:29:29

3K+ Views

It is the relationship between the instances of two different entity types. Two entities will participate in the relationship.ExamplePerson and events are two different entity types which are related by using the relationship called “attends”.Mapping ER diagram with binary relationshipMapping one to many relationshipExampleHere, Create two tables for two entities.Primary ... Read More

What is a composite attribute in DBMS?

Bhanu Priya

Bhanu Priya

Updated on 04-Jul-2021 06:27:43

7K+ Views

The attributes that cannot be divided into sub-parts are called simple attributes. The attributes which can be divided into sub-parts are called composite attributes.ExampleBalance, account number are simple attributesName, address is called composite attributesLet’s consider an example of how to convert Entity Relationship (ER) model of composite attribute to Relational ... Read More

Advertisements