What's the equivalent of FORMS_DDL in PL/SQL? I have tried to use
DBMS_SQL.EXECUTE(proc) to execute DDL commands in vain.

All I want is to Create USers from an application. In forms I would use

DECLARE
 name varchar2(20) := 'Moses';
 pword varchar2(20) := 'nevermind'
 state varchar2(200) := 'CREATE USER '||name||' IDENTIFIED BY '||pword|| ';';

BEGIN
   FORMS_DDL(state);
END;

I thought I could use DBMS_SQL.EXECUTE(state) but it does not work for me.

Advise!!

Moses
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Moses Ngati Moya
  INET: [EMAIL PROTECTED]

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

Reply via email to