I did a little searching but didn't find exactly what I was looking for.
Would there be a problem with doing an EXPORT of data from a table into a flat file, adding a column to the table, then executing an IMPORT into that table? Assuming that new column is non-nullible and carries a default value setting, how would the import statement look?
Any help is appreciated.
Thanks,
Glen
Would there be a problem with doing an EXPORT of data from a table into a flat file, adding a column to the table, then executing an IMPORT into that table? Assuming that new column is non-nullible and carries a default value setting, how would the import statement look?
Code:
EXPORT TO myfile.ixf OF ixf SELECT * FROM MYTABLE;
IMPORT FROM myfile.ixf OF ixf INSERT INTO MYTABLE (col1, col2, col3) VALUES ?
Thanks,
Glen