Hi
I have a table created with long datatype
CREATE TABLE T1(ID NUMBER, text_data long);
How do i copy/replicate to another table. If i use
create table t2 as select * from t1 it doesn't work.
In oracle 8i i used copy command as shown below
copy from uid/pwd@inst to uid/pwd@inst CREATE T2 USING SELECT * FROM T1;
But the same command if execute in oracle 9i it comes with invalid identifier error. Is copy command desupported in 9i ?
What is the equivalent command should i use
regards
khobar
I have a table created with long datatype
CREATE TABLE T1(ID NUMBER, text_data long);
How do i copy/replicate to another table. If i use
create table t2 as select * from t1 it doesn't work.
In oracle 8i i used copy command as shown below
copy from uid/pwd@inst to uid/pwd@inst CREATE T2 USING SELECT * FROM T1;
But the same command if execute in oracle 9i it comes with invalid identifier error. Is copy command desupported in 9i ?
What is the equivalent command should i use
regards
khobar