Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> HELP: Why doesn't this query work?

HELP: Why doesn't this query work?

From: DG <necron1999_at_hotmail.com>
Date: 12 Feb 2004 03:40:41 -0800
Message-ID: <eb556de4.0402120340.72117c5@posting.google.com>


Hi, yes, I'm an Oracle newbie:

When I run this query:

declare
thecount number ;

begin  

select count(*) into thecount from user_tables where table_name = 'B'; if thecount = 0 then

                   create table B (theCol number);
end if;
end;

I get this error:

PLS-00103: Støtte på symbolet CREATE der ett av følgende var ventet: ....blah blah...

why is this? When I change the statement in the "IF" block to..say..an Insert statement it works ok...

HELP! Thank you Received on Thu Feb 12 2004 - 05:40:41 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US