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 > Data Access, Manipulation & Batch Languages > ANSI SQL > SQL Plus "Normalization"

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-23-02, 02:18
Aslam Hussain Aslam Hussain is offline
Registered User
 
Join Date: Apr 2002
Location: Pakistan
Posts: 1
Lightbulb SQL Plus "Normalization"

NORMALIZATION
Normalization aims to improve the Logical Design by making it free of redundant data and flexible enough to permit the future addition of entities, attributes and relationships.

There are diffrent levels of Normalization.

First Normal Form (1NF)
Second Normal Form (2NF)
Thrid Normal Form (3NF)

Q: Any body kindly explain how we can make some data to Normalization in SQL Plus. ?
Thanks.
My e-mail : mcsit2002@yahoo.com
Reply With Quote
  #2 (permalink)  
Old 05-14-02, 13:36
MGZ MGZ is offline
Registered User
 
Join Date: Apr 2002
Location: Calgary, Canada
Posts: 30
you would normalize the entities of a database. This has nothing to do with SQL plus. This would be in the design stage of database modeling.

If you mean you want to get the column names etc from the db to normalize then that can be done is sql plus

desc your_table_name
Reply With Quote
  #3 (permalink)  
Old 05-30-02, 04:14
c.ravi c.ravi is offline
Registered User
 
Join Date: May 2002
Location: delhi (india)
Posts: 4
Thumbs up

hello,

Normalization is always done at design level.
once the relationships are defined nothing can be done using sql - plus.
it is just the means to ask/give data from/to database.

if ur trying for query tunning, then there r possibilities.
Reply With Quote
  #4 (permalink)  
Old 05-30-02, 09:49
hjackson hjackson is offline
Registered User
 
Join Date: May 2002
Location: London
Posts: 4
Quote:
Originally posted by c.ravi
hello,

Normalization is always done at design level.
once the relationships are defined nothing can be done using sql - plus.
it is just the means to ask/give data from/to database.

if ur trying for query tunning, then there r possibilities.
Normalizaton "should" always be done at design level but modifications can be caried out on the database using SQL. Dropping table columns etc all have an effect on the data although I would not suggest it unless you know what you are doing. You can continue to redefine your database after the initial design and SQL is the tool used to make these changes.
Reply With Quote
  #5 (permalink)  
Old 05-31-02, 03:14
c.ravi c.ravi is offline
Registered User
 
Join Date: May 2002
Location: delhi (india)
Posts: 4
Exclamation

hello hjackson,

true, i agree with u .

but thats not good practise changing the table structure after the initial design is done. what i wrote was in this context.

And as u said Sql IS used for doing modifications.
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