Re: PC SQL/PLUS - Newbie Question

From: <mlanda_at_vnet.ibm.com>
Date: 1996/09/04
Message-ID: <50k2st$1817_at_watnews1.watson.ibm.com>#1/1


In <Dx0B1E.Gxz_at_world.std.com>, pww_at_world.std.com (Paul W Woodbury) writes:
>Just started using SQL/PLUS from my pc, and I notice many differences
>from the UNIX version I am used to using. The one that I hope
>someone can help with is command terminators. If a simple script
>does two or more sql/plus commands how is each command terminated.
>I have tried semi-colon and oracle complains, I also tried back-slash.
>Help implies that /; or new-line will work.
>
>Any help is appreciated
>
>-Paul Woodbury

A / should always work, for example:

sql> select * from test

   2 /

Usually the default sql terminator is a semi-colon. To find out what command terminator you are using type:

sql > Sho SQLTERMINATOR

To set the command terminator to something other than what you are currently using type:

sql > set sqlterminator ;

Now,

sql > select * from test;

Will work.

Finally, I have a feeling that your sqlterminator value is getting assigned during login. Check your disk to see if you have a glogin.sql or login.sql script. If you do check it and see if the SqlTerminator is getting set there then change/add your own default.

M.Landa Received on Wed Sep 04 1996 - 00:00:00 CEST

Original text of this message