Re: COPY command dieing - help

2001-02-16 Thread cjgait
I ran into something like this on a client's system recently. They had a LONG in the table, and that won't come over with the COPY command. If that's the case here, then you need to use the TO_LOB() function to take it from LONG to CLOB on the fly. As sometimes happens, the error message can

RE: COPY command dieing - help

2001-02-06 Thread Shaw, John B
I didn't - but now I have with the following result. * ERROR at line 1: ORA-00900: invalid SQL statement -Original Message- Sent: Friday, February 02, 2001 11:46 AM To: Multiple recipients of list ORACLE-L Did you try leaving off the semi colon? Like this, for instance: copy from

Re: COPY command dieing - help

2001-02-02 Thread jkstill
On Thu, 1 Feb 2001, Shaw, John B wrote: I am attempting to copy a table from a 8.1.6 db to 8.1.7. Most of the tables have come across successfully. One table is having a problem. The command: copy from v55/v55@int to user/pwd@frog create DMF using select * from DMF@int; This table gives

Re: COPY command dieing - help

2001-02-02 Thread Tim Sawmiller
Did you try leaving off the semi colon? Like this, for instance: copy from v55/v55@int to user/pwd@frog create DMF - using select * from DMF@int / Notice that if you have several lines, you need to put a space and hyphen after each line except the last one. At least, that has been my