perlriffic
Programmer
I need to create a temp table that has the same structure and some of the same values that are in another table (I'm going to do an update of the production table and want a copy of the original data).
I tried something like this, but it bombed
create temp table work_area as
select * from orig_table
where field = 'value';
I have done this in Sybase and Oracle and it worked. I can't get it to work in Informix. Am I missing something?
I tried something like this, but it bombed
create temp table work_area as
select * from orig_table
where field = 'value';
I have done this in Sybase and Oracle and it worked. I can't get it to work in Informix. Am I missing something?