Dbms_metadata and trigger ddl (db version 10g)

Hi all,
does anyone know if there is a parameter in procedure dbms_metadata.set_transform_param to get rid of the alter trigger enable clause that is automatically appended otherwise?
For other objects like table there is such possibility for constraints for instance, but I don't see triggers in the list of supported objects.
Thanks and Bye,
Flavio

Hi All,
According to the support, we update the column flag in mlog$ to fix the issue due to the Bug 12849688.
Now, DBMS_METADATA.get_dependent_ddl can return the right result.
However, the old data in the materialized view log cannot be cleared after different kinds of refresh including fast, complete and force etc.
Any idea?
Thanks for your help

Similar Messages

  • Suppress auto sequence and trigger DDL for surrogate keys?

    Is there a way to suppress trigger and sequence creation for surrogate keys when export to DDL file?
    I know most of the time the automatic sequence and trigger creation is welcome and very handy.
    However I'm migrating from an old Designer model and there only the needed sequences are created.
    They have a different name and trigger logic is custom (and  generated outside designer).
    There is a lot of package code depending on this. So I prefer to create and use different sequences.
    Is there a way to achieve this? Any tips are welcome.Create

    Hi,
    Note that generating the DDL for Oracle 12c means that it will attempt to use your Oracle 12c Physical model.  So if you normally use Oracle 10g or 11g, you will find that any details from your Oracle 10g or 11g Physical Model will not be included.  So this approach may have other implications for you.
    If you are not using Oracle 12c, there are some relevant properties on the Auto Increment tab of the Relational Model properties dialog for the Column which may help:
    Sequence Name - allows you to specify the name of the Sequence (which can be the name of a Sequence defined in the relevant Physical Model).
    Trigger Name - allows you to specify the name of a Trigger (which can be the name of a Trigger that is defined for the Table in the Physical Model).
    Generate Trigger - unsetting this will stop the Trigger being generated.
    David

  • How do you get a list of all the trigger DDLs?

    I want to get a list of all the DB trigger DDLs of owner 'ABS'. I want to do it using 1 SQL statement.
    This is what I ran:
    SELECT
    TO_CHAR(DBMS_METADATA.GET_DDL('TRIGGER', TRIGGER_NAME, 'ABS'))
    FROM
    ALL_TRIGGERS
    WHERE
    OWNER = 'ABS';
    I get this error: [1]:
    (Error): ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: 4414, maximum: 4000)
    Then I looked up in the web and they ask to use DBMS_LOB.SUBSTR instead. So I do that:
    SELECT
    DBMS_LOB.SUBSTR(DBMS_METADATA.GET_DDL('TRIGGER', TRIGGER_NAME, 'ABS'), 32767, 1)
    FROM
    ALL_TRIGGERS
    WHERE
    OWNER = 'ABS';
    Now I get this error:
    [1]: (Error): ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at line 1
    Looks like you cannot show more than *4000* chars. There are 43 triggers whose DDL is more than 4000 chars long.
    Why is this?
    How can I solve my problem?
    Edited by: Channa on Feb 16, 2010 9:45 PM

    Herald, fantastic news. SET LONG did the trick.
    But I had to put a very big value. 32000 was not enough. Otherwise some of the triggers (big ones) got cut off.
    This is my complete code which did it.
    SPOOL F:\Channa\zz_zzTemp\Binuka\OutPut.txt
    set trimspool on
    set pages 0
    set long *1000000000*
    set linesize 32767
    SET TERMOUT OFF
    SELECT DBMS_METADATA.GET_DDL('TRIGGER', TRIGGER_NAME, 'ABS')
    FROM ALL_TRIGGERS
    WHERE OWNER = 'ABS' AND trigger_name NOT LIKE 'BIN$%'
    SPOOL OUT
    THANKS A LOT. REALLY APPRECIATE IT.
    P.S: I had to include the NOT LIKE 'BIN$%' in the where clause because otherwise I got this error:
    ERROR:
    ORA-31603: object *"BIN$cqXDSqghrFngQKjAJAovgw==$0"* of type TRIGGER not found in
    schema "ABS"
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA", line 2805
    ORA-06512: at "SYS.DBMS_METADATA", line 4333
    ORA-06512: at line 1
    no rows selected
    I THINK BIN$... triggers are dropped triggers in the DB recycle bin???
    Edited by: Channa on Feb 17, 2010 2:58 AM
    Edited by: Channa on Feb 17, 2010 3:01 AM

  • Output of system_privilege_map for version 10g needed

    Hello everyone.
    I need the output of system_privilege_map for Oracle DB version 10g because i've no access to a 10g db at the moment but i need the complete list of the system privileges with 173 entries.
    Hope someone of you will be such nice and post it here for me :-)
    Thanks in advance.
    Jim

    Hi,
    In 10.2.0.3 i get 166 entries - confirmed with what exists in sql.bsq
    grep SYSTEM_PRIVILEGE_MAP sql.bsq |grep -i insert |grep -v rem |wc -l
    =166
    SQL> /
    -3 ALTER SYSTEM 0
    -4 AUDIT SYSTEM 0
    -5 CREATE SESSION 0
    -6 ALTER SESSION 0
    -7 RESTRICTED SESSION 0
    -10 CREATE TABLESPACE 0
    -11 ALTER TABLESPACE 0
    -12 MANAGE TABLESPACE 0
    -13 DROP TABLESPACE 0
    -15 UNLIMITED TABLESPACE 0
    -20 CREATE USER 0
    -21 BECOME USER 0
    -22 ALTER USER 0
    -23 DROP USER 0
    -30 CREATE ROLLBACK SEGMENT 0
    -31 ALTER ROLLBACK SEGMENT 0
    -32 DROP ROLLBACK SEGMENT 0
    -40 CREATE TABLE 0
    -41 CREATE ANY TABLE 0
    -42 ALTER ANY TABLE 0
    -43 BACKUP ANY TABLE 0
    -44 DROP ANY TABLE 0
    -45 LOCK ANY TABLE 0
    -46 COMMENT ANY TABLE 0
    -47 SELECT ANY TABLE 0
    -48 INSERT ANY TABLE 0
    -49 UPDATE ANY TABLE 0
    -50 DELETE ANY TABLE 0
    -60 CREATE CLUSTER 0
    -61 CREATE ANY CLUSTER 0
    -62 ALTER ANY CLUSTER 0
    -63 DROP ANY CLUSTER 0
    -71 CREATE ANY INDEX 0
    -72 ALTER ANY INDEX 0
    -73 DROP ANY INDEX 0
    -80 CREATE SYNONYM 0
    -81 CREATE ANY SYNONYM 0
    -82 DROP ANY SYNONYM 0
    -83 SYSDBA 0
    -84 SYSOPER 0
    -85 CREATE PUBLIC SYNONYM 0
    -86 DROP PUBLIC SYNONYM 0
    -90 CREATE VIEW 0
    -91 CREATE ANY VIEW 0
    -92 DROP ANY VIEW 0
    -105 CREATE SEQUENCE 0
    -106 CREATE ANY SEQUENCE 0
    -107 ALTER ANY SEQUENCE 0
    -108 DROP ANY SEQUENCE 0
    -109 SELECT ANY SEQUENCE 0
    -115 CREATE DATABASE LINK 0
    -120 CREATE PUBLIC DATABASE LINK 0
    -121 DROP PUBLIC DATABASE LINK 0
    -125 CREATE ROLE 0
    -126 DROP ANY ROLE 0
    -127 GRANT ANY ROLE 0
    -128 ALTER ANY ROLE 0
    -130 AUDIT ANY 0
    -135 ALTER DATABASE 0
    -138 FORCE TRANSACTION 0
    -139 FORCE ANY TRANSACTION 0
    -140 CREATE PROCEDURE 0
    -141 CREATE ANY PROCEDURE 0
    -142 ALTER ANY PROCEDURE 0
    -143 DROP ANY PROCEDURE 0
    -144 EXECUTE ANY PROCEDURE 0
    -151 CREATE TRIGGER 0
    -152 CREATE ANY TRIGGER 0
    -153 ALTER ANY TRIGGER 0
    -154 DROP ANY TRIGGER 0
    -160 CREATE PROFILE 0
    -161 ALTER PROFILE 0
    -162 DROP PROFILE 0
    -163 ALTER RESOURCE COST 0
    -165 ANALYZE ANY 0
    -167 GRANT ANY PRIVILEGE 0
    -172 CREATE MATERIALIZED VIEW 0
    -173 CREATE ANY MATERIALIZED VIEW 0
    -174 ALTER ANY MATERIALIZED VIEW 0
    -175 DROP ANY MATERIALIZED VIEW 0
    -177 CREATE ANY DIRECTORY 0
    -178 DROP ANY DIRECTORY 0
    -180 CREATE TYPE 0
    -181 CREATE ANY TYPE 0
    -182 ALTER ANY TYPE 0
    -183 DROP ANY TYPE 0
    -184 EXECUTE ANY TYPE 0
    -186 UNDER ANY TYPE 0
    -188 CREATE LIBRARY 0
    -189 CREATE ANY LIBRARY 0
    -190 ALTER ANY LIBRARY 0
    -191 DROP ANY LIBRARY 0
    -192 EXECUTE ANY LIBRARY 0
    -200 CREATE OPERATOR 0
    -201 CREATE ANY OPERATOR 0
    -202 ALTER ANY OPERATOR 0
    -203 DROP ANY OPERATOR 0
    -204 EXECUTE ANY OPERATOR 0
    -205 CREATE INDEXTYPE 0
    -206 CREATE ANY INDEXTYPE 0
    -207 ALTER ANY INDEXTYPE 0
    -208 DROP ANY INDEXTYPE 0
    -209 UNDER ANY VIEW 0
    -210 QUERY REWRITE 0
    -211 GLOBAL QUERY REWRITE 0
    -212 EXECUTE ANY INDEXTYPE 0
    -213 UNDER ANY TABLE 0
    -214 CREATE DIMENSION 0
    -215 CREATE ANY DIMENSION 0
    -216 ALTER ANY DIMENSION 0
    -217 DROP ANY DIMENSION 0
    -218 MANAGE ANY QUEUE 1
    -219 ENQUEUE ANY QUEUE 1
    -220 DEQUEUE ANY QUEUE 1
    -222 CREATE ANY CONTEXT 0
    -223 DROP ANY CONTEXT 0
    -224 CREATE ANY OUTLINE 0
    -225 ALTER ANY OUTLINE 0
    -226 DROP ANY OUTLINE 0
    -227 ADMINISTER RESOURCE MANAGER 1
    -228 ADMINISTER DATABASE TRIGGER 0
    -233 MERGE ANY VIEW 0
    -234 ON COMMIT REFRESH 0
    -235 EXEMPT ACCESS POLICY 0
    -236 RESUMABLE 0
    -237 SELECT ANY DICTIONARY 0
    -238 DEBUG CONNECT SESSION 0
    -241 DEBUG ANY PROCEDURE 0
    -243 FLASHBACK ANY TABLE 0
    -244 GRANT ANY OBJECT PRIVILEGE 0
    -245 CREATE EVALUATION CONTEXT 1
    -246 CREATE ANY EVALUATION CONTEXT 1
    -247 ALTER ANY EVALUATION CONTEXT 1
    -248 DROP ANY EVALUATION CONTEXT 1
    -249 EXECUTE ANY EVALUATION CONTEXT 1
    -250 CREATE RULE SET 1
    -251 CREATE ANY RULE SET 1
    -252 ALTER ANY RULE SET 1
    -253 DROP ANY RULE SET 1
    -254 EXECUTE ANY RULE SET 1
    -255 EXPORT FULL DATABASE 0
    -256 IMPORT FULL DATABASE 0
    -257 CREATE RULE 1
    -258 CREATE ANY RULE 1
    -259 ALTER ANY RULE 1
    -260 DROP ANY RULE 1
    -261 EXECUTE ANY RULE 1
    -262 ANALYZE ANY DICTIONARY 0
    -263 ADVISOR 0
    -264 CREATE JOB 0
    -265 CREATE ANY JOB 0
    -266 EXECUTE ANY PROGRAM 0
    -267 EXECUTE ANY CLASS 0
    -268 MANAGE SCHEDULER 0
    -269 SELECT ANY TRANSACTION 0
    -270 DROP ANY SQL PROFILE 0
    -271 ALTER ANY SQL PROFILE 0
    -272 ADMINISTER SQL TUNING SET 0
    -273 ADMINISTER ANY SQL TUNING SET 0
    -274 CREATE ANY SQL PROFILE 0
    -275 EXEMPT IDENTITY POLICY 0
    -276 MANAGE FILE GROUP 1
    -277 MANAGE ANY FILE GROUP 1
    -278 READ ANY FILE GROUP 1
    -279 CHANGE NOTIFICATION 0
    -280 CREATE EXTERNAL JOB 0
    166 rows selected.
    In theory 10.2.0.4/10.2.0.5 could have altered this and 10.2.0.1 base version could be different from 10.2.0.3......
    Cheers,
    Harry

  • Generate trigger ddl

    Hi there,
    How do I recreate the trigger ddl without using the "exp/imp"? I've tried the DBMS_METADATA.GET_DDL and didn't work.
    Thanks

    Make sure you have that trigger using user_triggers view. Becuase I see dbms_metadata works.
    SQL> select dbms_metadata.get_ddl('TRIGGER','PDM_BRAND_BI') from dual;
    DBMS_METADATA.GET_DDL('TRIGGER','PDM_BRAND_BI')
      CREATE OR REPLACE TRIGGER "XX"."PDM_BRAND_BI"
    BEFORE
      INSERT
    ON pdm_Message was edited by:
    RPuttagunta

  • Installation error message for Oracle Database software for version 10g

    Would someone be able to advise why I keep getting the following error message whilst installing Oracle trial Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition? Link listed below : -
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Error message "Cannot create directory"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp"
    Below is the 12 steps that I go through, please advise what I'm doing wrong : -
    1. (Operations) default is Create a database
    2. (Database templetes) default is general purpose
    3. (Database Identification) projemp.local for Global database name & projemp for SID
    4. (Management options) default is "Configure the database with Enterprise manager, also the options button has been clicked for "Use database control for database management"
    5. (Database Credentials) the options button has been clicked for "Use the same password for all accounts" so I've set up a new password, was that correct?
    6. (Storage options) the options button is clicked for "File System - use the file system for database storage.
    7. (Database file locations) the options button is clicked for "Use database file locations for template" Is this option correct? Other options are Use common location for all database files or use Oracle-managed files?
    8. (Recovery configuration) the options button is clicked for "Specify flash recovery area
    9. (Database content) nothing has been selected, the only option is "Sample schemas" should that be clicked?
    10. (Initialization parameters) the options button is clicked for "Typical- allocate memory as a % of the total physical memory
    11. (Database storage) no options available
    12. (Creation options) the options button has been selected for "Create Database"
    Click finish
    I then get a screen stating General purpose, click OK then I get the following error message as stated at the start of this e-mail ""Cannot create directory"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp".
    Regards
    Phil

    855880 wrote:
    I have been trying to install the "Oracle Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition" about six times with no success.Do you realize you just mentioned 3 different and distinct products? So which one are you installing?
    >
    I've gone through my courses instructions as listed above (1-12) and end up with the following error message"C:\oracle\product\10.2.0\db_7\cfgtoollogs\dbca\projemp".What course?
    >
    I've removed the software from my computer using control panel, programs & features then uninstall once but the other five times the software hasn't been listed. Whilst the Oracle was on my task bar I was able to install using Start > Programs > Oracle - HOME-NAME > Database Administration > Database Configuration Assistant.No you didn't. Database Configuration Assistant does not remove software. It can remove a database. As I mentioned before, there is a difference between the software and the objects that software manages. Deleting an Excel spreadsheet is not the same as deleting Microsoft Office. Deleting an Oracle database with Database configuration assistant is not the same as removing the Oracle software.
    >
    Now that oracle is not on my task bar I've unzipped the link below, clicked on db, Disk1, setup, changed the Database password (is that correct?) install and I get the following error message "Check complete. The overall result of this check is: Failed<<<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned IP addresses;
    However, before you can do this, you must configure the Microsoft LoopBack Adaptor to be the primary network adapter on the system. See the installation Guide for more details on installing the software on systems configured with DHCP."
    So what did you do with the above error message? Did you follow up on what it said? Did you read the very fine Installation Guide that comes with the software? Did you read the section on networking considerations where it discussed DHCP assigned addresses and installing the loopback adapter?
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    Ok, that link takes us to the download page, which does not shed any light at all on your problems
    I'm using Windows Vista Home Premium, 32 bit operating system, and my computer is saying I have 142 GB free space.
    If you read the installation manual that came with the downloaded software, you'd have seen in the prerequisites that Home editions of Windows are NOT listed as supported platforms, whereas Business, Enterprise, and Ultimate editions specifically ARE listed as supportd.
    Hope this is some help.And
    I'm not to clever on computers so would you be able to advise how I get to the command window to issue the SET command please?
    Also I've no idea what OS user I am, I'm taking an on-line Oracle course and been advised to install "Oracle Database software for version 10g Release 2 Standard Edition, Standard Edition One, and Enterprise Edition"
    How do I find out if I'm part of an Administrator, ORA_DBA group ?
    Can you walk me through how to create the directory from command line please?Ok, given the above statements from you, I'm not even sure where to begin. I don't want to be cruel, but this self-admitted lack of even the most rudimentary knowledge by someone attempting to learn about Oracle is truly astounding. What course are you taking? Why are you taking this course?

  • Using dbms_metadata to get ddl for creating directories

    Hi,
    I am working on creating a test database, which is a copy of production for 11g upgrade testing. I want to get all the ddls from my production databse to create all the directories in the new test database. I have been trying to use dbms_metadata for this -
    Below is the code that I have been trying to use. However, when I query the my_metadata table, there is nothing in there. Can someone please help me with this?
    DROP TABLE my_metadata;
    CREATE TABLE my_metadata(md CLOB);
    CREATE OR REPLACE PROCEDURE progp1_directories_extract
    AS
    hndl NUMBER; --dbms_metadata handle
    th NUMBER; --transform handle
    DDL CLOB; --individual clobs extracted from the database
    BEGIN
    hndl := DBMS_METADATA.OPEN ('DATABASE_EXPORT'); --Open the metadata
    DBMS_METADATA.set_filter (hndl, 'INCLUDE_PATH_EXPR', '=''DIRECTORY'''); --Filter data as appropriate
    th := DBMS_METADATA.add_transform (hndl, 'DDL'); --Get the Transform Handle
    DBMS_METADATA.set_transform_param (th, 'SQLTERMINATOR', TRUE); --Include the semicolon
    LOOP
    DDL := DBMS_METADATA.fetch_clob (hndl); --Loop through the result set, inserting into our temp table
    EXIT WHEN DDL IS NULL;
    INSERT INTO my_metadata
    (md)
    VALUES (DDL);
    COMMIT;
    END LOOP;
    DBMS_METADATA.CLOSE (hndl);
    EXCEPTION
    WHEN OTHERS
    THEN
    NULL;
    END;
    show errors

    user12158503 wrote:
    Below is the code that I have been trying to use. However, when I query the my_metadata table, there is nothing in there. Can someone please help me with this?
    DROP TABLE my_metadata;
    CREATE TABLE my_metadata(md CLOB);
    CREATE OR REPLACE PROCEDURE progp1_directories_extract
    AS
    hndl   NUMBER; --dbms_metadata handle
    th     NUMBER; --transform handle
    DDL    CLOB;   --individual clobs extracted from the database
    BEGIN
    hndl := DBMS_METADATA.OPEN ('DATABASE_EXPORT'); --Open the metadata
    DBMS_METADATA.set_filter (hndl, 'INCLUDE_PATH_EXPR', '=''DIRECTORY'''); --Filter data as appropriate
    th := DBMS_METADATA.add_transform (hndl, 'DDL'); --Get the Transform Handle
    DBMS_METADATA.set_transform_param (th, 'SQLTERMINATOR', TRUE); --Include the semicolon
    LOOP
    DDL := DBMS_METADATA.fetch_clob (hndl); --Loop through the result set, inserting into our temp table
    EXIT WHEN DDL IS NULL;
    INSERT INTO my_metadata
    (md)
    VALUES (DDL);
    COMMIT;
    END LOOP;
    DBMS_METADATA.CLOSE (hndl);
    EXCEPTION
    WHEN OTHERS
    THEN
    NULL;
    END;
    show errors
    I can't see the bit where you actually try to execute the procedure - I assume you are doing this.
    One killer feature of your code is the "when others then null" - you're not going to know where and why your code failed.
    Taking a guess: are you running this as SYS ? If not then it's possible that you're not finding any data because of some feature in the way that the code sees the directory objects - they're always owned by SYS.
    Although your code (when corrected) will generate the grants on the directories, the following is sufficient to generate the "create directory" statements. (Since all directories are owned by SYS it's actually an error to reference an owner in this query -- that means, by the way, that the answer you've marked as correct doesn't actually work).
    select
         dbms_metadata.get_ddl('DIRECTORY',directory_name)
    from
         dba_directories
    ;Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.
    There is a +"Preview"+ tab at the top of the text entry panel. Use this to check what your message will look like before you post the message. If it looks a complete mess you're unlikely to get a response. (Click on the +"Plain text"+ tab if you want to edit the text to tidy it up.)
    +"I believe in evidence. I believe in observation, measurement, and reasoning, confirmed by independent observers. I'll believe anything, no matter how wild and ridiculous, if there is evidence for it. The wilder and more ridiculous something is, however, the firmer and more solid the evidence will have to be."+
    Isaac Asimov                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Using Oracle 8i client, can I  access  oracle server with version 10g ?

    Hi ,
    I am a developer working with C++ and Oracle. In Oracle particularly I am new.
    I have some basic Question related to oracle.
    1. With Oracle 8i client Can I connect to Oracle server with version 10g?
    2. With Oracle 8i client Can I connect to Oracle server with version 9i?
    3. With Oracle 9i client Can I connect to Oracle server with version 10g?
    4. With Oracle 10g client Can I connect to Oracle server with version 8i?
    5. With Oracle 10g client Can I connect to Oracle server with version 9i?
    6. With Oracle 9i client Can I connect to Oracle server with version 8i?
    These are basic yes/no type question.
    Thanks & Reagards
    Ravi Bhushan

    All answers on Metalink Note:207303.1 - Client / Server / Interoperability Support Between Different Oracle Versions

  • Oracle 10G Installation and Migration from 6i to 10G and

    I never had the opportunity to Install or Migrate oracle any version.
    We are in the process of Installing Oracle 10G and moving Oracle Forms and Reports from 6i to 10G. I am asked by my superiors to conduct the interviews and decide which candidate will be best. These are temporary positions but are very important as a wrong candidate will affect the entire project. Need the right candidate.
    I would like some hints or suggestion as to what skills should I test or what questions to ask.
    Any sites or any questions will help me.
    Thanks to All

    See,
    to read how we performed the upgrade and see some issues:
    http://www.oracle.com/technology/products/forms/index.html
    http://www.oracle.com/technology/products/forms/htdocs/upgrade/index.html
    http://www.oratransplant.nl/category/oracle/forms/6i-to-10g-upgrade/
    Good Luck!!

  • How to download and install webutil in FORMS 10G 10.1.2.0.2

    Where i find all the step to
    how to download and install webutil in FORMS 10G 10.1.2.0.2
    i DON'T FIND NOTHING OF VERY GOOD TO FOLLOW !!!

    hi
    u do not need to install any webutil in R2 u just need to configure few things.
    please read the following notes and try to configure.
    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
      and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
      [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
         cd [JacobStage]
         copy jacob.jar [OraHome]\forms\java\.
         copy jacob.dll [OraHome]\forms\webutil\.
      The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
      Open a DOS command prompt.
      Add [OraHome]\jdk\bin to the PATH:
         set PATH=[OraHome]\jdk\bin;%PATH%
      Sign the files, and check the output for success:
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
      you may skip this step. Otherwise,
      Create a schema to hold the WebUtil stored code, and privileges needed to
      connect and create a stored package. Schema name "WEBUTIL" is recommended
      for no reason other than consistency over the user base.
      Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
      out the EXIT statement, to be able to see whether the objects were created witout
      errors.
      Start SQL*Plus as SYSTEM, and issue:
         CREATE USER webutil IDENTIFIED BY [password]
         DEFAULT TABLESPACE users
         TEMPORARY TABLESPACE temp;
         GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
         CONNECT webutil/[password]@[connectstring]
         @[OraHome]\forms\create_webutil_db.sql
         -- Inspect SQL*Plus output for errors, and then
         CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
      Reconnect as SYSTEM, and issue:
         grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
      to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
      Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
      It is important to generate the PLX, to avoid the FRM-40039 discussed in
      Note 303682.1
      If the PLX is not generated, the Webutil.pll library would have to be attached with
      full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
      Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
      There is no need to Subclass the WebutilConfig object.
      Attach the Webutil.pll Library, and remove the path.
      Add an ON-LOGON trigger with the code
             NULL;
      to avoid having to connect to an RDBMS (optional).
      Create a new button on a new canvas, with the code
             show_webutil_information (TRUE);
      in a WHEN-BUTTON-PRESSED trigger.
      Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
      the "Application Server URL" is empty.
      Then append "?config=webutil" at the end, so you end up with a URL of the form
          http://server:port/forms/frmservlet?config=webutil
    10) Run your form.

  • Install and maintain two lattest versions of oracle discover ,owb , htmldb

    To install and maintain two lattest versions of oracle discover ,owb and htmldb in one server , what are requirements. what steps to follow to install and maintain. My Current setup is
    Oracle Discoverer Suite 10g (9.0.4.0.1) ,
    HTML_DB Release 2.0
    OWB 10.1.0.4
    I want to install and run anather versions of all in same server? how ?

    i have just thought that i have to install in separate oracle home in separate directory. my server o/s is unix. i want more info on it.

  • I am on windows 7 and I upgraded to 10.0.2 and now it will not open. I have removed firefox completely and uploaded it again and that did not work. So my latest attempt I removed firefox 10 again and uploaded the beta version and once again nothing.

    I am on windows 7 and I upgraded to the newest verison of firefox and now it will not open. I have removed firefox completely and uploaded it again and that did not work. I then made sure it could get through my firewall and that did not work. So my latest attempt I removed firefox 10 again and uploaded the beta version hoping that would do it and once again nothing. It will not open at all. Please help - is there a live chat or a number to talk to someone at Firefox?

    I think when uninstalling you may also have to choose (tick) to delete the preferences and other personal data like the bookmarks, stored passwords etc. to erase completely. If you are installing afresh, please try right-clicking on the file and '''Run as administrator''' to install. And when uninstalling, please also make sure choose to delete all data and also manually delete any '''Mozilla''', '''Mozilla Firefox''' or '''Firefox''' from %appdata%, %localappdata% and %programfiles%. You can open a location by typing for eg. %appdata% in the '''Run''' box (Windows key + R). You may also have to check the '''VirtualStore''' folder in %localappdata%. Files in the VirtualStore can be problematic. I think a clean installation may help.
    [https://www.mozilla.org/en-US/firefox/new/ Firefox]
    [http://kb.mozillazine.org/Installation_directory Installation Folder]
    [http://kb.mozillazine.org/Profile_folder Profile Folder]
    Please note that using system restore would usually damage the Firefox installation.

  • My new 8th gen iPod nano is 'not recognized' by my computer. My computer runs on Windows 7, and I've installed and updated the latest versions of itunes etc, but still to no avail! I've tried different usb ports, troubleshooting...

    My computer runs on Windows 7, and I've installed and updated the latest versions of itunes etc, but still to no avail! I've tried different usb ports, troubleshooting, etc... But it still says "One of the USB decuces arrached to this omputer has malfunctioned and windows does not recognize it".
    The iPod is brand new, sent to me by Apple as part of the 1st gen replacement programme. I've been using the cable that came with the 1st gen iPod (I bought the first gen second hand) It always worked on my computer with the 1st gen iPod. So I was wondering, do you think I need to replace my cable in order for my PC to recognize my iPod or is it something else?
    Thanks

    Try a different cable. And are you connecting directly to your computer or through a USB hub?

  • I am trying to use the new iwork beta tools on iCloud.  I currently have 10.8.4 OSX on my iMac and 6.0.5 version of Safari, but when I try to open documents on my iphone in the cloud it tells me my browser isn't supported

    I am trying to use the new iwork beta tools on iCloud.  I currently have 10.8.4 OSX on my iMac and 6.0.5 version of Safari, but when I try to open documents on my iphone in the cloud it tells me my browser isn't supported

    Note that iWork for iCloud is only designed for PCs and Macs > http://support.apple.com/kb/HT5779
    To access to your iWork documents on the iPhone, install Keynote, Numbers or Pages from the App Store

  • TS5376 I'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.

    'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.  I have even done a repair to see if that works and it has not.  Has anyone else found a new way to get it working?

    Try Troubleshooting issues with iTunes for Windows updates.
    tt2

Maybe you are looking for

  • Error in the process

    Hi Experts , There is a acomplex BPM process. Avoiding the need to create it again  , I copied the process.bpmn , process.bpmn.xlf and process.diagram from the src folder to the new Process. I have the done the mapping again Now but I am receiving ab

  • Today is May 9, 2013, and iMessage does not appear to be working...

    I've barely had my phone a month, and iMessage has worked great until today. It is cloudy and expected to rain, but I was assured that iMessage would work even when SMS messaging would not. What's the deal? And how do I fix this? Was just told that m

  • Multiple flash files change when a button click using javascript function

    hi.. am new in flsh... i want to multiple flash files change when a button click using a javascript

  • License requires 24 characters, mine is much longer

    I downloaded "SAP NetWeaver 7.0 SR2 TestDrive - VMware Edition" and ran it. It gives me the SUSE Linux Enterprise Server running Java. Everything goes very smooth until I have to enter my license key. I tried to import the file that was emailed to me

  • Best way for exporting a final cut file

    Hi, I'm exporting a final cut project so i can use it in dvd studio pro 4. But it's over two hours. does anybody know the best way to compress it?