Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: sqlplus command line using
Użytkownik Vince <vincent@ napisał:
> hello there!
>
> I have to insert some procedures, tables and sequences from command
> shell. So I try to do so using sqlplus command line coupled to a SQL
> file containing all my code..
> But after parsing the file, SQLplus stays up and do not give hand back
> to the OS, displaying a number which seems to be a line number..and I
> must ctrl+c the app to then type 'exit'...
>
Crystall Ball says:
Eighter you got a blank lines, or a definition not properly ended. Remember:
CREATE TABLE X
(
a number,
b number
);
CREATE TABLE X
(
a number,
b number
)
/
If you want us to debug your script, kindly send a code.
-- NoelReceived on Wed May 04 2005 - 04:42:39 CDT
![]() |
![]() |