Re: Drop Table in PLSQL Script
From: Rich H <qqaazz_at_hotmail.com>
Date: 25 Jun 2002 17:09:24 -0700
Message-ID: <b5695d57.0206251609.2e1b0ed7_at_posting.google.com>
Date: 25 Jun 2002 17:09:24 -0700
Message-ID: <b5695d57.0206251609.2e1b0ed7_at_posting.google.com>
Try this if you are using Oracle 8i or above.
declare
c varchar2(2000) ;
begin
c := 'drop table z' ;
EXECUTE IMMEDIATE c ;
end;
/
Received on Wed Jun 26 2002 - 02:09:24 CEST