vote up 2 vote down star

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?

flag

71% accept rate

8 Answers

vote up 1 vote down

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

link|flag
vote up 1 vote down

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.

link|flag
And your dba was abosolutely correct to do so. Select * can break an amazing amount of things and if you have any joins at all returns more data fields than you need (the joins fields are duplicated) and thus wastes precious database and network resources. – HLGEM Feb 23 at 20:10
vote up 2 vote down

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.

link|flag
Its more of an aesthetics thing anything else. The data being stored is coming from an external source (XML) in which they added a field in the middle of their data. So, it just kind of sucks that our table is now in the same order as the XML for all columns but one. – larf311 Feb 23 at 19:33
vote up 4 vote down

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.

link|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

What I normally do is:

  1. Rename the old table.
  2. Create the new table with columns in the right order.
  3. Create the constraints for that new table.
  4. Populate with data:Insert into new_table select * from renamed table.
link|flag
vote up 1 vote down

I don't believe so - SQL Server doesn't allow these either. The method I always have to use is:

  1. Create new table that looks right (including additional column
  2. Begin transaction
  3. select all data from old table into new one
  4. Drop old table
  5. Rename new table
  6. Commit transaction.

Not exactly pretty, but gets the job done.

link|flag
SQL Server will allow you to place a column into a table where you wish when you use the Table Designer. This can be done even if there is already data and rows in the current table (as long as you either have the column set to Nullable or set a default value) – TheTXI Feb 23 at 19:30
Fair enough, but on the back end, it executes this exact script. Even if you add a column to the end of a table, it does this, which is why table modifications through the designer can take ages to actually execute. – rwmnau Feb 23 at 19:33
Steps 2. and 6. are redundant. All DDL statements that alter the schema force a new implicit transaction. You cannot have outstanding DML changes when you change the structure. – Khb Feb 24 at 12:06
Ah - you're right about the implicit transaction thing. I've never understood why you can't make schema changes inside a transaction, but you can not. Thanks for pointing that out. – rwmnau Feb 24 at 16:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.