|
Re: Export than recreate table with new column and than importport [message #69874 is a reply to message #69873] |
Fri, 15 March 2002 05:28 |
Grant
Messages: 578 Registered: January 2002
|
Senior Member |
|
|
I am assuming you are not using "alter table add column" because you do not want the new column at the end. What you can do is create a new table with the new structure and do an "insert" command from the original. Then drop the old table and rename the new one to the original name.
You will not be able to import the data to the new table anyway the structure will not match and I believe it will error out on you.
|
|
|