Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does I1, I2, U1, means in Visio database relationship diagram?

I am reverse engineering an database to create an database ER diagram in Visio. When I display the table in Visio, on the left hand side of the entity diagram, I see symbols next to the column names that I do not know what they mean. Symbols such as, U1, U2, l1, l2, l5...etc. Others symbols such as PK (primary key) and FK (foreign key) are also shown in the same area, but those obviously make sense to me.

like image 462
anh Avatar asked Apr 11 '11 22:04

anh


People also ask

What is U1 in database?

U1 = Unique Index 1.....

How do you read a relationship diagram?

You read the diagrams first from left to right and then from right to left. In the case of the name-address relationship in following figure, you read the relationships as follows: names can be associated with zero or exactly one address; addresses can be associated with zero, one, or many names.

What is relationship in MS Visio?

An entity relationship diagram (ERD) illustrates how different entities (such as customers and products) relate to each other in a database. Here are the the three primary parts of an ERD: Entities: The tables in your database. Entities are nouns.


1 Answers

These are other types of indexes.

U1 = Unique Index 1..... I1 = Index 1......

Here are examples in SQL Server http://msdn.microsoft.com/en-us/library/ms188783.aspx

like image 190
JStead Avatar answered Sep 20 '22 16:09

JStead