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

Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL package to create tables and/or triggers

Re: PL/SQL package to create tables and/or triggers

From: Arjan van Bentem <avbentem_at_DONT-YOU-DARE-cable.a2000.nl>
Date: Tue, 21 Jul 1998 20:01:30 +0200
Message-ID: <6p2l1i$efi$1@newton.a2000.nl>


Note that you should have been granted the rights to create tables directly, not by a role.

Arjan.

>cursorid integer;
>begin
> cursorid:=dbms_sql.open_cursor;
> dbms_sql.parse(cursorid, 'create table...', dbms_sql.v7);
> dbms_sql.execute(cursorid);
> dbms_sql.close_cursor(cursorid);
>end;
Received on Tue Jul 21 1998 - 13:01:30 CDT

Original text of this message

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