When adding a column to an existing table, Oracle always puts the column at the end of the table. Is it possible to tell Oracle where it should appear in the table? If so, how?
|
|
Bear in mind that, under the tables, all the data in the table records are glued together. Adding a column to the end of a table [if it is nullable or (in later versions) not null with a default] just means a change to the table's metadata. Adding a column in the middle would require re-writing every record in that table to add the appropriate value (or markers) for that column. In some cases, that might mean the records take up more room on the blocks and some records need to be migrated. In short, it's a VAST amount of IO effort for a table of any real size. You can always create a view over the table that has the columns in the preferred order and use that view in a DML statement just as you would the table |
||
|
|
|
|
Why does the order of the columns matter? You can always alter it in your select statement? There's an advantage to adding new columns at the end of the table. If there's code that naively does a "SELECT *" and then parses the fields in order, you won't be breaking old code by adding new columns at the end. If you add new columns in the middle of the table, then old code may be broken. At one job, I had a DBA who was super-anal about "Never do 'SELECT *'". He insisted that you always write out the specific fields. |
||
|
|
|
rename YOUR_ORIGINAL_TABLE as YOUR_NEW_TABLE; create table YOUR_ORIGINAL_TABLE nologging /* or unrecoverable */ as select Column1, Column2, NEW_COLUMN, Column3 from YOUR_NEW_TABLE; Drop table YOUR_NEW_TABLE; Select * From YOUR_ORIGINAL_TABLE; <<<<< now you will see the new column in the middle of the table. But why would you want to do it? It's seems illogical. You should never assume column ordering and just use named column list if column order is important. |
||
|
|
|
The location of the column in the table should be unimportant (unless there are "page sizes" to consider, or whatever Oracle uses to actually store the data). What is more important to the consumer is how the results are called, i.e. the Select statement. |
||
|
|
|
|
No, its not possible via an "ALTER TABLE" statement. However, you could create a new table with the same definition as your current one, albeit with a different name, with the columns in the correct order in the way you want them. Copy the data into the new table. Drop the old table. Rename the new table to match the old table name. Tom Kyte has an article on this on AskTom link text |
||
|
|
|
|
I don't think that this can be done without saving the data to a temporary table, dropping the table, and recreating it. On the other hand, it really shouldn't matter where the column is. As long as you specify the columns you are retrieving in your select statement, you can order them however you want. |
||
|
|
|
|
What I normally do is:
|
||
|
|
|
|
I don't believe so - SQL Server doesn't allow these either. The method I always have to use is:
Not exactly pretty, but gets the job done. |
||||||||
|
