Notes of Entity Relationship Modelling

Embed Size (px)

Citation preview

  • 8/9/2019 Notes of Entity Relationship Modelling

    1/33

    Notes of ENTITY RELATIONSHIP Modelling1 Mrs Mousmi Ajay Chaurasia,Lect. Deptt. Of Information Technology, BIT DURG

    Entity Relationship(ER) ModellingER Model Concepts

    --Entities and Attributes

    -- Entity Types, Value Sets, and Key Attributes

    --Relationships and Relationship Types

    -- Weak Entity Types1

    --Roles and Attributes in Relationship Types

    A database can be modeled as: a collection of entities, relationships among entities.

    Entity/Relationship approach - one of the most well known modeling methodsDeveloped by P.Chen in 1976 - many variations since then

    Entity:A real-world object that can be distinctly identified may represent somereal physical object.

    E.g., Satish is a government employee; Kareena Kapoor is an actress; my car is aHonda CityMay represent some conceptual idea E.g., SC304 is a course; Semester 1 2001/2002 is asemesterAn entity is an object that exists and is distinguishable fromother objects.Example: specific person, company, event, plant

    An entity set is a set of entities of the same type that share thesame properties.Example: set of all persons, companies, trees, holidays.An Entity should be:

    An Object that will have many instances in the DB

    An Object that will have multiple attributesAn Object that v r trying to modelAn Entity should not be:

    User of the DB

    An O/P of the DB(eg. Report)

    Attributes:An entity is represented by a set of attributes, that is,descriptive propertiespossessed by all membersof an entity set.(value from corresponding entity)Example: customer = (customer-name, social-security, customer-street, customer-city)account = (account-number, balance)Domain the set of permitted values for each attribute

    Attribute types:Simple and composite attributes.

    Single-valued and multi-valued attributes

    Null attributes

    Derived attributes

    Identifiers(Key) attributes

  • 8/9/2019 Notes of Entity Relationship Modelling

    2/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    3/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    4/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    5/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    6/33

    Notes of ENTITY RELATIONSHIP Modelling2 Mrs Mousmi Ajay Chaurasia,Lect. Deptt. Of Information Technology, BIT DURGSimple versus compositeSimple attributes are atomic.E.g. tel_ph; house color; basic-salary;Composite attributes made up of simple attributes. E.g., address = (St_add,city,state,postal code)CompositeSimpleKey is underlinedSingle valued versus multivaluedSingle valued: single value associated with an attributeMultivalued: may have more than one values. E.g., University degree attribute may contain B.Eng.,

    M.Eng., or Ph.D.

    Composite attributes b/w( ) and separating with commas and multivalued b/w{ } . Suchattributes rcalled COMPOSITE ATTRIBUTESStored versus derivedMost attribute values are stored eg birthdate. BUT Derived from stored value. E.g., age from birthdateNull : An attribute takes a null value when an entity does not have a value for it. eg house_noHeight of a person attribute ism issin g n homephone attribute is not known attribute.IIddeen

    nttiif

  • 8/9/2019 Notes of Entity Relationship Modelling

    7/33

    fiieerrss((KKe

    eyyss)): An attribute(or combination of attributes) that uniquely identifies the instances of an entity type.Identifiers will not change in value,will not be null.No intelligent Identifiers( containing people orlocationsthat might change).DerivedIdentifierMultivalued(from date_employ& current date)(employee can have more than 1 skill)

  • 8/9/2019 Notes of Entity Relationship Modelling

    8/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    9/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    10/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    11/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    12/33

    Notes of ENTITY RELATIONSHIP Modelling3 Mrs Mousmi Ajay Chaurasia,Lect. Deptt. Of Information Technology, BIT DURG

    Summary of ER diagram ,Notation of ER SchemasSymbol

    MeaningENTITY TYPEWEAK ENTITY TYPERELATIONSHIP TYPEIDENTIFYING RELATIONSHIP TYPEATTRIBUTEPRIMARY KEY ATTRIBUTEMULTIVALUED ATTRIBUTECOMPOSITE ATTRIBUTEDERIVED ATTRIBUTE

    TOTAL PARTICIPATION OF E2 IN RCARDINALITY RATIO 1:N FOR E1:E2 IN R ENTITY TYPEGENERALIZATION OR SPECIALIZATIONPARTIAL KEY (WEAK ENTITY)

    ROLE INDICATORRELATIONSHIP SETS: An association among entities.(set of relationship of the same type)A relationship set is a mathematical relation among n>= 2 entities, each taken from entity sets

  • 8/9/2019 Notes of Entity Relationship Modelling

    13/33

    { (e1, e2, ..., en) | e1E 1, e 2E2, ..., enEn}where (e1, e2, ..., en) is a relationship Example: (Hayes, A-102) depositorAn attribute can also be a property of a relationship set. For instance, the depositor relationship setbetween entity sets

    customer and account may have the attribute access-date.

  • 8/9/2019 Notes of Entity Relationship Modelling

    14/33

    Notes of ENTITY RELATIONSHIP Modelling4 Mrs Mousmi Ajay Chaurasia,Lect. Deptt. Of Information Technology, BIT DURG

    Degree of the relationship sets:Refers to number of entity sets that participate in a relationship set.

  • 8/9/2019 Notes of Entity Relationship Modelling

    15/33

    Relationship sets that involve two entity sets are binary (or degree two). Generally, most relationship sets in a

    database

    system are binary.

    Relationship sets may involve more than two entity sets. The entity sets customer, loan, and branch may be

    linked by

    the ternary (degree three) relationship set. Or may say: Urnary Relationship, Binary relationship, Ternary

    Relationship

    One entity relatedEntities of two different typesEntities of three differentto another of the same entity typerelated to each othertypes related to each other

    Roles: Entity sets of a relationship need not be distinct.

    The labels manager and worker are called roles; they specify how employee entities interact via the works-for

    relationship set. Roles are indicated in E-R diagrams by labeling the lines that connect diamonds to rectangles.

    Role labels are optional, and are used to clarify semantics of the relationship.

  • 8/9/2019 Notes of Entity Relationship Modelling

    16/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    17/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    18/33

    Notes of ENTITY RELATIONSHIP Modelling5 Mrs Mousmi Ajay Chaurasia,Lect. Deptt. Of Information Technology, BIT DURG

    Cardinality of Relationship:(Structural Constraints)Express the number of entities to which another entity can be associated via a relationship set.

    Most useful in describing binary relationship sets.For a binary relationship set the mappingcardinality must beone of the following types: One to one: Each entity in the relationship must have exactly one related entity. One to many (many to one): An entity in the relationship on one side can have many related

    entities but on the other sidewill have maximum of one related entity. Many to many: Entities on both the sides can have many related entities on the other side.We distinguish among these types by drawing either a directed line (), signifying one, or an undirected line (),signifying many, between the relationship set and the entity set.

    Unary Relationships:Binary Relationships:Ternary Relationships:Note: Relationships can haveAttributes of their own.

  • 8/9/2019 Notes of Entity Relationship Modelling

    19/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    20/33

    Notes of ENTITY RELATIONSHIP Modelling6 Mrs Mousmi Ajay Chaurasia,Lect. Deptt. Of Information Technology, BIT DURGExample of Binary Relationship: works_for relationship b/w EMPLOYEE entity type andDEPARTMENT entity type

    Each instancer must relate one employee to one dept.Example for Ternary Relationship:Each instance ofr must be associated with three objectsExample of 1:1 Relationship:

    DDL: customer(ssn,cust_nm,cust_st,cust_city)Loan( Loan_nmbr,amt)Borrower(ssn,loan_nmbr)ORcustomer(ssn,cust_nm,cust_st,cust_city)Loan( Loan_nmbr,amt)

    A customer is associated with at most one loan via the relationship borrower and a loan isassociated with at most onecustomer via borrower.

  • 8/9/2019 Notes of Entity Relationship Modelling

    21/33

    If borrower also has attributes(say: amount,date) then DDL : borrower(amt,dt#)EmployeeWORKS_FORDepartment

    d1 d2 d3

    r1

    r2r3r4r5emp1emp2emp3emp4emp5

  • 8/9/2019 Notes of Entity Relationship Modelling

    22/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    23/33

  • 8/9/2019 Notes of Entity Relationship Modelling

    24/33

    Notes of ENTITY RELATIONSHIP Modelling7 Mrs Mousmi Ajay Chaurasia,Lect. Deptt. Of Information Technology, BIT DURGExample of 1:M and M:1 Relationship:In the one-to-many relationship, a loan is associated with at most one customer via borrower; acustomer is associated with

    several (including 0) loans via borrowerIn the many-to-one relationship, a loan is associated with several (including 0) customers viaborrower; a customer isassociated with at most one loan via borrower.Example of M:M Relationship:A customer is associated with several (possibly 0) loans via borrower. A loan is associated withseveral (possibly 0)customers via borrower.Each entity may result in a relation whose attributes are the properties for the entity .Eachrelationship may result ina relation whose attributes link the entities described in the relationship

    Weak Entity Sets:A weak entity is an entity that cannot be uniquely identified by its own attributesalone.An entity set that does not have a primary key is referred to as a weak entity set.Has no key

    attributes.

  • 8/9/2019 Notes of Entity Relationship Modelling

    25/33

    T h e e x i s t e n c e o f aw e a k e n t i t y s e t d e p e n d so n t h e e x i s t e n c e o f as t r o n g e n t i t y s e t ; i tm u s t r e l a t e t o t h es t r o n gset via a one-to-many relationship set.

    T h e d i s c r i m i n a t o r ( o r p a r t i a lk e y ) o f a w e a k e n t i t y s e t i st h e s e t o f a t t r i b u t e s t h a td i s t i n g u i s h e s a m o n g a l l t h eentities of a weak entity set.(or Set of attributes that uniquely identify weak entities related tosame owner entity). T h e p r i m a r y k e y o f aw e a k e n t i t y s e t i sf o r m e d b y t h e p r i m a r yk e y o f t h e s t r o n g e n t i t ys e t o n w h i c h t h e w e a kentity set is existence dependent, plus the weak entity sets discriminator.(Primary key of weakentity: identifyingowners primary key + partial key)We depict a weak entity set by double rectangles. We underline the discriminator of a weak entityset with a dashed line.

    ER DiagramReads:31,664

    Uploaded:10/17/2008Category:

    Uncategorized.Rated:

    4.85714 5 false false 0

    (7 Ratings)Download this Document for FreePrintMobileCollectionsReport Document

    This is a private document.

    api_11797_mousmi_ash

    Follow

    Share & Embed

    Link / URL:

    http://w w

    Embed Size & Settings:

    Width:

    (auto)

    Auto

    Height:

    300

    (proportional to specified width)

  • 8/9/2019 Notes of Entity Relationship Modelling

    26/33

    Start on page:

    1

    Preview View:

    Scroll

  • 8/9/2019 Notes of Entity Relationship Modelling

    27/33

    Reads: 286

    20 p.

    E-R Model

    Reads: 12694. 5 p.

    DBMS- Lecture 3

    Reads: 269

    3 p.

    Sad Semifinals

    Reads: 156

    25 p.

    ERD

    Reads: 0

    5. 29 p.

    chapter10%5B1%5D

    Reads: 262

    32 p.

    ERD

    Reads: 0

    9 p.

    Comparison of Christian Denominati...

    Reads: 0

    6. 6 p.

    000-102demo

    Reads: 0

    5 p.

    JTX - When is the Constitution Lik...

    Reads: 0

    2 p.

    198 Valuing Goodwill

    http://www.scribd.com/doc/7266817/ER-Model-Printedhttp://www.scribd.com/doc/21025813/18189399-Entity-Relationship-Modelhttp://www.scribd.com/doc/18189399/Entity-Relationship-Modelhttp://www.scribd.com/doc/26917124/DataBase-Designinghttp://www.scribd.com/doc/7336533/Data-Modeling-ERhttp://www.scribd.com/doc/26496990/computershttp://www.scribd.com/doc/16578982/Bagian-2-Pemodelan-Konseptualhttp://www.scribd.com/doc/26603270/DBMS-Entity-Relationship-Data-Modelhttp://www.scribd.com/doc/7266817/ER-Model-Printedhttp://www.scribd.com/doc/7266817/ER-Model-Printedhttp://www.scribd.com/doc/21025813/18189399-Entity-Relationship-Modelhttp://www.scribd.com/doc/21025813/18189399-Entity-Relationship-Modelhttp://www.scribd.com/doc/18189399/Entity-Relationship-Modelhttp://www.scribd.com/doc/18189399/Entity-Relationship-Modelhttp://www.scribd.com/doc/26917124/DataBase-Designinghttp://www.scribd.com/doc/26917124/DataBase-Designinghttp://www.scribd.com/doc/7336533/Data-Modeling-ERhttp://www.scribd.com/doc/7336533/Data-Modeling-ERhttp://www.scribd.com/doc/26496990/computershttp://www.scribd.com/doc/26496990/computershttp://www.scribd.com/doc/16578982/Bagian-2-Pemodelan-Konseptualhttp://www.scribd.com/doc/16578982/Bagian-2-Pemodelan-Konseptualhttp://www.scribd.com/doc/26603270/DBMS-Entity-Relationship-Data-Modelhttp://www.scribd.com/doc/26603270/DBMS-Entity-Relationship-Data-Model
  • 8/9/2019 Notes of Entity Relationship Modelling

    28/33

    Reads: 0

    7. 26 p.

    Termpaper of Rm (2)

    Reads: 0

    48 p.

    Sustainable Energy Security - Stra...

    Reads: 0

    3 p.

    Prevention Without Hard Power: Mis...

    Reads: 0

    8. 1 p.

    Publish Your Own Club Bulletin

    Reads: 0

    More from this user1. 5 p.

    Types of Failure and ACID Prope...

    From: api_11797_mousmi_ashReads: 1,245

    8 p.

    Serializability by Amit Gupta

    From: api_11797_mousmi_ash

    Reads: 340

    30 p.

    Normal is at Ion 1

    From: api_11797_mousmi_ashReads: 398

    2. 19 p.

    Dbms Concepts[1]

    From: api_11797_mousmi_ash

    Reads: 640

    15 p.

    Relational Algebra

    From: api_11797_mousmi_ash

    Reads: 2,042

    http://www.scribd.com/doc/16386208/ER-Modelhttp://www.scribd.com/doc/26983884/DBMS-Lecture-3http://www.scribd.com/doc/20353792/Sad-Semifinalshttp://www.scribd.com/doc/20353792/Sad-Semifinalshttp://www.scribd.com/doc/34163430/ERDhttp://www.scribd.com/doc/11554698/chapter105B15Dhttp://www.scribd.com/doc/11554698/chapter105B15Dhttp://www.scribd.com/doc/34367919/ERDhttp://www.scribd.com/doc/33966624/JTX-When-is-the-Constitution-Like-a-Crocodilehttp://www.scribd.com/doc/34007254/198-Valuing-Goodwillhttp://www.scribd.com/doc/16386208/ER-Modelhttp://www.scribd.com/doc/16386208/ER-Modelhttp://www.scribd.com/doc/26983884/DBMS-Lecture-3http://www.scribd.com/doc/26983884/DBMS-Lecture-3http://www.scribd.com/doc/20353792/Sad-Semifinalshttp://www.scribd.com/doc/20353792/Sad-Semifinalshttp://www.scribd.com/doc/34163430/ERDhttp://www.scribd.com/doc/34163430/ERDhttp://www.scribd.com/doc/11554698/chapter105B15Dhttp://www.scribd.com/doc/11554698/chapter105B15Dhttp://www.scribd.com/doc/34367919/ERDhttp://www.scribd.com/doc/34367919/ERDhttp://www.scribd.com/doc/33851712/Comparison-of-Christian-Denominations-Beliefshttp://www.scribd.com/doc/33851712/Comparison-of-Christian-Denominations-Beliefshttp://www.scribd.com/doc/33948356/000-102demohttp://www.scribd.com/doc/33948356/000-102demohttp://www.scribd.com/doc/33966624/JTX-When-is-the-Constitution-Like-a-Crocodilehttp://www.scribd.com/doc/33966624/JTX-When-is-the-Constitution-Like-a-Crocodilehttp://www.scribd.com/doc/34007254/198-Valuing-Goodwillhttp://www.scribd.com/doc/34007254/198-Valuing-Goodwill
  • 8/9/2019 Notes of Entity Relationship Modelling

    29/33

    22 p.

    Intro to DBMS

    From: api_11797_mousmi_ash

    Reads: 4,864

    3. 17 p.

    Recrd Strge Organization

    From: api_11797_mousmi_ash

    Reads: 230

    23 p.

    ER Diagram

    From: api_11797_mousmi_ash

    Reads: 32,126

    Top of Form

    Login to Add a Comment

    Submit 4gen

    Bottom ofForm

    Lauretta Hewsonread this about 6 hours agoLearn more about Readcast.uomadsread this about 18 hours agoLearn more about Readcast.

    Avinash Yadavread this about 19 hours agoLearn more about Readcast.nsyap72read this 1 day agoLearn more about Readcast.

    http://www.scribd.com/doc/34173728/Termpaper-of-Rm-2http://www.scribd.com/doc/34270130/Prevention-Without-Hard-Power-Mission-Impossiblehttp://www.scribd.com/doc/34270130/Prevention-Without-Hard-Power-Mission-Impossiblehttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/7122994/Dbms-Concepts1http://www.scribd.com/doc/7122994/Dbms-Concepts1http://www.scribd.com/doc/7122994/Dbms-Concepts1http://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/7122971/Relational-Algebrahttp://www.scribd.com/doc/7122971/Relational-Algebrahttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/34173728/Termpaper-of-Rm-2http://www.scribd.com/doc/34173728/Termpaper-of-Rm-2http://www.scribd.com/doc/34266772/Sustainable-Energy-Security-Strategic-Risks-and-Opportunities-for-Businesshttp://www.scribd.com/doc/34266772/Sustainable-Energy-Security-Strategic-Risks-and-Opportunities-for-Businesshttp://www.scribd.com/doc/34270130/Prevention-Without-Hard-Power-Mission-Impossiblehttp://www.scribd.com/doc/34270130/Prevention-Without-Hard-Power-Mission-Impossiblehttp://www.scribd.com/doc/34382488/Publish-Your-Own-Club-Bulletinhttp://www.scribd.com/doc/34382488/Publish-Your-Own-Club-Bulletinhttp://www.scribd.com/doc/7123023/Types-of-Failure-and-ACID-PropertyBasics-Transaction-by-Aditi-Waghelahttp://www.scribd.com/doc/7123023/Types-of-Failure-and-ACID-PropertyBasics-Transaction-by-Aditi-Waghelahttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/7123019/Serializability-by-Amit-Guptahttp://www.scribd.com/doc/7123019/Serializability-by-Amit-Guptahttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/7123008/Normal-is-at-Ion-1http://www.scribd.com/doc/7123008/Normal-is-at-Ion-1http://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/7122994/Dbms-Concepts1http://www.scribd.com/doc/7122994/Dbms-Concepts1http://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/7122971/Relational-Algebrahttp://www.scribd.com/doc/7122971/Relational-Algebrahttp://www.scribd.com/api_11797_mousmi_ash
  • 8/9/2019 Notes of Entity Relationship Modelling

    30/33

    Shalin Asangaread this 1 day agoLearn more about Readcast.

    Sayed Saeedread this2 days agoLearn more about Readcast.

    Venice Paculananread this 3 days agoLearn more about Readcast.

    Ravikumar Karunanithiread this 3 days agoLearn more about Readcast.

    Bhuvnesh Goyalread this 4 days agoLearn more about Readcast.erjayantvaishnavread this 4 days agoLearn more about Readcast.Show More

    Ads by Google

    Cove Systems Inc.Efficient Retail & Dist. SoftwareCRM Rebates SCM WMS Vendor Shipping

    www.covesys.com/

    Database course at Aptech50 lakh students trained already22 years of expertise

    www.Aptech-Education.com

    We Know Your CustomerFaster - Smarter - Cheaper

    KYC Service & Software-as-a-Service

    www.KYCnet.com

    Print this document

    High Quality

    Open the downloaded document, and select print from the file menu (PDF reader required).

    Browser Printing

    Coming soon!

    Your download will begin shortly...

    http://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/lhewsonhttp://www.scribd.com/lhewsonhttp://www.scribd.com/lhewsonhttp://www.scribd.com/uomadshttp://www.scribd.com/avinash_yadav_2http://www.scribd.com/avinash_yadav_2http://www.scribd.com/avinash_yadav_2http://www.scribd.com/nsyap72http://www.scribd.com/avinash_yadav_2http://www.scribd.com/lhewsonhttp://www.scribd.com/doc/7122957/Intro-to-DBMShttp://www.scribd.com/doc/7122957/Intro-to-DBMShttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/7122952/Recrd-Strge-Organizationhttp://www.scribd.com/doc/7122952/Recrd-Strge-Organizationhttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/doc/7122945/ER-Diagramhttp://www.scribd.com/doc/7122945/ER-Diagramhttp://www.scribd.com/api_11797_mousmi_ashhttp://www.scribd.com/loginhttp://www.scribd.com/lhewsonhttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://www.scribd.com/uomadshttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://www.scribd.com/avinash_yadav_2http://www.scribd.com/doc/30299843/Readcast-Presentationhttp://www.scribd.com/nsyap72http://www.scribd.com/doc/30299843/Readcast-Presentation
  • 8/9/2019 Notes of Entity Relationship Modelling

    31/33

    But first, we need a bit more information. Import more of your profile information fromFacebook to help use find more content that you'll be interested in and build your socialnetworkon and off Scribd.

    No, thanks

    Your download will begin shortly...

    But first, we need a bit more information. Import more of your profile information fromFacebook to help use find more content that you'll be interested in and build your socialnetwork on and off Scribd.

    No, thanks

    Sign up

    Use your Facebook login and see what your friends are reading and sharing.

    Other login options

    Login with Facebook

    Top of Formhttp://w w w .scrib http://w w w .scrib

    Bottom of Form

    Signup

    I don't have a Facebook account

    Top of Form

    default

    email address (required)

    create username (required)

    password (required)

    Send me the Scribd Newsletter, and occasional account related communications.

    Privacy policyYou will receive email notifications regarding your account activity. You can manage thesenotifications in your account settings. We promise to respect your privacy.

    Bottom of Form

    Why Sign up?

    Discover and connect with people of similar interests.

    Publish your documents quickly and easily.

    Share your reading interests on Scribd and social sites.

    http://www.scribd.com/shalin_asangahttp://www.scribd.com/shalin_asangahttp://www.scribd.com/shalin_asangahttp://www.scribd.com/shalin_asangahttp://www.scribd.com/sayed_saeedhttp://www.scribd.com/sayed_saeedhttp://www.scribd.com/sayed_saeedhttp://www.scribd.com/vpaculananhttp://www.scribd.com/vpaculananhttp://www.scribd.com/ravikumar_karunanithhttp://www.scribd.com/ravikumar_karunanithhttp://www.scribd.com/ravikumar_karunanithhttp://www.scribd.com/ravikumar_karunanithhttp://www.scribd.com/bhuvneshghttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://googleads.g.doubleclick.net/aclk?sa=l&ai=BCYpWBTtATPjiI8a2cKyYnMEF0fDiApaThaECwI23AaD-ChABGAkg0KSCCigDOABQ_bmJ1Pj_____AWDlwuSDpA6yAQ53d3cuc2NyaWJkLmNvbcgBAdoBLGh0dHA6Ly93d3cuc2NyaWJkLmNvbS9kb2MvNzEyMjk0NS9FUi1EaWFncmFt4AEDgAIBqAMB6APXAvUDAAAABA&num=9&sig=AGiWqtyndLSw5cNJBdSC9P7iN1Bt7Sn0bQ&client=ca-pub-7291399211842501&adurl=http://www.covesys.com/http://googleads.g.doubleclick.net/aclk?sa=l&ai=BCYpWBTtATPjiI8a2cKyYnMEF0fDiApaThaECwI23AaD-ChABGAkg0KSCCigDOABQ_bmJ1Pj_____AWDlwuSDpA6yAQ53d3cuc2NyaWJkLmNvbcgBAdoBLGh0dHA6Ly93d3cuc2NyaWJkLmNvbS9kb2MvNzEyMjk0NS9FUi1EaWFncmFt4AEDgAIBqAMB6APXAvUDAAAABA&num=9&sig=AGiWqtyndLSw5cNJBdSC9P7iN1Bt7Sn0bQ&client=ca-pub-7291399211842501&adurl=http://www.covesys.com/http://googleads.g.doubleclick.net/aclk?sa=l&ai=BpNFzBTtATPjiI8a2cKyYnMEFqfW3xQGhrP2PH8CNtwGQtNYCEAIYCiDQpIIKKAM4AFCsmojtA2DlwuSDpA6gAe-StPwDsgEOd3d3LnNjcmliZC5jb23IAQHaASxodHRwOi8vd3d3LnNjcmliZC5jb20vZG9jLzcxMjI5NDUvRVItRGlhZ3JhbeABA4ACAakC1qSOU1oXVz7IAsHjnxSoAwHoA9cC9QMAAAAE&num=10&sig=AGiWqtxK-yYgfMPJNFLkt99-xHG_VztizA&client=ca-pub-7291399211842501&adurl=http://www.aptech-education.com/campaign/variation/enquiry-form-nv1.aspx?Source=ctdatabasehttp://googleads.g.doubleclick.net/aclk?sa=l&ai=BUxuzBTtATPjiI8a2cKyYnMEFsMbMhAHurLHJDMCNtwHg1AMQAxgLINCkggooAzgAUMSl37D5_____wFg5cLkg6QOsgEOd3d3LnNjcmliZC5jb23IAQHaASxodHRwOi8vd3d3LnNjcmliZC5jb20vZG9jLzcxMjI5NDUvRVItRGlhZ3JhbeABA4ACAakC10_3McqitT6oAwHoA9cC9QMAAAAE&num=11&sig=AGiWqtw-CSRtrvafW44XtNKw5d2ag0uATw&client=ca-pub-7291399211842501&adurl=http://www.kycnet.com/contact.html?_kk=relationship%20due%20diligence&_kt=83f12c01-5ed8-49bc-bfd0-5b158918c8ebhttp://www.scribd.com/bhuvneshghttp://www.scribd.com/ravikumar_karunanithhttp://www.scribd.com/vpaculananhttp://www.scribd.com/sayed_saeedhttp://www.scribd.com/shalin_asangahttp://www.scribd.com/shalin_asangahttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://www.scribd.com/sayed_saeedhttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://www.scribd.com/vpaculananhttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://www.scribd.com/ravikumar_karunanithhttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://www.scribd.com/bhuvneshghttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://www.scribd.com/erjayantvaishnavhttp://www.scribd.com/doc/30299843/Readcast-Presentationhttp://void%280%29/http://www.google.com/url?ct=abg&q=https://www.google.com/adsense/support/bin/request.py?contact=abg_afc&url=http://www.scribd.com/doc/7122945/ER-Diagram&hl=en&client=ca-pub-7291399211842501&adU=www.covesys.com/&adT=Cove+Systems+Inc.&adU=www.Aptech-Education.com&adT=Database+course+at+Aptech&adU=www.KYCnet.com&adT=We+Know+Your+Customer&gl=IN&usg=AFQjCNEiDgrDh4kxu-_GR7DsPk-RnO_H3whttp://googleads.g.doubleclick.net/aclk?sa=l&ai=BCYpWBTtATPjiI8a2cKyYnMEF0fDiApaThaECwI23AaD-ChABGAkg0KSCCigDOABQ_bmJ1Pj_____AWDlwuSDpA6yAQ53d3cuc2NyaWJkLmNvbcgBAdoBLGh0dHA6Ly93d3cuc2NyaWJkLmNvbS9kb2MvNzEyMjk0NS9FUi1EaWFncmFt4AEDgAIBqAMB6APXAvUDAAAABA&num=9&sig=AGiWqtyndLSw5cNJBdSC9P7iN1Bt7Sn0bQ&client=ca-pub-7291399211842501&adurl=http://www.covesys.com/http://googleads.g.doubleclick.net/aclk?sa=l&ai=BCYpWBTtATPjiI8a2cKyYnMEF0fDiApaThaECwI23AaD-ChABGAkg0KSCCigDOABQ_bmJ1Pj_____AWDlwuSDpA6yAQ53d3cuc2NyaWJkLmNvbcgBAdoBLGh0dHA6Ly93d3cuc2NyaWJkLmNvbS9kb2MvNzEyMjk0NS9FUi1EaWFncmFt4AEDgAIBqAMB6APXAvUDAAAABA&num=9&sig=AGiWqtyndLSw5cNJBdSC9P7iN1Bt7Sn0bQ&client=ca-pub-7291399211842501&adurl=http://www.covesys.com/http://googleads.g.doubleclick.net/aclk?sa=l&ai=BpNFzBTtATPjiI8a2cKyYnMEFqfW3xQGhrP2PH8CNtwGQtNYCEAIYCiDQpIIKKAM4AFCsmojtA2DlwuSDpA6gAe-StPwDsgEOd3d3LnNjcmliZC5jb23IAQHaASxodHRwOi8vd3d3LnNjcmliZC5jb20vZG9jLzcxMjI5NDUvRVItRGlhZ3JhbeABA4ACAakC1qSOU1oXVz7IAsHjnxSoAwHoA9cC9QMAAAAE&num=10&sig=AGiWqtxK-yYgfMPJNFLkt99-xHG_VztizA&client=ca-pub-7291399211842501&adurl=http://www.aptech-education.com/campaign/variation/enquiry-form-nv1.aspx?Source=ctdatabasehttp://googleads.g.doubleclick.net/aclk?sa=l&ai=BpNFzBTtATPjiI8a2cKyYnMEFqfW3xQGhrP2PH8CNtwGQtNYCEAIYCiDQpIIKKAM4AFCsmojtA2DlwuSDpA6gAe-StPwDsgEOd3d3LnNjcmliZC5jb23IAQHaASxodHRwOi8vd3d3LnNjcmliZC5jb20vZG9jLzcxMjI5NDUvRVItRGlhZ3JhbeABA4ACAakC1qSOU1oXVz7IAsHjnxSoAwHoA9cC9QMAAAAE&num=10&sig=AGiWqtxK-yYgfMPJNFLkt99-xHG_VztizA&client=ca-pub-7291399211842501&adurl=http://www.aptech-education.com/campaign/variation/enquiry-form-nv1.aspx?Source=ctdatabasehttp://googleads.g.doubleclick.net/aclk?sa=l&ai=BUxuzBTtATPjiI8a2cKyYnMEFsMbMhAHurLHJDMCNtwHg1AMQAxgLINCkggooAzgAUMSl37D5_____wFg5cLkg6QOsgEOd3d3LnNjcmliZC5jb23IAQHaASxodHRwOi8vd3d3LnNjcmliZC5jb20vZG9jLzcxMjI5NDUvRVItRGlhZ3JhbeABA4ACAakC10_3McqitT6oAwHoA9cC9QMAAAAE&num=11&sig=AGiWqtw-CSRtrvafW44XtNKw5d2ag0uATw&client=ca-pub-7291399211842501&adurl=http://www.kycnet.com/contact.html?_kk=relationship%20due%20diligence&_kt=83f12c01-5ed8-49bc-bfd0-5b158918c8ebhttp://googleads.g.doubleclick.net/aclk?sa=l&ai=BUxuzBTtATPjiI8a2cKyYnMEFsMbMhAHurLHJDMCNtwHg1AMQAxgLINCkggooAzgAUMSl37D5_____wFg5cLkg6QOsgEOd3d3LnNjcmliZC5jb23IAQHaASxodHRwOi8vd3d3LnNjcmliZC5jb20vZG9jLzcxMjI5NDUvRVItRGlhZ3JhbeABA4ACAakC10_3McqitT6oAwHoA9cC9QMAAAAE&num=11&sig=AGiWqtw-CSRtrvafW44XtNKw5d2ag0uATw&client=ca-pub-7291399211842501&adurl=http://www.kycnet.com/contact.html?_kk=relationship%20due%20diligence&_kt=83f12c01-5ed8-49bc-bfd0-5b158918c8eb
  • 8/9/2019 Notes of Entity Relationship Modelling

    32/33

    Already have a Scribd account?

    Top of Form

    email address or username

    password

    Log In

    Trouble logging in?Bottom of Form

    Login Successful

    Now bringing you back...

    Back to Login

    Reset your password

    Please enter your email address below to reset your password. We will send you an emailwith instructions on how to continue.

    Top of Form

    Email address:

    You need to provide a loginfor this account as well.

    Login:

    Submit

    Bottom of Form

    Upload a DocumentTop of Form

    Search Books, Presentations, Business, Academics...Bottom of Form

    Scribd

    About

    Press

    Jobs

    Contact

    Blog

    http://www.scribd.com/privacy
  • 8/9/2019 Notes of Entity Relationship Modelling

    33/33

    Scribd Store

    Legal

    Terms - General

    Terms - API

    Terms - Privacy

    Copyright

    Help & Tools

    Getting Started

    Community Guidelines

    Support & FAQ

    Web Stuff

    Partners

    Partners / Publishers Branded Reader

    Developers / API

    Subscribe to Us

    On Scribd

    On Twitter

    On Facebook

    Top of Form

    Enter your email address:

    Sign Up

    or

    Bottom of Form

    What's New

    We have updated our Terms of Service

    Branded Reader

    Desktop Uploader

    http://www.scribd.com/doc/7122945/ER-Diagramhttp://www.scribd.com/upload-documenthttp://www.scribd.com/upload-documenthttp://www.scribd.com/doc/7122945/ER-Diagramhttp://www.scribd.com/upload-documenthttp://www.scribd.com/abouthttp://www.scribd.com/static/presshttp://www.scribd.com/jobshttp://www.scribd.com/contacthttp://blog.scribd.com/