If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Database Concepts & Design > Transitive Dependence et al

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-31-04, 03:12
Galizur Galizur is offline
Registered User
 
Join Date: Dec 2004
Location: San Diego
Posts: 3
Transitive Dependence et al

Any recommendations for any Windows and/or Linux tools to help
normalize a database? It's essentially a combination of several
existing databases (that have some related information) into a single
one.

Also, recommendations for books on the theory of database design,
especially a temporal relational database, would be appreciated.

Finally, say you have a piece of info that's a direct consequence
of other pieces of info (>1) in a table, but that is quite computationally
intensive to calculate. Would putting it into the table violate
3NF and the transitive dependence condition? I'm gathering that this
isn't the case. I'm uncertain, however, how best to document that
it's a function of other information in the table. A separate table,
with a concatenation of the functional dependencies being the
primary key?

-Chris
Reply With Quote
  #2 (permalink)  
Old 12-31-04, 03:50
certus certus is offline
Registered User
 
Join Date: Dec 2003
Location: Canada
Posts: 710
DBDesigner (google it) is a very powerful modeling tool available in XP and Linux. It's free.
__________________
visit: relationary
Reply With Quote
  #3 (permalink)  
Old 12-31-04, 08:14
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,524
computationally expensive? store it

if you don't keep any documentation outside the database itself, then i would recommend giving it a column name that makes it clear

create table dilbert
( id integer not null primary key
, name varchar(30)
, foo integer
, bar float
, qux decimal(10,2)
, calculation_results_based_on_values_of_foo_bar_and _qux integer
)
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On