PDA

View Full Version : SQL Plus "Normalization"


Aslam Hussain
04-23-02, 03:18
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

MGZ
05-14-02, 14:36
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

c.ravi
05-30-02, 05:14
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.

hjackson
05-30-02, 10:49
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.

c.ravi
05-31-02, 04:14
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.