thanks for response.
I have copy the records before changing.
but it is not change the datatype,
if datatype changed and data lost
how I can re-enter the records into the changed table
from the backup table.
I have thusanads of records.
Quote:
quote:Originally posted by pgtips
Why don't you copy the records before you change the data type, then if anything nasty happens, you've still got your records. Use a simple SELECT INTO query, like this:
Code:
SELECT * INTO NewTable
FROM TableYouWantToChange
|