Explaining the Context
In the internet I found an example of a scheme described in this way:
account (num-account, descr-account, post (num-lanc, tipolanc, data-lanc,
Notice that the way this scheme is, it is not normalized.
Now consider the following criteria:
The account and post are occurrence groups of attributes in parentheses and juxtaposed with them;
Underlined attributes are identifiers of the relationship to which they belong;
The
num-lanc
is dependent onnum-conta
, ie in addition tonum-lanc
,num-conta
is required to identify a specific launch;No it is necessary to save history, that is, the appearance of a num-account pair and num-lanc equal to one already registered, replaces the registry. li>
Visto os critérios, agora devemos normalizar o esquema até a 3FN.
A possible alternative
account (num-account, descr-account) and post (numconta, num-lanc, date-lanc,
Doubt
Would the example above be normalized to 3FN?