بتاريخ: 29 سبتمبر 200421 سنة comment_13791 السلام عليكم ...الرجاء ان تفيدوني كيفيت عمل create user .. من form...... شكرا تقديم بلاغ
بتاريخ: 30 سبتمبر 200421 سنة comment_13812 Dear Al bara'a:You can use a buit in procedure forms_ddl('create user ....');Or you can create stored procedure in the database and name it exec_ddl: CREATE OR REPLACE PROCEDURE EXEC_DDL( stmt VARCHAR2) IS cur INTEGER; BEGIN cur := DBMS_SQL.OPEN_CURSOR; DBMS_SQL.PARSE(cur , stmt , DBMS_SQL.V7); DBMS_SQL.CLOSE_CURSOR(cur); END EXEC_DDL; then from the form call this stored procedure:exec_ddl('create user ....');Regards,Mody تقديم بلاغ
بتاريخ: 3 أكتوبر 200421 سنة كاتب الموضوع comment_14049 thank you (mody)i will try this one. salam تقديم بلاغ
بتاريخ: 7 أكتوبر 200421 سنة كاتب الموضوع comment_14429 السلام عليكمالاخ mody جربت استخدام forms_ddl .. و تمت العمليه بنجاح كالتالي (شكرا)forms_ddl(create user .... identified by ....) تقديم بلاغ
بتاريخ: 10 أكتوبر 200421 سنة comment_14679 forms_ddl('create user user_name identified by password'); تقديم بلاغ
انضم إلى المناقشة
يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.