in

The ORM Foundation

Get the facts!

Relational View with 0..1 to a 0..1

Last post Thu, May 3 2012 19:24 by Matthew Curland. 17 replies.
Page 1 of 2 (18 items) 1 2 Next >
Sort Posts: Previous Next
  • Fri, Feb 24 2012 20:04

    • Looopy
    • Top 50 Contributor
    • Joined on Mon, Sep 5 2011
    • Posts 12

    Relational View with 0..1 to a 0..1

    Hi I just wonder how i can select which direction the entities so the relational View will create a DDL correctly. As you can see it do not link the Customer to WebLogin instead it Links Weblogin to Customer. If i set the RolePlayer "Customer" to mandatory and then make it not mandatory it changes direction but next time a change the model it can randomly change it back. Is this a bug or am i doing something wrong?
    Filed under:
  • Sat, Feb 25 2012 6:30 In reply to

    Re: Relational View with 0..1 to a 0..1

    Nothing in your model requires the FK to be in a particular direction. Just a thought; try setting Customer "Independent" in the Property pane. I think that will skew the absorption to decide that Customer is a table (while it's still making up its mind about a WebLogin). However, surely the WebLogin role on your one-to-one is mandatory? Otherwise you can have a WebLogin that logs-in no Customer?
  • Sat, Feb 25 2012 6:58 In reply to

    • Ken Evans
    • Top 10 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Stickford, UK
    • Posts 805

    Re: Relational View with 0..1 to a 0..1

    Thanks for your question, however, as I'm sure that you know, the orm diagram you posted is not the same as that which is reflected in the relational view.
    The orm diagram that you posted just gives a single table.
    So it would be helpful if you posted both the object-role model and the relational view of that model and then pointed out the problems you are having with that particular model.

    If you change an object-role model, the change will be immediately reflected in the relational view of the model. In turn, this will be reflected in the DDL.
    So a change in the relational view is not "random" - it is just a relational representation of the object-role model.

    It would also be helpful if you explain what you mean by "correct" DDL?

    Ken

  • Sat, Feb 25 2012 19:35 In reply to

    • Looopy
    • Top 50 Contributor
    • Joined on Mon, Sep 5 2011
    • Posts 12

    Re: Relational View with 0..1 to a 0..1

    I have a Employee that can have a WebLogin, those weblogin should not be connected to a Customer if they are not the same. But i will try to set it as "Independent" and se what happens. Thanks for the tip!
  • Sat, Feb 25 2012 19:35 In reply to

    • Looopy
    • Top 50 Contributor
    • Joined on Mon, Sep 5 2011
    • Posts 12

    Re: Relational View with 0..1 to a 0..1

    I have a Employee that can have a WebLogin, those weblogin should not be connected to a Customer if they are not the same. But i will try to set it as "Independent" and se what happens. Thanks for the tip!
  • Sat, Feb 25 2012 20:19 In reply to

    • Looopy
    • Top 50 Contributor
    • Joined on Mon, Sep 5 2011
    • Posts 12

    Re: Relational View with 0..1 to a 0..1

    Ken Evans:

    Thanks for your question, however, as I'm sure that you know, the orm diagram you posted is not the same as that which is reflected in the relational view.
    The orm diagram that you posted just gives a single table.
    So it would be helpful if you posted both the object-role model and the relational view of that model and then pointed out the problems you are having with that particular model.

    If you change an object-role model, the change will be immediately reflected in the relational view of the model. In turn, this will be reflected in the DDL.
    So a change in the relational view is not "random" - it is just a relational representation of the object-role model.

    It would also be helpful if you explain what you mean by "correct" DDL?

    Ken

    I have attached the new more detailed view of my model and try to exploain in more detail what my problem is in the image.
  • Sat, Feb 25 2012 20:21 In reply to

    • Looopy
    • Top 50 Contributor
    • Joined on Mon, Sep 5 2011
    • Posts 12

    Re: Relational View with 0..1 to a 0..1

    Clifford Heath:
    Nothing in your model requires the FK to be in a particular direction. Just a thought; try setting Customer "Independent" in the Property pane. I think that will skew the absorption to decide that Customer is a table (while it's still making up its mind about a WebLogin). However, surely the WebLogin role on your one-to-one is mandatory? Otherwise you can have a WebLogin that logs-in no Customer?
    The "Indipendent" was not an option it was grayed out so i could not select it. So that was nothing i could set. I have added a new more detailed description on my problem in my previous post. Thanks for the help!
  • Sun, Feb 26 2012 0:11 In reply to

    Re: Relational View with 0..1 to a 0..1

    A subtype cannot be independent (of its supertype). Try making the supertype independent first (not sure that'll work though, it depends on the interpretation NORMA applies).

    Do you intend that an Employee who is also a Customer can have two WebLogins? You do know that there is no implicit exclusion between two subtypes as in some O-O languages? You can add an exclusion constraint if necessary.

    If a Person can be both a Customer and an Employee but can only have one WebLogin, the WebLogin should be associated with the Person class, or a subtype (WebUser?) which is a supertype of both Employee and Customer, or should have an exclusion, or some other arrangement that enforces that.

    Finally you might find that there are "absorption" options available which you can use to steer this.

  • Sun, Feb 26 2012 7:55 In reply to

    • Looopy
    • Top 50 Contributor
    • Joined on Mon, Sep 5 2011
    • Posts 12

    Re: Relational View with 0..1 to a 0..1

    Clifford Heath:

    Do you intend that an Employee who is also a Customer can have two WebLogins? You do know that there is no implicit exclusion between two subtypes as in some O-O languages? You can add an exclusion constraint if necessary.

    No they should be using the same weblogin but its not mandatory that they are able to login, that is the connection "has access to" should fix.
    Clifford Heath:

    If a Person can be both a Customer and an Employee but can only have one WebLogin, the WebLogin should be associated with the Person class, or a subtype (WebUser?) which is a supertype of both Employee and Customer, or should have an exclusion, or some other arrangement that enforces that.

    But if i do it like this then both an employee and a customer can login, i would like to have them register then they wish to login, either if its an employee or a customer. Can you give me an example on how i can accomplish this?
  • Sun, Feb 26 2012 12:19 In reply to

    • Ken Evans
    • Top 10 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Stickford, UK
    • Posts 805

    Re: Relational View with 0..1 to a 0..1

     Looopy,

    Maybe I'm wrong, but I get the impression that you have some notion of what the relational model "should" look like and then you are trying to work back from that to define an object-role model that fits what you think "should" be the case.

    The recommended procedure is to begin by defining what you want to say (in an object-role model) and only then should you look at what kind of relational model this generates.

    For example you might want to say that a person has a first name and last name and a weblogin.
    Then you might say that a person can be an employee or a customer but not both.
    Then you might want to say things that only apply to "customer" or that only apply to "employee."

    The following diagram shows an example of this approach.
    In summary, you start by "getting the facts" and only then do you generate DDL or other artefacts.

    Ken

     

     


  • Sun, Feb 26 2012 18:23 In reply to

    • Looopy
    • Top 50 Contributor
    • Joined on Mon, Sep 5 2011
    • Posts 12

    Re: Relational View with 0..1 to a 0..1

    Hi Ken,
    Ken Evans:

     Looopy,

    Maybe I'm wrong, but I get the impression that you have some notion of what the relational model "should" look like and then you are trying to work back from that to define an object-role model that fits what you think "should" be the case.

    No i tried the correct approach do the model first without thinking of the database but i don't know really have to model it in a ORM tool - i am a beginner in this field.
    Ken Evans:

    For example you might want to say that a person has a first name and last name and a weblogin. Then you might say that a person can be an employee or a customer but not both. Then you might want to say things that only apply to "customer" or that only apply to "employee."

    The example you made states that a person is able to login (weblogin) but what if i wish to insert a person in my model that should not be able to login and is not a cusomer of a employee say for example a contact then this model fails. the thing i am try to accomplish is that both a employee and customer can share the same login and its not mandatory that they should be able to login and its not mandatory for a person to do a login either. So the main problem is that i wish to model it right but i do not succeed defining it in NORMA.
  • Mon, Feb 27 2012 5:27 In reply to

    • Ken Evans
    • Top 10 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Stickford, UK
    • Posts 805

    Re: Relational View with 0..1 to a 0..1

    If you want to learn ORM, then I recommend that you get Terry's book "Information Modeling and Relational Databases Second Edition". It has lots of examples and exercises so you can use it as a reference and also go through the exercises.

    Looopy:
    what if i wish to insert a person in my model that should not be able to login and is not a cusomer of a employee say for example a contact then this model fails.

    Regarding my example, it is not quite correct to say that "it is the model that fails".  A model is just as you define it to meet your requirements.
    With ORM you need to be very clear about what you want and then express that in terms of atomic facts.

    For example, if you want to have a Person in your database that cannot login, then one solution is to insert an additional subtype between Person and the Customer and Employee Semantic object types (you might call it WebsiteUser) - then change the Person(.id) has WebLogin(.code) to be something like WebsiteUser(.nr) has WebLogin(.code).

    Looopy:
    the thing i am try to accomplish is that both a employee and customer can share the same login and its not mandatory that they should be able to login and its not mandatory for a person to do a login either. So the main problem is that i wish to model it right but i do not succeed defining it in NORMA.


    You should find it easier if you break down complex statements like this into a set of atomic facts and then model those.

    Ken

  • Mon, Feb 27 2012 17:18 In reply to

    • Looopy
    • Top 50 Contributor
    • Joined on Mon, Sep 5 2011
    • Posts 12

    Re: Relational View with 0..1 to a 0..1

    Hi Again, Thanks for the tips Ken about the book. But still i think i will get in a situation that i don't agree on how norma generates the DDL SQL. Like now then it got the foreign keys on weblogin but i could fool the tool by adding and removing the mandatory flag and resave the model and then i get the foreign keys at customer and employee. And the next time i do any change on the model by adding a new entity i need to do the same procedure to make it create them there i wish them to be. So i still thinks it is a bug, don't You agree? Either there should be a way to do it or it should not.
  • Mon, Feb 27 2012 21:26 In reply to

    Re: Relational View with 0..1 to a 0..1

    Answer

    Hi, Yes you are correct, there should be a way to do it and there isn't. ORM's Rmap algorithm stipulates that in relational-mapping a 1:1 fact type like yours with mandatory constraints either on both roles or on neither roles (as in your case), the user needs a way to input his / her preference as to which table that 1:1 should be mapped to. Unfortunately, as far as I know no such facility for user input has been incorporated into NORMA's Rmapping as yet. So it's not so much a bug, as an interaction-feature that's yet to be added in. As for when it will be added, perhaps Matt or Terry could comment on that.

  • Tue, Feb 28 2012 4:33 In reply to

    • Ken Evans
    • Top 10 Contributor
      Male
    • Joined on Sun, Nov 18 2007
    • Stickford, UK
    • Posts 805

    Re: Relational View with 0..1 to a 0..1

    Looopy:
    . the thing i am try to accomplish is that both a employee and customer can share the same login and its not mandatory that they should be able to login and its not mandatory for a person to do a login either.
     

    Please refer to my example.
    If you:
    1: remove the mandatory requirement in the fact type "Person has WebLogin"
    2: remove the exclusion constraint between the employee and customer subtypes

    Then:

    * an employee and a customer can share the same login (i.e. one person can be both a customer and an employee)
    * it is not mandatory that a person has a login
    * it is not mandatory for a customer or employee to login (since both subtypes share the non-mandatory nature of the "Person has WebLogin" fact type.)

    And

    If you want to add "contacts" that are neither customers nor employees
    Then then you could add a unary "Person is contact"
    or add "Contact" as a new subtype of person and then add a fact type about "Contact" that is not true of Customer or Employee.

    Ken

Page 1 of 2 (18 items) 1 2 Next >
© 2008-2024 ------- Terms of Service