Audit in Oracle 10g

Hello,
Just a quick question,
I setup the audit for one oracle user on Oracle 10G :
AUDIT ALL BY myuser BY ACCESS;
AUDIT SELECT TABLE, UPDATE TABLE, INSERT TABLE, DELETE TABLE BY myuser BY ACCESS;
AUDIT EXECUTE PROCEDURE BY myuser BY ACCESS;
now, Where can I found the information about the audit? in which views?
Thanks all,;

SQL> show parameter audit
NAME                                 TYPE        VALUE
audit_file_dest                      string      /u01/app/oracle/admin/TEST/adump
audit_syslog_level                   string     
audit_sys_operations                 boolean     FALSE
audit_trail                          string      NONE
SQL>

Similar Messages

  • Disable audit in oracle 10g R2

    can any one help me out how to disable audit in oracle 10g R2 ...
    I've executed following commands
    SQL> noaudit session by DEBIT;
    Noaudit succeeded.
    SQL> noaudit session by DEBIT;
    Noaudit succeeded.
    but audit is still running

    What does this have to do with Audit Vault?
    Where are you looking and what are you seeing that makes you believe auditing was not stopped?
    We can not see you monitor.

  • Regarding Auditing in Oracle 10g

    Hi all,
    i want to enable auditing for particular tables in oracle 10g(linux)..To enable auditing i have put
    audit_trail=db
    in init.ora files found in "/proc/4310/cwd" and "/proc/self/cwd/app/oracle/product/10.2.0/server/config/scripts"...
    but im not getting any values in sys.aud$ table...
    please tell me the way to get rid of this problem...
    Thanx
    in advance..

    For Oracle 9 and later:
    alter system set audit_trail = DB;
    If you want to audit a specific user run the following:
    audit alter table, select table, insert table, update table, delete table, grant table, grant
    procedure by USERNAME;
    To stop audit for that user run:
    noaudit alter table, select table, insert table, update table, delete table, grant table,
    grant procedure by USERNAME;
    To enable auditing for a specific object do:
    AUDIT SELECT, INSERT, UPDATE, DELETE ON SCHEMA.TABLE;
    To stop auditing:
    NOAUDIT SELECT, INSERT, UPDATE, DELETE ON SCHEMA.TABLE;
    To see the results:
    SQL> select * from dba_audit_trail;

  • Auditing in oracle 10g database and oracle 10g application server

    Dear friends,
    We have oracle 10g application server and oracle 10g database server in place.My criteria is to audit users connected using oracle application user credentials to the database.
    Can you please tell me how can i do it.
    Thanks & regards,

    Its the database connection you want to track. The session audit will show where it came from.
    Auditing is turned using this command:
    alter system set audit_trail = DB scope=spfile;
    Note: The use of spfile will require a DB bounce before audit starts
    To audit Sessions:
    audit create session;
    Query by Audit Type:
    SELECT A.USERNAME,
    OS_USERNAME,
    A.TIMESTAMP,
    A.RETURNCODE,
    TERMINAL,
    USERHOST
    FROM DBA_AUDIT_SESSION A
    WHERE USERHOST = <replace with iAS servername> ;
    By User
    SELECT USERNAME,OBJ_NAME,ACTION_NAME , TIMESTAMP
    FROM DBA_AUDIT_TRAIL WHERE USERNAME = 'SCOTT';
    Check for users sharing database accounts
    select count(distinct(terminal)),username
    from dba_audit_session
    having count(distinct(terminal))>1
    group by username;
    Attempts to access the database at unusual hours
    SELECT username, terminal, action_name, returncode,
    TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS'),
    TO_CHAR (logoff_time, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') <
    TO_DATE ('08:00:00', 'HH24:MI:SS')
    OR TO_DATE (TO_CHAR (TIMESTAMP, 'HH24:MI:SS'), 'HH24:MI:SS') >
    TO_DATE ('19:30:00', 'HH24:MI:SS');
    Attempts to access the database with non-existent users
    SELECT username, terminal, TO_CHAR (TIMESTAMP, 'DD-MON-YYYY HH24:MI:SS')
    FROM dba_audit_session
    WHERE returncode <> 0
    AND NOT EXISTS (SELECT 'x'
    FROM dba_users
    WHERE dba_users.username = dba_audit_session.username);
    Other audits you might consider:
    audit grant any object privilege;
    audit alter user;
    audit create user;
    audit drop user;
    audit drop tablespace;
    audit grant any role;
    audit grant any privilege;
    audit alter system;
    audit alter session;
    audit delete on AUD$ by access;
    audit insert on AUD$ by access;
    audit update on AUD$ by access;
    audit delete table;
    audit create tablespace;
    audit alter database;
    audit create role;
    audit create table;
    audit alter any procedure;
    audit create view;
    audit drop any procedure;
    audit drop profile;
    audit alter profile;
    audit alter any table;
    audit create public database link;
    Best Regards
    mseberg

  • Auditing in Oracle 10g

    Hi,
    OS = HP Unix
    Datbase = 10.2.0.1
    My management want me to enable auditing at database level.....It means, once i enabled the auditing at db level...it captures all the uses login,logout, what they are doing at database..everything in sys.aud$ table, dba_audit_trail tables...right...
    If i enable it, i heard that there is performance problem...
    Friends please share your experience....how are you maintaining auditing at your companies...
    Please share your experience

    There are so many levels of enabling auditing.
    The "audit session" will be hardly noticed and will audit connections but as for auditing as you say "what they are doing" "everything" then you will consume large amounts of space and system resource and may need to move the AUD$ table from the SYSTEM tablespace into an AUDIT tablespace. How long will this audit data be kept; a purge job will be needed.? How much spare CPU capacity do you have. You will need to clear up the specific requirements from your management otherwise you will end up with GIG's of audit data very quickly. You may even want to think of placing it on own separate fast storage.
    http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10759/statements_4007.htm
    Review the examples in the manual.
    N.B. Oracle do support moving AUD$ but refer to metalink for details they have docs showing how to......
    Message was edited by:
    triggb

  • How to implement C2 Audit in Oracle 10g Express Edition?

    Hi,
    I am developing a database using 10g Express Edition in which I need to implement c2 audit. I am planning to use triggers for this. Does anyone have a better method to implement audit in Express Edition?
    Thanks.

    I don't know what C2 audit exactly is, but before programming anything read this Security Guide chapters on Database Auditing http://download.oracle.com/docs/cd/B19306_01/network.102/b14266/auditing.htm#i1011984 and http://download.oracle.com/docs/cd/B19306_01/network.102/b14266/cfgaudit.htm#i1014788.
    All this should be available in XE also, except for Fine Grained Auditing, which is in Enterprise Edition only.
    If you are only interested in knowing when, who, did what command, including failed attempts than you don't have to program anything - you just define what activities you want to audit and set AUDIT_TRAIL initialization parameter to start auditing.
    You only need to write triggers if you need to catch column values before/after the change.

  • Enabling Audit Trail (Oracle 10g Solaris 9)

    Hi Guys,
    How can I enable the above, not familiar with 10g.
    Thank you.

    Not familiar with Oracle doc ?
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_4007.htm#SQLRF01107
    Nicolas.

  • WLS 8.1 - Entity Beans CMP - Oracle 10g Audit Tool

    Hi,
    We are defining the architecture of a new application on WebLogic Server 8.1 and Oracle 10g.
    We are thinking in using CMP Entity Beans and we need to integrate our system with Oracle Audit Tool.
    Can anybody give us some information about this issue ?
    Thanks,
    Javier Cano

    I really don't see the point of using CMP with an expensive, fully featured database like Oracle. MySQL or a flat file maybe. Otherwise it is just a waste of purchased resources.

  • ORACLE 10g generate reports for audit trail

    HELP ORACLE 10 g
    I am a beginner about the oracle 10g
    anybody can guide me how to start with
    generate reports for audit trail , top ten url
    , no of hits in the portlets ......
    =(
    thank you ....

    In a nutshell:
    1 - You will have to have the portal database schema as your data source.
    2 - You will have to design a target database schema with the target data bjects (tables, dimensions and fact tables - cubes) where the data will be loaded for reporting purposes.
    3 - Then you will have to model the loading process by defining mappings (mappings will translate into generated code for the load process) and process flows to run the mappings in the right order etc.
    4 - You will deploy the sources, targets and processing entities to the target schema.
    5 - You will run the deployed code periodically as needed and maintain the source, target and loading entities which might change with time.
    One observetion - OWB does not produce reports. It creates and maintains the data infrastructure for a reporting/analysis system (a data warehouse, data mart or an operational data store). To produce reports (for example, the top-10 report mentioned by you), you will have to run a reporting tool on top of the data structures created and maintained by OWB.
    Regards:
    Igor

  • Installing Apex 3.0 on Oracle 10g (10.2.0) Database

    Hi All,
    I have installed Oracle 10g(version 10.2.0) Database. Now I am trying to configure Application Express Apex 3.0 to it. I and following the Installation Guide provided to install Apex 3.0 on Oracle 10g. But i am facing the following issues, i am pasting the complete issues which are encountered. Please go through it and help me in configuring Apex 3.0 on Oracle 10g Database.
    This is the command i gave to configure from SQL prompt:
    @D:\Apex3.0\apexins.sql <Newly Create User> <Newly Created Tablespace> <Newly Created Tablespace> TEMP /i/
    Issues Encountered:
    begin
    ERROR at line 1:
    ORA-01920: user name 'FLOWS_FILES' conflicts with another user or role name
    ORA-06512: at line 3
    FOO
    INSTALLED
    PL/SQL procedure successfully completed.
    I. O R A C L E S Y S I N S T A L L P R O C E S S
    ...create flows user
    create user FLOWS_030000 identified by "HPGMNGCMS"
    ERROR at line 1:
    ORA-01920: user name 'FLOWS_030000' conflicts with another user or role name
    User altered.
    User altered.
    Grant succeeded.
    ...create validate procedure in SYS schema and start registration
    Procedure created.
    No errors.
    PL/SQL procedure successfully completed.
    ...grant flows owner tab privs
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    ...grant privs to flows owner
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Session altered.
    SP2-0310: unable to open file "core/wwv_flow_val.plb"
    Installing flows_files objects 1
    Session altered.
    SP2-0310: unable to open file "core/flows_files_new.sql"
    grant all on wwv_flow_file_objects$ to FLOWS_030000 with grant option
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Session altered.
    SP2-0310: unable to open file "core/migrate_metadata.sql"
    SP2-0310: unable to open file "core/tab.sql"
    SP2-0310: unable to open file "core/table_ddl_changes.sql"
    Installing Application Migration Workshop objects
    SP2-0310: unable to open file "core/wwv_mig_create_ddl.sql"
    SP2-0310: unable to open file "core/wwv_mig_exporter_ins.sql"
    ...installing Application Migration Workshop package spec
    SP2-0310: unable to open file "core/wwv_mig_acc_load.sql"
    ...install Application Migration Workshop package body
    SP2-0310: unable to open file "core/wwv_mig_acc_load.plb"
    SP2-0310: unable to open file "core/column_exceptions.sql"
    SP2-0310: unable to open file "core/meta_cleanup.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_upgrade.sql"
    SP2-0310: unable to open file "core/wwv_flow_upgrade.sql"
    SP2-0310: unable to open file "core/wwv_flow_upgrade.plb"
    SP2-0310: unable to open file "core/plsqljob.sql"
    SP2-0310: unable to open file "core/v.sql"
    SP2-0310: unable to open file "core/audit.sql"
    SP2-0310: unable to open file "core/wwv_flow_user_api.sql"
    SP2-0310: unable to open file "core/trigger.sql"
    SP2-0310: unable to open file "core/apex_install_data.sql"
    SP2-0310: unable to open file "core/provisioning_tables.sql"
    SP2-0310: unable to open file "core/wwv_flow_csv_data.sql"
    wwv_flow_upgrade.FLOWS_FILES_OBJECTS_REMOVE('FLOWS_030000');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.FLOWS_FILES_OBJECTS_REMOVE' must be
    declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.FLOWS_FILES_OBJECTS_CREATE('FLOWS_030000');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.FLOWS_FILES_OBJECTS_CREATE' must be
    declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    wwv_flow_security.g_security_group_id := 10;
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    ORA-06550: line 4, column 21:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 4, column 9:
    PL/SQL: SQL Statement ignored
    Commit complete.
    III. I N S T A L L F L O W P A C K A G E S P E C S
    SP2-0310: unable to open file "core/http.sql"
    SP2-0310: unable to open file "core/dynsql.sql"
    SP2-0310: unable to open file "core/wwv_flow_dynsql_parse.sql"
    SP2-0310: unable to open file "core/wwv_flow_dynsql_util.sql"
    SP2-0310: unable to open file "core/flow_log.sql"
    SP2-0310: unable to open file "core/flow_dml.sql"
    SP2-0310: unable to open file "core/flowp.sql"
    SP2-0310: unable to open file "core/f.sql"
    SP2-0310: unable to open file "core/nv.sql"
    SP2-0310: unable to open file "core/vrn.sql"
    SP2-0310: unable to open file "core/flowc.sql"
    SP2-0310: unable to open file "core/gen_api_pkg.sql"
    SP2-0310: unable to open file "core/plug.sql"
    SP2-0310: unable to open file "core/customize.sql"
    SP2-0310: unable to open file "core/generic.sql"
    SP2-0310: unable to open file "core/form.sql"
    SP2-0310: unable to open file "core/wwv_flow_item_comps.sql"
    SP2-0310: unable to open file "core/copy.sql"
    SP2-0310: unable to open file "core/copy_lov.sql"
    SP2-0310: unable to open file "core/copy_item.sql"
    SP2-0310: unable to open file "core/copy_button.sql"
    SP2-0310: unable to open file "core/wwv_flow_translation_utilities.sql"
    SP2-0310: unable to open file "core/seed.sql"
    SP2-0310: unable to open file "core/sync.sql"
    SP2-0310: unable to open file "core/popup_filter.sql"
    SP2-0310: unable to open file "core/change_password.sql"
    SP2-0310: unable to open file "core/asfcookie.sql"
    SP2-0310: unable to open file "core/spell.sql"
    SP2-0310: unable to open file "core/wwv_calculator.sql"
    SP2-0310: unable to open file "core/layout.sql"
    SP2-0310: unable to open file "core/wwv_flow_builder.sql"
    SP2-0310: unable to open file "core/wwv_lov_used_on_pages.sql"
    SP2-0310: unable to open file "core/shortcut.sql"
    SP2-0310: unable to open file "core/wwv_flow_fnd_developer_api.sql"
    SP2-0310: unable to open file "core/popup.sql"
    SP2-0310: unable to open file "core/wwv_flow_calendar3.sql"
    SP2-0310: unable to open file "core/wwv_flow_query_builder.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_object_feed.sql"
    SP2-0310: unable to open file "core/query.sql"
    SP2-0310: unable to open file "core/temp_table_init.sql"
    SP2-0310: unable to open file "core/wwv_flow_mail.sql"
    SP2-0310: unable to open file "core/wwv_flow_gen_global_api.sql"
    SP2-0310: unable to open file "core/wizard.sql"
    SP2-0310: unable to open file "core/prov.sql"
    SP2-0310: unable to open file "core/provision.sql"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/flowjob.sql"
    SP2-0310: unable to open file "core/wwv_flow_item.sql"
    SP2-0310: unable to open file "core/platform.sql"
    SP2-0310: unable to open file "core/tree.sql"
    SP2-0310: unable to open file "core/tree3.sql"
    SP2-0310: unable to open file "core/wizapi.sql"
    SP2-0310: unable to open file "core/wwv_flow_load_data.sql"
    SP2-0310: unable to open file "core/flow_isc.sql"
    SP2-0310: unable to open file "core/home.sql"
    SP2-0310: unable to open file "core/imgapi.sql"
    SP2-0310: unable to open file "core/imgapi_public.sql"
    SP2-0310: unable to open file "core/cssapi.sql"
    SP2-0310: unable to open file "core/cssapi_public.sql"
    SP2-0310: unable to open file "core/htmlapi.sql"
    SP2-0310: unable to open file "core/htmlapi_public.sql"
    SP2-0310: unable to open file "core/wwv_flow_fnd_user_api.sql"
    SP2-0310: unable to open file "core/flows_version.sql"
    SP2-0310: unable to open file "core/flows_release.sql"
    SP2-0310: unable to open file "core/wwv_flow_upgrade_report.sql"
    SP2-0310: unable to open file "core/collection.sql"
    SP2-0310: unable to open file "core/wwv_flow_load_excel_data.sql"
    SP2-0310: unable to open file "core/z.sql"
    SP2-0310: unable to open file "core/custom_auth_api.sql"
    SP2-0310: unable to open file "core/custom_auth_std.sql"
    SP2-0310: unable to open file "core/sw_api.sql"
    SP2-0310: unable to open file "core/wwv_flow_script_export.sql"
    SP2-0310: unable to open file "core/app_auth.sql"
    SP2-0310: unable to open file "core/copy_metadata.sql"
    SP2-0310: unable to open file "core/create_flow_api.sql"
    SP2-0310: unable to open file "core/ihelp.sql"
    SP2-0310: unable to open file "core/copyu.sql"
    SP2-0310: unable to open file "core/wwv_flow_admin_api.sql"
    SP2-0310: unable to open file "core/flowcon.sql"
    SP2-0310: unable to open file "core/wwv_flow_tab_mgr.sql"
    SP2-0310: unable to open file "core/generate_ddl.sql"
    SP2-0310: unable to open file "core/table_drill.sql"
    SP2-0310: unable to open file "core/wwv_flow_svg.sql"
    SP2-0310: unable to open file "core/wwv_flow_download.sql"
    SP2-0310: unable to open file "core/wwv_flow_copy_page.sql"
    SP2-0310: unable to open file "core/sw_util.sql"
    SP2-0310: unable to open file "core/generate_table_api.sql"
    SP2-0310: unable to open file "core/wwv_flow_hint.sql"
    SP2-0310: unable to open file "core/wwv_flow_regexp.sql"
    SP2-0310: unable to open file "core/wwv_flow_gen_hint.sql"
    SP2-0310: unable to open file "core/wwv_flow_series_attr.sql"
    SP2-0310: unable to open file "core/wwv_flow_xliff.sql"
    SP2-0310: unable to open file "core/edit_report.sql"
    SP2-0310: unable to open file "core/query_api.sql"
    SP2-0310: unable to open file "core/imp_parser.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_parser.sql"
    SP2-0310: unable to open file "core/wwv_flow_create_model_app.sql"
    SP2-0310: unable to open file "core/wwv_flow_login.sql"
    SP2-0310: unable to open file "core/hint_seed.sql"
    SP2-0310: unable to open file "core/view.sql"
    SP2-0310: unable to open file "core/apex_admin.sql"
    SP2-0310: unable to open file "core/wwv_flow_developer_toolbar.sql"
    SP2-0310: unable to open file "core/wwv_flow_help.sql"
    SP2-0310: unable to open file "core/htmldb_util.sql"
    SP2-0310: unable to open file "core/htmldb_custom_auth.sql"
    SP2-0310: unable to open file "core/htmldb_lang.sql"
    SP2-0310: unable to open file "core/wwv_flow_form_control.sql"
    SP2-0310: unable to open file "core/wwv_flow_data_quick_flow.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_globals.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_1.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_2.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_3.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_4.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_5.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_6.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_7.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_8.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_9.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_10.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_11.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_12.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_13.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_14.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_15.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_16.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_17.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_18.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_manager.sql"
    SP2-0310: unable to open file "core/wwv_flow_theme_files.sql"
    SP2-0310: unable to open file "core/htmldb_site_admin_privs.sql"
    SP2-0310: unable to open file "core/wwv_flow_ppr_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_script.sql"
    SP2-0310: unable to open file "core/wwv_flow_list.sql"
    SP2-0310: unable to open file "core/wwv_flow_sc_transactions.sql"
    SP2-0310: unable to open file "core/wwv_flow_session_mon.sql"
    SP2-0310: unable to open file "core/wwv_flow_sw_page_calls.sql"
    SP2-0310: unable to open file "core/wwv_flow_install_wizard.sql"
    SP2-0310: unable to open file "core/wwv_flow_wiz_confirm.sql"
    SP2-0310: unable to open file "core/wwv_flow_page_map.sql"
    SP2-0310: unable to open file "core/wwv_flow_print_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart_util.sql"
    SP2-0310: unable to open file "core/wwv_flow_drag_layout.sql"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/ldap.sql"
    SP2-0310: unable to open file "core/custom_auth_ldap.sql"
    SP2-0310: unable to open file "core/null1.sql"
    ...installing files dependend upon 9iR2
    ...if errors are encountered, ignore if not 9iR2
    SP2-0310: unable to open file "core/wwv_flow_web_services.sql"
    ...installing files dependent on XML DB
    ......if errors are encountered, install XML DB and rerun these files
    SP2-0310: unable to open file "core/wwv_flow_dataload_xml.sql"
    ...end of XML XDB dependancies
    SP2-0310: unable to open file "core/processu.sql"
    timing for: Package Specs
    Elapsed: 00:00:00.65
    SP2-0310: unable to open file "core/meta_cleanup.plb"
    wwv_flow_upgrade.SWITCH_SCHEMAS('FLOWS_030000','FLOWS_030000');
    ERROR at line 3:
    ORA-06550: line 3, column 9:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.SWITCH_SCHEMAS' must be declared
    ORA-06550: line 3, column 9:
    PL/SQL: Statement ignored
    SP2-0310: unable to open file "core/meta_cleanup.plb"
    IV. I N S T A L L F L O W P A C K A G E B O D I E S
    SP2-0310: unable to open file "core/dynsql.plb"
    SP2-0310: unable to open file "core/wwv_flow_dynsql_parse.plb"
    SP2-0310: unable to open file "core/wwv_flow_dynsql_util.plb"
    SP2-0310: unable to open file "core/calendar.plb"
    SP2-0310: unable to open file "core/chart.plb"
    SP2-0310: unable to open file "core/reports3.plb"
    SP2-0310: unable to open file "core/wwv_flow_page_cache_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_render_query.plb"
    SP2-0310: unable to open file "core/wwv_flow_plsql_editor.plb"
    SP2-0310: unable to open file "core/wwv_flow_model_api.plb"
    SP2-0310: unable to open file "core/api.plb"
    SP2-0310: unable to open file "core/gen_api_pkg.plb"
    SP2-0310: unable to open file "core/wwv_htf.plb"
    SP2-0310: unable to open file "core/wwv_htp.plb"
    SP2-0310: unable to open file "core/flow_log.plb"
    SP2-0310: unable to open file "core/flow_dml.plb"
    SP2-0310: unable to open file "core/flowu.plb"
    if wwv_flow_utilities.db_version_is_at_least('10.2.0.3') or wwv_flow_utilities.db_edition_is_xe then
    ERROR at line 2:
    ORA-06550: line 2, column 8:
    PLS-00201: identifier 'WWV_FLOW_UTILITIES.DB_VERSION_IS_AT_LEAST' must be
    declared
    ORA-06550: line 2, column 5:
    PL/SQL: Statement ignored
    SP2-0310: unable to open file "core/coreins.sql"
    SP2-0310: unable to open file "core/audit.plb"
    SP2-0310: unable to open file "core/audit_trigger.sql"
    SP2-0310: unable to open file "core/flowc.plb"
    SP2-0310: unable to open file "core/flowp.plb"
    SP2-0310: unable to open file "core/meta.plb"
    SP2-0310: unable to open file "core/flow.plb"
    SP2-0310: unable to open file "core/flowl.plb"
    SP2-0310: unable to open file "core/template.plb"
    SP2-0310: unable to open file "core/plug.plb"
    SP2-0310: unable to open file "core/customize.plb"
    SP2-0310: unable to open file "core/sw_util.plb"
    SP2-0310: unable to open file "core/generic.plb"
    SP2-0310: unable to open file "core/auth.plb"
    SP2-0310: unable to open file "core/wwv_flow_element.plb"
    SP2-0310: unable to open file "core/form.plb"
    SP2-0310: unable to open file "core/check.plb"
    SP2-0310: unable to open file "core/spell.plb"
    SP2-0310: unable to open file "core/wwv_calculator.plb"
    SP2-0310: unable to open file "core/layout.plb"
    SP2-0310: unable to open file "core/wwv_flow_builder.plb"
    SP2-0310: unable to open file "core/shortcut.plb"
    SP2-0310: unable to open file "core/wwv_flow_fnd_developer_api.plb"
    ...install demonstration flow specs
    SP2-0310: unable to open file "core/collections_showcase.sql"
    SP2-0310: unable to open file "core/wwv_flow_sample_app.sql"
    SP2-0310: unable to open file "core/wwv_lov_used_on_pages.sql"
    SP2-0310: unable to open file "core/query.plb"
    SP2-0310: unable to open file "core/temp_table_init.plb"
    SP2-0310: unable to open file "core/wwv_flow_mail.plb"
    SP2-0310: unable to open file "core/file_mgr.plb"
    SP2-0310: unable to open file "core/wwv_flow_image_generator.plb"
    SP2-0310: unable to open file "core/wwv_flow_gen_global_api.plb"
    SP2-0310: unable to open file "core/wizard.plb"
    SP2-0310: unable to open file "core/prov.plb"
    SP2-0310: unable to open file "core/wwv_flow_f4000_util.plb"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/provision.plb"
    SP2-0310: unable to open file "core/flowjob.plb"
    SP2-0310: unable to open file "core/plsqljob.plb"
    SP2-0310: unable to open file "core/tree.plb"
    SP2-0310: unable to open file "core/tree3.plb"
    SP2-0310: unable to open file "core/wizapi.plb"
    SP2-0310: unable to open file "core/wwv_flow_load_data.plb"
    SP2-0310: unable to open file "core/fileapi.plb"
    SP2-0310: unable to open file "core/imgapi.plb"
    SP2-0310: unable to open file "core/imgapi_public.plb"
    SP2-0310: unable to open file "core/cssapi.plb"
    SP2-0310: unable to open file "core/cssapi_public.plb"
    SP2-0310: unable to open file "core/htmlapi.plb"
    SP2-0310: unable to open file "core/htmlapi_public.plb"
    SP2-0310: unable to open file "core/wwv_flow_fnd_user_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_user_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_template_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_upgrade_report.plb"
    SP2-0310: unable to open file "core/collection.plb"
    SP2-0310: unable to open file "core/wwv_flow_item.plb"
    SP2-0310: unable to open file "core/wwv_flow_load_excel_data.plb"
    SP2-0310: unable to open file "core/custom_auth_api.plb"
    SP2-0310: unable to open file "core/custom_auth_std.plb"
    SP2-0310: unable to open file "core/sw_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_script_export.plb"
    SP2-0310: unable to open file "core/app_auth.plb"
    SP2-0310: unable to open file "core/copy_metadata.plb"
    SP2-0310: unable to open file "core/create_flow_api.plb"
    SP2-0310: unable to open file "core/ihelp.plb"
    SP2-0310: unable to open file "core/copyu.plb"
    SP2-0310: unable to open file "core/wwv_flow_admin_api.plb"
    SP2-0310: unable to open file "core/flowcon.plb"
    SP2-0310: unable to open file "core/wwv_flow_tab_mgr.plb"
    SP2-0310: unable to open file "core/forum_demo.sql"
    SP2-0310: unable to open file "core/wwv_flow_lookup_tables.sql"
    SP2-0310: unable to open file "core/table_drill.plb"
    SP2-0310: unable to open file "core/wwv_flow_svg.plb"
    SP2-0310: unable to open file "core/wwv_flow_download.plb"
    SP2-0310: unable to open file "core/wwv_flow_copy_page.plb"
    SP2-0310: unable to open file "core/popup.plb"
    SP2-0310: unable to open file "core/wwv_flow_calendar3.plb"
    SP2-0310: unable to open file "core/generate_table_api.plb"
    SP2-0310: unable to open file "core/wwv_flow_hint.plb"
    SP2-0310: unable to open file "core/wwv_flow_gen_hint.plb"
    SP2-0310: unable to open file "core/wwv_flow_series_attr.plb"
    SP2-0310: unable to open file "core/wwv_flow_xliff.plb"
    SP2-0310: unable to open file "core/edit_report.plb"
    SP2-0310: unable to open file "core/query_api.plb"
    SP2-0310: unable to open file "core/imp_parser.plb"
    SP2-0310: unable to open file "core/wwv_flow_developer_toolbar.plb"
    SP2-0310: unable to open file "core/flow_isc.plb"
    SP2-0310: unable to open file "core/wwv_flow_web_services.plb"
    SP2-0310: unable to open file "core/htmldb_util.plb"
    SP2-0310: unable to open file "core/htmldb_item.plb"
    SP2-0310: unable to open file "core/htmldb_custom_auth.plb"
    SP2-0310: unable to open file "core/htmldb_lang.plb"
    SP2-0310: unable to open file "core/wwv_flow_form_control.plb"
    SP2-0310: unable to open file "core/wwv_flow_data_quick_flow.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_1.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_2.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_3.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_4.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_5.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_6.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_7.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_8.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_9.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_10.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_11.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_12.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_13.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_14.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_15.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_16.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_17.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_18.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_manager.plb"
    SP2-0310: unable to open file "core/wwv_flow_theme_files.plb"
    SP2-0310: unable to open file "core/wwv_flow_help.plb"
    SP2-0310: unable to open file "core/htmldb_site_admin_privs.plb"
    SP2-0310: unable to open file "core/wwv_flow_login.plb"
    SP2-0310: unable to open file "core/wwv_flow_ppr_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_query_builder.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_script.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_object_feed.plb"
    SP2-0310: unable to open file "core/wwv_flow_list.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_parser.plb"
    SP2-0310: unable to open file "core/wwv_flow_create_model_app.plb"
    SP2-0310: unable to open file "core/wwv_flow_sc_transactions.plb"
    SP2-0310: unable to open file "core/wwv_flow_session_mon.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_page_calls.plb"
    SP2-0310: unable to open file "core/wwv_flow_sw_upgrade.plb"
    SP2-0310: unable to open file "core/wwv_flow_install_wizard.plb"
    SP2-0310: unable to open file "core/wwv_flow_wiz_confirm.plb"
    SP2-0310: unable to open file "core/wwv_flow_page_map.plb"
    SP2-0310: unable to open file "core/wwv_flow_print_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart.plb"
    SP2-0310: unable to open file "core/wwv_flow_flash_chart_util.plb"
    SP2-0310: unable to open file "core/wwv_flow_drag_layout.plb"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/wwv_flow_epg_include.plb"
    SP2-0310: unable to open file "core/ldap.plb"
    SP2-0310: unable to open file "core/custom_auth_ldap.plb"
    SP2-0310: unable to open file "core/null1.sql"
    SP2-0310: unable to open file "core/generate_ddl.plb"
    ...installing files dependant on an XML XDB
    ......if errors are encountered, install XML XDB and rerun these files
    SP2-0310: unable to open file "core/wwv_flow_dataload_xml.plb"
    ...end of XML XDB dependancies
    SP2-0310: unable to open file "core/processu.plb"
    SP2-0310: unable to open file "core/migrate_metadata.plb"
    ...query rewrite
    SP2-0310: unable to open file "core/wwv_flow_rewrite_query.sql"
    ...page Builder
    SP2-0310: unable to open file "core/p.sql"
    ...install demonstration flow bodies
    SP2-0310: unable to open file "core/collections_showcase.plb"
    SP2-0310: unable to open file "core/wwv_flow_sample_app.plb"
    SP2-0310: unable to open file "core/template_gallery.sql"
    SP2-0310: unable to open file "core/wwv_flow_regexp.plb"
    SP2-0310: unable to open file "core/apex_views.sql"
    timing for: Package Bodies
    Elapsed: 00:00:00.49
    V. P E R F O R M F L O W G R A N T S
    grant execute on wwv_flow to public
    ERROR at line 1:
    ORA-04042: procedure, function, package, or package body does not exist
    grant execute on wwv_flow_utilities to public
    ERROR at line 1:
    ORA-04042: procedure, function, package, or package body does not exist
    grant select on WWV_FLOW_LOV_TEMP to PUBLIC
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ...Perform Application Migration Workshop Grants
    grant execute on wwv_mig_acc_load to public
    ERROR at line 1:
    ORA-04042: procedure, function, package, or package body does not exist
    Installing flows_files objects 2
    Session altered.
    SP2-0310: unable to open file "core/flows_files_new2.sql"
    Session altered.
    timing for: Grants
    Elapsed: 00:00:00.08
    VI. I N S T A L L F L O W S
    define "^" (hex 5e)
    ...design time flows
    SP2-0310: unable to open file "builder/f4411.sql"
    SP2-0310: unable to open file "builder/f4000.sql"
    SP2-0310: unable to open file "builder/f4350.sql"
    SP2-0310: unable to open file "builder/f4050.sql"
    SP2-0310: unable to open file "builder/f4550.sql"
    SP2-0310: unable to open file "builder/f4700.sql"
    SP2-0310: unable to open file "builder/f4155.sql"
    SP2-0310: unable to open file "builder/f4500.sql"
    SP2-0310: unable to open file "builder/f4300.sql"
    SP2-0310: unable to open file "builder/f4400.sql"
    wwv_flow_security.g_security_group_id := 10;
    ERROR at line 2:
    ORA-06550: line 2, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 2, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 4, column 23:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 3, column 15:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 8, column 32:
    PLS-00364: loop index variable 'C1' use is invalid
    ORA-06550: line 7, column 9:
    PL/SQL: Statement ignored
    ...Initialize SMTP server settings
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ...Initialize preference settings
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    insert into wwv_flow_platform_prefs (name, value, pref_desc, security_group_id)
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Commit complete.
    ...Initialize the table of Oracle default schema names
    insert into wwv_flow_restricted_schemas(id,schema) values( 1,'SYS');
    ERROR at line 9:
    ORA-06550: line 9, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 9, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 10, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 10, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 11, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 11, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 12, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 12, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 13, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 13, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 14, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 14, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 15, column 13:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 15, column 1:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 16, column 13:
    PL/SQL: ORA-00942: ta
    ...Adjust flow owner to install owner
    update wwv_flows set owner = 'FLOWS_030000' where id between 4000 and 4999
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Commit complete.
    ...Adjust flow version
    Enter value for version: 3
    update wwv_flows set flow_version = '&PRODUCT_NAME. ' || '3' where id between 4000 and 4999 and id <> 4550
    ERROR at line 1:
    ORA-00942: table or view does not exist
    update wwv_flows set flow_version = '&PRODUCT_NAME. ' where id = 4550
    ERROR at line 1:
    ORA-00942: table or view does not exist
    Commit complete.
    timing for: Install Internal Flows
    Elapsed: 00:00:09.86
    SP2-0310: unable to open file "core/verification_images_load.sql"
    timing for: Verification Images Load
    Elapsed: 00:00:00.01
    VII. L O A D E N G L I S H D I C T I O N A R Y
    alter trigger bi_wwv_dictionary$_fer disable
    ERROR at line 1:
    ORA-04080: trigger 'BI_WWV_DICTIONARY$_FER' does not exist
    SP2-0310: unable to open file "core/dictionary_load.sql"
    alter trigger bi_wwv_dictionary$_fer enable
    ERROR at line 1:
    ORA-04080: trigger 'BI_WWV_DICTIONARY$_FER' does not exist
    timing for: English Dictionary
    Elapsed: 00:00:00.05
    Commit complete.
    User altered.
    User altered.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Thank you for installing Oracle Application Express.
    Oracle Application Express is installed in the FLOWS_030000 schema.
    The structure of the link to the Application Express administration services is as follows:
    http://host:port/pls/apex/apex_admin
    The structure of the link to the Application Express development interface is as follows:
    http://host:port/pls/apex
    wwv_flow_upgrade.template_name_cleanup('FLOWS_010500');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.TEMPLATE_NAME_CLEANUP' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 5, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 5, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.copy_flow_meta_data('FLOWS_010500','FLOWS_030000');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.COPY_FLOW_META_DATA' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.switch_schemas('FLOWS_010500','FLOWS_030000');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.SWITCH_SCHEMAS' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.sw_cleanup('FLOWS_010500','FLOWS_030000');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.SW_CLEANUP' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.upgrade_to_030000(p_owner => 'FLOWS_030000', p_from => 'FLOWS_010500');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.UPGRADE_TO_030000' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    wwv_flow_upgrade.copy_prefs('FLOWS_010500','FLOWS_030000');
    ERROR at line 4:
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_UPGRADE.COPY_PREFS' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    update wwv_flow_fnd_user set account_expiry = trunc(sysdate) where account_expiry is null;
    ERROR at line 3:
    ORA-06550: line 3, column 10:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 3, column 3:
    PL/SQL: SQL Statement ignored
    for c1 in (select count(1) counter from WWV_FLOW_UPGRADE_PROGRESS where upgrade_error is not null) loop
    ERROR at line 3:
    ORA-06550: line 3, column 44:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 3, column 15:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 4, column 9:
    PLS-00364: loop index variable 'C1' use is invalid
    ORA-06550: line 4, column 6:
    PL/SQL: Statement ignored
    timing for: Upgrade
    Elapsed: 00:00:00.19
    JOB_QUEUE_PROCESSES: 10
    Performing Application Express component validation - please wait...
    Enter value for version: 3
    Enter value for version: 10
    Enter value for version: 3
    Completing registration process.
    Validating installation.
    FAILED EXISTENCE CHECK FOR WWV_FLOW_COLLECTIONS$
    timing for: Validate Installation
    Elapsed: 00:00:15.88
    timing for: Complete Installation
    Elapsed: 00:00:34.14
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options

    To add to Patrick's suggestion....
    What I am suggesting is not the cause of the FLOWS_030000 user existing error, but could be another issue which caused your installation to fail.
    In your post, you said...
    This is the command i gave to configure from SQL prompt:
    @D:\Apex3.0\apexins.sql <Newly Create User> <Newly Created Tablespace> <Newly Created Tablespace> TEMP /i/
    You have specified an absolute path when running the apexins.sql script. In order for the installation to succeed, you must first change your working directory to the directory where you unzipped the apex_3.0.zip file and then run the script. This is because the apexins.sql script subsequently references other sql scripts, using relative paths.
    You have also not included a password in your command, was this just for purposes of the posting, or could this also be an issue, as in:
    @apexins password tablespace_apex tablespace_files tablespace_temp images
    Hope this helps,
    Anthony
    http://anthonyrayner.blogspot.com

  • Ora-00604 while installing Oracle 10g on Windows XP SP2

    I was installing Oracle 10g on Windows XP but the dbca was failling. So I tried to create a database manually.
    But every time I launch this:
    "SQL> startup nomount pfile="C:\oracle\product\10.2.0\admin\XP10G\scripts\initXP10G.ora";"
    I always had:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02248: invalid option for ALTER SESSION
    I tried to change some memory value in the init*.ora without more success.
    So if anyone has been had such issue; he would be an help for me.
    Thansks
    MUGANGA

    initXP10G.ora is a 3 Kbytes file created by OEM and updated by Dos edit program. Here bellow is the contain:
    # Copyright (c) 1991, 2001, 2002 by Oracle Corporation
    # Cache and I/O
    db_block_size=8192
    db_cache_size=25165824
    db_file_multiblock_read_count=16
    # File Configuration
    control_files=("C:\oracle\product\10.2.0\oradata\XP10G\control01.ctl", "C:\oracle\product\10.2.0\oradata\XP10G\control02.ctl", "C:\oracle\product\10.2.0\oradata\XP10G\control03.ctl")
    db_recovery_file_dest=C:\oracle\product\10.2.0\flash_recovery_area
    db_recovery_file_dest_size=2147483648
    # Cursors and Library Cache
    open_cursors=150
    processes=100
    # Diagnostics and Statistics
    background_dump_dest=C:\oracle\product\10.2.0\admin\XP10G\bdump
    core_dump_dest=C:\oracle\product\10.2.0\admin\XP10G\cdump
    user_dump_dest=C:\oracle\product\10.2.0\admin\XP10G\udump
    # Miscellaneous
    compatible=10.2.0.1.0
    # Job Queues
    job_queue_processes=10
    # Database Identification
    db_domain=""
    db_name=XP10G
    # SGA Memory
    sga_target=177209344
    # Processes and Sessions
    processes=150
    # System Managed Undo and Rollback Segments
    undo_management=AUTO
    undo_tablespace=UNDOTBS1
    # Shared Server
    dispatchers="(PROTOCOL=TCP) (SERVICE=XP10GXDB)"
    # Security and Auditing
    audit_file_dest=C:\oracle\product\10.2.0\admin\XP10G\adump
    remote_login_passwordfile=EXCLUSIVE
    # Sort, Hash Joins, Bitmap Indexes
    pga_aggregate_target=58720256
    shared_pool_size=83886080
    nls_territory='SWITZERLAND'
    nls_language='FRENCH'

  • Error while trying to start Audit Collector on the Audit Vault Server 10g

    Hi,
    We are trying to build a demo environment for testing Oracle Audit Vault 10g but we are having some trouble.
    Our environment is like this: Oracle Audit Vault Server is installed on Windows Server 2003 SP2, while the Audit Vault Agent is installed on an Oracle 10g Release 2 database which resided on Windows server 2003 SP1. This two Windows Server machines are both installed as virtual machines.
    We have successfully created the Agent and the Collector on Audit Vault Server and the Agent starts successfully while when we try to start the collector we get an error which says " Http Communication error: Http Communication error: 500" and the collector does not start.
    We are new to the Audit Vault Software so we would really appreciate some help on how to resolve this issue because we have got stuck here and can not go on with our work.
    Thanks in advance for your time
    Best regards
    Engrid

    Hi,
    Thanks again for all of your replies but now we are getting another error with the OSAUD collector. We are able to add the collector successfully by using the avorcldb all_collector command.
    Source database is 10g R2 (10.2.1) and we configured it for collecting the audit records in the OS audit trail by using the following statement: ALTER SYSTEM SET AUDIT_TRAIL=OS SCOPE=SPFILE;, and the SHOW PARAMETER AUDIT command returns the following values :
    NAME TYPE VALUE
    audit_file_dest string C:\ORACLE\PRODUCT\10.2.0\ADMIN
    \<db_name>\ADUMP
    audit_sys_operations boolean TRUE
    audit_trail string OS
    We don't know if the values set for the audit_file_dest is correct but after we start working on the database and execute some statements Oracle is not creating any files on this destinations while for the same statements when the Audit_trail=DB, EXTENDED the audit values for these statements are written in the appropriate table.
    So we do not know if this is the cause but when we try to start the OSAUD collector defined on the Audit Vault Server it can not start and gives us the follwing error: "could not start collector OSAUD_Collector for source <source name>, directory access error for C:\ORACLE\PRODUCT\10.2.0\ADMIN\<db_name>\ADUMP".
    Sorry for the message being so long but we really need some help with this issue.
    thanks in advance.
    Engrid

  • Oracle 10g :: APEX not running

    Hi,
    I have installed Oracle 10g in my pc with the default configuration.
    First day of installation APEX client was running but now its not running.
    Server is running correctly as I saw server processes in the Process Manager (Task Manager).
    I am using a debian flavor of Linux.
    Can anyone help me, How to find out why it's not running?
    Thanks

    Hi,
    I tried to run those commands but none of them is working here. I am providing all the logs which generated while starting the Server.
    Thanks
    LOGS:
    Mon Jun 4 19:52:28 2007
    Starting ORACLE instance (normal)
    Cannot determine all dependent dynamic libraries for /proc/self/exe
    The open() system call failed for the file /proc/self/exe
    Linux Error: 13: Permission denied
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    __shared_pool_size = 83886080
    __large_pool_size = 4194304
    __java_pool_size = 4194304
    __streams_pool_size = 0
    sga_target = 285212672
    control_files = /usr/lib/oracle/xe/oradata/XE/control.dbf
    __db_cache_size = 188743680
    compatible = 10.2.0.1.0
    db_recovery_file_dest = /usr/lib/oracle/xe/app/oracle/flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 4
    job_queue_processes = 4
    background_dump_dest = /usr/lib/oracle/xe/app/oracle/admin/XE/bdump
    user_dump_dest = /usr/lib/oracle/xe/app/oracle/admin/XE/udump
    core_dump_dest = /usr/lib/oracle/xe/app/oracle/admin/XE/cdump
    audit_file_dest = /usr/lib/oracle/xe/app/oracle/admin/XE/adump
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 94371840
    PMON started with pid=2, OS id=9688
    PSP0 started with pid=3, OS id=9690
    MMAN started with pid=4, OS id=9692
    DBW0 started with pid=5, OS id=9694
    LGWR started with pid=6, OS id=9696
    CKPT started with pid=7, OS id=9698
    SMON started with pid=8, OS id=9700
    RECO started with pid=9, OS id=9702
    CJQ0 started with pid=10, OS id=9704
    MMON started with pid=11, OS id=9706
    MMNL started with pid=12, OS id=9708
    Mon Jun 4 19:52:29 2007
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Mon Jun 4 19:52:29 2007
    ALTER DATABASE MOUNT
    Mon Jun 4 19:52:33 2007
    Setting recovery target incarnation to 2
    Mon Jun 4 19:52:33 2007
    Successful mount of redo thread 1, with mount id 2505516605
    Mon Jun 4 19:52:33 2007
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Mon Jun 4 19:52:33 2007
    ALTER DATABASE OPEN
    Mon Jun 4 19:52:33 2007
    Thread 1 opened at log sequence 5
    Current log# 2 seq# 5 mem# 0: /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/onlinelog/o1_mf_2_35gv5kcp_.log
    Successful open of redo thread 1
    Mon Jun 4 19:52:33 2007
    SMON: enabling cache recovery
    Mon Jun 4 19:52:34 2007
    Successfully onlined Undo Tablespace 1.
    Mon Jun 4 19:52:34 2007
    SMON: enabling tx recovery
    Mon Jun 4 19:52:34 2007
    Database Characterset is WE8MSWIN1252
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=19, OS id=9724
    Mon Jun 4 19:52:35 2007
    db_recovery_file_dest_size of 10240 MB is 0.98% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Mon Jun 4 19:52:36 2007
    Completed: ALTER DATABASE OPEN

  • Hardening Linux for Oracle 10g

    I have been working on creating a bare-bones RHEL 5 installation which will act as an Oracle 10g database server. For hardening Linux, I have restricted to a bare minimum of packages to make it more secure. This installation did not have X-Windows, Gnome/KDE and a host of other services that will not be required on Production servers. I selected only the BASE installation which was further customized to include just the following (there is scope to trim this further, so feedback is welcome):
    NetworkManager
    readahead
    smartmontools
    yum-updatesd
    irqbalance
    acpid
    crash
    cryptsetup-luks
    dos2unix
    dump
    finger
    gnugpg
    ksh
    libaio
    logwatch
    m2crypto
    man-pages
    mdadm
    nano
    numactl
    openssh-clients
    openssh-servers
    pam_ccreds
    pam_krb5
    pam_passwdqc
    sendmail
    setuptools
    stunnel
    sudo
    symlinks
    system-config-network
    tree
    unix2dos
    unzip
    vconfig
    wget
    which
    yum
    yum-rhn-plugin
    yum-security
    zip
    Since I do not intend to use nfs, nis, samba – associated packages were not included. Further hardening was achieved by deleting non-required services (kudzu, avahi, gpm, atd, netfs, ip6tables).
    The challenge comes when I begin setting up Oracle 10g using the oracle validated rpm method. In an attempt to resolve dependencies, YUM ends up installing 70 packages that do not apparently seem to have anything to do with an RDBMS (sound libraries, Gnome, X libraries and tools etc.). For me the libraries/binaries required for linking appear to be justified but the rest appear to be installed only for the Installer.
    This package addition also ends up installing gamin which provides the gam_server which has bugs in it that lead to > 90% CPU consumption.
    I further tried erasing some of the packages to see if anything broke. Till now nothing is broken and the database is running fine. Till now I have removed:
    gamin
    gamin-python
    gnome-mount
    gnome-vfs2
    libbonoboui
    libgnome
    libgnomeui
    oracle-validated
    yum-updatesd
    esound
    hicolor-icon-theme
    GConf2
    gnome-keyring
    gtk2
    libglade2
    libgnomecanvas
    libnotify
    libwnck
    notification-daemon
    audiofile
    cups-libs
    gnome-mime-data
    cairo
    pango
    My questions:
    • How have you created a production/hardened Linux based Oracle installation?
    • Can you share your experiences in hardening Linux for Oracle and deploying the Oracle 10g RDBMS without installing the scores of packages which themselves might compromise the server?
    • What exactly is the dependency for the Oracle 10g RDBMS on X11, Gnome, Gamin and graphic libraries such as Cairo and Pango (to name a few)?
    • Which Linux system services are really mandatory for Oracle?
    • Does a non-default secure installation compromise Oracle support?
    The current memory footprint for this setup (without any workload) is (figures in MB):
    total used free shared buffers cached
    Mem: 1010 458 552 0 19 377
    -/+ buffers/cache: 61 949
    Swap: 2047 0 2047
    …of this 290 MB belongs to Oracle ☺
    I will be working with the other route – without using the oracle-validated rpm.
    Please let me have your feedback.
    BR
    Aniruddha

    Hi,
    I'll paste the rpm -qa of a RHEL5 server I have installed through rpm -ivh (not yum at all)
    aspell-0.60.3-7.1
    aspell-en-6.0-2.1
    aspell-es-0.50-13.2.2
    at-3.1.8-82.fc6
    atk-1.12.2-1.fc6
    audit-libs-1.7.13-2.el5
    audit-libs-1.7.13-2.el5
    audit-libs-python-1.7.13-2.el5
    authconfig-5.3.21-6.el5
    avahi-0.6.16-6.el5
    avahi-compat-libdns_sd-0.6.16-6.el5
    basesystem-8.0-5.1.1
    bash-3.2-24.el5
    bc-1.06-21
    binutils-2.17.50.0.6-12.el5
    bitmap-fonts-0.3-5.1.1
    bitstream-vera-fonts-1.10-7
    bzip2-1.0.3-4.el5_2
    bzip2-libs-1.0.3-4.el5_2
    cairo-1.2.4-5.el5
    checkpolicy-1.33.1-4.el5
    chkconfig-1.3.30.1-2
    compat-libstdc++-33-3.2.3-61
    compat-libstdc++-33-3.2.3-61
    coreutils-5.97-23.el5
    cpio-2.6-23.el5
    cpp-4.1.2-46.el5
    cracklib-2.8.9-3.3
    cracklib-dicts-2.8.9-3.3
    crontabs-1.10-8
    cryptsetup-luks-1.0.3-5.el5
    cups-1.3.7-11.el5
    cups-libs-1.3.7-11.el5
    cyrus-sasl-2.1.22-5.el5
    cyrus-sasl-lib-2.1.22-5.el5
    db4-4.3.29-10.el5
    db4-4.3.29-10.el5
    dbus-1.1.2-12.el5
    dbus-glib-0.73-8.el5
    dbus-libs-1.1.2-12.el5
    dbus-python-0.70-7.el5
    Deployment_Guide-en-US-5.2-11
    Deployment_Guide-es-ES-5.2-11
    desktop-file-utils-0.10-7
    device-mapper-1.02.32-1.el5
    device-mapper-1.02.32-1.el5
    device-mapper-event-1.02.32-1.el5
    device-mapper-multipath-0.4.7-30.el5
    diffutils-2.8.1-15.2.3.el5
    dmidecode-2.9-1.el5
    dmraid-1.0.0.rc13-53.el5
    dmraid-events-1.0.0.rc13-53.el5
    e2fsprogs-1.39-23.el5
    e2fsprogs-devel-1.39-23.el5
    e2fsprogs-devel-1.39-23.el5
    e2fsprogs-libs-1.39-23.el5
    e2fsprogs-libs-1.39-23.el5
    ed-0.2-39.el5_2
    eject-2.1.5-4.2.el5
    elfutils-0.137-3.el5
    elfutils-libelf-0.137-3.el5
    elfutils-libelf-devel-0.137-3.el5
    elfutils-libelf-devel-static-0.137-3.el5
    elfutils-libs-0.137-3.el5
    ethtool-6-3.el5
    expat-1.95.8-8.2.1
    file-4.17-15.el5_3.1
    filesystem-2.4.0-2
    findutils-4.2.27-6.el5
    fipscheck-1.2.0-1.el5
    fipscheck-lib-1.2.0-1.el5
    fontconfig-2.4.1-7.el5
    freetype-2.2.1-21.el5_3
    freetype-2.2.1-21.el5_3
    gawk-3.1.5-14.el5
    gcc-4.1.2-46.el5
    gcc-c++-4.1.2-46.el5
    gdbm-1.8.0-26.2.1
    gettext-0.14.6-4.el5
    glib2-2.12.3-4.el5_3.1
    glib2-2.12.3-4.el5_3.1
    glib2-devel-2.12.3-4.el5_3.1
    glib2-devel-2.12.3-4.el5_3.1
    glibc-2.5-42
    glibc-2.5-42
    glibc-common-2.5-42
    glibc-devel-2.5-42
    glibc-devel-2.5-42
    glibc-headers-2.5-42
    gnutls-1.4.1-3.el5_2.1
    grep-2.5.1-55.el5
    groff-1.18.1.1-11.1
    grub-0.97-13.5
    gtk2-2.10.4-20.el5
    gzip-1.3.5-10.el5
    hal-0.5.8.1-52.el5
    hdparm-6.6-2
    hesiod-3.1.0-8
    hicolor-icon-theme-0.9-2.1
    hmaccalc-0.9.6-1.el5
    htmlview-4.0.0-2.el5
    hwdata-0.213.16-1.el5
    info-4.8-14.el5
    initscripts-8.45.30-2.el5
    iproute-2.6.18-10.el5
    iptables-1.3.5-5.3.el5
    iptables-ipv6-1.3.5-5.3.el5
    iputils-20020927-46.el5
    kbd-1.12-21.el5
    kernel-2.6.18-164.el5
    kernel-headers-2.6.18-164.el5
    keyutils-libs-1.2-1.el5
    kpartx-0.4.7-30.el5
    krb5-libs-1.6.1-36.el5
    ksh-20080202-2.el5
    kudzu-1.2.57.1.21-1
    less-394-6.el5
    libacl-2.2.39-3.el5
    libaio-0.3.106-3.2
    libaio-0.3.106-3.2
    libaio-devel-0.3.106-3.2
    libattr-2.4.32-1.1
    libcap-1.10-26
    libdaemon-0.10-5.el5
    libdmx-1.0.2-3.1
    libdrm-2.0.2-1.1
    libgcc-4.1.2-46.el5
    libgcc-4.1.2-46.el5
    libgcrypt-1.4.4-5.el5
    libgomp-4.4.0-6.el5
    libgomp-4.4.0-6.el5
    libgpg-error-1.4-2
    libhugetlbfs-1.3-3.el5
    libhugetlbfs-1.3-3.el5
    libICE-1.0.1-2.1
    libICE-1.0.1-2.1
    libjpeg-6b-37
    libpng-1.2.10-7.1.el5_3.2
    libselinux-1.33.4-5.5.el5
    libselinux-1.33.4-5.5.el5
    libselinux-python-1.33.4-5.5.el5
    libselinux-utils-1.33.4-5.5.el5
    libsemanage-1.9.1-4.4.el5
    libsepol-1.15.2-2.el5
    libsepol-1.15.2-2.el5
    libSM-1.0.1-3.1
    libSM-1.0.1-3.1
    libstdc++-4.1.2-46.el5
    libstdc++-4.1.2-46.el5
    libstdc++-devel-4.1.2-46.el5
    libstdc++-devel-4.1.2-46.el5
    libsysfs-2.0.0-6
    libtermcap-2.0.8-46.1
    libtermcap-2.0.8-46.1
    libtiff-3.8.2-7.el5_3.4
    libusb-0.1.12-5.1
    libuser-0.54.7-2.el5.5
    libvolume_id-095-14.21.el5
    libvolume_id-095-14.21.el5
    libX11-1.0.3-11.el5
    libX11-1.0.3-11.el5
    libXau-1.0.1-3.1
    libXau-1.0.1-3.1
    libXau-devel-1.0.1-3.1
    libXaw-1.0.2-8.1
    libXcursor-1.1.7-1.1
    libXdmcp-1.0.1-2.1
    libXdmcp-1.0.1-2.1
    libXext-1.0.1-2.1
    libXext-1.0.1-2.1
    libXfixes-4.0.1-2.1
    libXft-2.1.10-1.1
    libXi-1.0.1-3.1
    libXinerama-1.0.1-2.1
    libxml2-2.6.26-2.1.2.8
    libxml2-python-2.6.26-2.1.2.8
    libXmu-1.0.2-5
    libXp-1.0.0-8.1.el5
    libXp-1.0.0-8.1.el5
    libXp-devel-1.0.0-8.1.el5
    libXpm-3.5.5-3
    libXrandr-1.1.1-3.1
    libXrender-0.9.1-3.1
    libXt-1.0.2-3.1.fc6
    libXt-1.0.2-3.1.fc6
    libXtst-1.0.1-3.1
    libXtst-1.0.1-3.1
    libXv-1.0.1-4.1
    libXxf86dga-1.0.1-3.1
    libXxf86misc-1.0.1-3.1
    libXxf86vm-1.0.1-3.1
    lm_sensors-2.10.7-4.el5
    logrotate-3.7.4-9
    lsscsi-0.17-3.el5
    lvm2-2.02.46-8.el5
    m4-1.4.5-3.el5.1
    mailx-8.1.1-44.2.2
    make-3.81-3.el5
    MAKEDEV-3.23-1.2
    man-1.6d-1.1
    man-pages-es-1.28-10.1.1
    mcstrans-0.2.11-3.el5
    mesa-libGL-6.5.1-7.7.el5
    microcode_ctl-1.17-1.48.el5
    mingetty-1.07-5.2.2
    mkinitrd-5.1.19.6-54
    mkinitrd-5.1.19.6-54
    mktemp-1.5-23.2.2
    module-init-tools-3.3-0.pre3.1.54.el5
    nano-1.3.12-1.1
    nash-5.1.19.6-54
    ncurses-5.5-24.20060715
    net-tools-1.60-78.el5
    newt-0.52.2-12.el5
    nspr-4.7.4-1.el5_3.1
    nspr-4.7.4-1.el5_3.1
    nss-3.12.3.99.3-1.el5_3.2
    nss-3.12.3.99.3-1.el5_3.2
    ntp-4.2.2p1-9.el5_3.2
    ocfs2-2.6.18-164.el5-1.4.2-1.el5
    ocfs2console-1.4.2-1.el5
    ocfs2-tools-1.4.2-1.el5
    ocfs2-tools-devel-1.4.2-1.el5
    openldap-2.3.43-3.el5
    openssh-4.3p2-36.el5
    openssh-clients-4.3p2-36.el5
    openssh-server-4.3p2-36.el5
    openssl-0.9.8e-12.el5
    oracleasm-2.6.18-164.el5-2.0.5-1.el5
    oracleasmlib-2.0.4-1.el5
    oracleasm-support-2.1.3-1.el5
    pam-0.99.6.2-6.el5
    pango-1.14.9-6.el5
    paps-0.6.6-18.el5
    passwd-0.73-1
    patch-2.5.4-29.2.3.el5
    pax-3.4-1.2.2
    pciutils-2.2.3-7.el5
    pcre-6.6-2.el5_1.7
    perl-5.8.8-27.el5
    pkgconfig-0.21-2.el5
    pm-utils-0.99.3-10.el5
    policycoreutils-1.33.12-14.6.el5
    popt-1.10.2.3-18.el5
    prelink-0.4.0-2.el5
    procmail-3.22-17.1
    procps-3.2.7-11.1.el5
    psmisc-22.2-7
    pycairo-1.2.0-1.1
    pygobject2-2.12.1-5.el5
    pygtk2-2.10.1-12.el5
    python-2.4.3-27.el5
    python-numeric-23.7-2.2.2
    readline-5.1-3.el5
    readline-5.1-3.el5
    redhat-logos-4.9.16-1
    redhat-lsb-3.1-12.3.EL
    redhat-menus-6.7.8-3.el5
    redhat-release-5Server-5.4.0.3
    redhat-release-notes-5Server-29
    rhpl-0.194.1-1
    rootfiles-8.1-1.1.1
    rpm-4.4.2.3-18.el5
    rpm-libs-4.4.2.3-18.el5
    rsh-0.17-38.el5
    rsync-2.6.8-3.1
    sed-4.1.5-5.fc6
    selinux-policy-2.4.6-255.el5
    selinux-policy-targeted-2.4.6-255.el5
    sendmail-8.13.8-2.el5
    setools-3.0-3.el5
    setserial-2.17-19.2.2
    setup-2.5.58-7.el5
    sgpio-1.2.0_10-2.el5
    shadow-utils-4.0.17-14.el5
    slang-2.0.6-4.el5
    smartmontools-5.38-2.el5
    sqlite-3.3.6-5
    sysfsutils-2.0.0-6
    sysklogd-1.4.1-44.el5
    sysstat-7.0.2-3.el5
    system-config-securitylevel-tui-1.6.29.1-2.1.el5
    SysVinit-2.86-15.el5
    tar-1.15.1-23.0.1.el5
    tcl-8.4.13-4.el5
    tcl-8.4.13-4.el5
    tcp_wrappers-7.6-40.7.el5
    tcp_wrappers-7.6-40.7.el5
    telnet-0.17-39.el5
    termcap-5.5-1.20060701.1
    time-1.7-27.2.2
    tmpwatch-2.9.7-1.1.el5.2
    tzdata-2009k-1.el5
    udev-095-14.21.el5
    udftools-1.0.0b3-0.1.el5
    unzip-5.52-3.el5
    usermode-1.88-3.el5.2
    util-linux-2.13-0.52.el5
    vim-common-7.0.109-6.el5
    vim-minimal-7.0.109-6.el5
    vixie-cron-4.1-76.el5
    vte-0.14.0-2.el5
    which-2.16-7
    wireless-tools-28-2.el5
    xorg-x11-filesystem-7.1-2.fc6
    xorg-x11-utils-7.1-2.fc6
    xorg-x11-xauth-1.0.1-2.1
    zabbix-agent-1.4.6-1.el5
    zip-2.31-2.el5
    zlib-1.2.3-3
    Hope to help,
    Mario Alcaide

  • Cannot get Oracle 10g to start on a G5.  Floating point exception

    After a very painful 10g (EE) installation process i.e fixing all the following:
    1) Created the missing /opt directory
    2) Installation of XCode 1.2
    3) Fixing the root.sh file
    4) Downloaded the crstl file provided by Ron
    5) Copied /etc/oratab/oratab to /etc/oratab
    I tried bringing up the Oracle 10g instance by logging onto Sql*Plus as sysdba and running
    startup nomount pfile ='/Users/oracle/admin/db01/scripts/init.ora''. The instance comes up for a few socunds and crashes. This is what i get in the alert.log
    ==========================================================
    Sat Jul 17 11:40:08 2004
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    KCCDEBUG_LEVEL = 0
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    Dynamic strands is set to TRUE
    Running with 2 shared and 18 private strand(s). Zero-copy redo is FALSE
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up ORACLE RDBMS Version: 10.1.0.3.0.
    System parameters with non-default values:
    processes = 150
    sga_target = 146800640
    control_files = /Users/oracle/oradata/db01/control01.ctl, /Users/oracle/oradata/db01/control02.ctl, /Users/oracle/oradata/db01/control03.ctl
    db_block_size = 8192
    compatible = 10.1.0.2.0
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = /Users/oracle/flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=db01XDB)
    job_queue_processes = 10
    background_dump_dest = /Users/oracle/admin/db01/bdump
    user_dump_dest = /Users/oracle/admin/db01/udump
    core_dump_dest = /Users/oracle/admin/db01/cdump
    db_name = db01
    open_cursors = 300
    pga_aggregate_target = 16777216
    PMON started with pid=2, OS id=4037
    MMAN started with pid=3, OS id=4039
    DBW0 started with pid=4, OS id=4041
    LGWR started with pid=5, OS id=4043
    CKPT started with pid=6, OS id=4045
    SMON started with pid=7, OS id=4047
    RECO started with pid=8, OS id=4049
    Sat Jul 17 11:40:16 2004
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    CJQ0 started with pid=9, OS id=4051
    Sat Jul 17 11:40:16 2004
    starting up 1 shared server(s) ...
    Sat Jul 17 11:40:18 2004
    Errors in file /Users/oracle/admin/db01/bdump/db01_ckpt_4045.trc:
    ORA-07445: exception encountered: core dump [semop+8] [SIGFPE] [Invalid floating point operation] [0xA0004CE4] [] []
    Sat Jul 17 11:40:19 2004
    Errors in file /Users/oracle/admin/db01/bdump/db01_mman_4039.trc:
    ORA-07445: exception encountered: core dump [semop+8] [SIGFPE] [Invalid floating point operation] [0x41EDB3C] [] []
    Sat Jul 17 11:40:21 2004
    Errors in file /Users/oracle/admin/db01/bdump/db01_pmon_4037.trc:
    ORA-00822: MMAN process terminated with error
    Sat Jul 17 11:40:21 2004
    PMON: terminating instance due to error 822
    Instance terminated by PMON, pid = 4037
    ==========================================================
    Any idea on what needs to be done to fix this error. I remember that i had the very same issue with the Oracle 9i R2 Developers release.
    Any help will be greatly appreciated.

    After a very painful 10g (EE) installation process
    i.e fixing all the following:<snip>
    Sat Jul 17 11:40:19 2004
    Errors in file
    /Users/oracle/admin/db01/bdump/db01_mman_4039.trc:
    ORA-07445: exception encountered: core dump [semop+8]
    [SIGFPE] [Invalid floating point operation]
    [0x41EDB3C] [] []
    Sat Jul 17 11:40:21 2004
    Errors in file
    /Users/oracle/admin/db01/bdump/db01_pmon_4037.trc:
    ORA-00822: MMAN process terminated with error
    Sat Jul 17 11:40:21 2004
    PMON: terminating instance due to error 822
    Instance terminated by PMON, pid = 4037==============================================> Any idea on what needs to be done to fix this error.
    I remember that i had the very same issue with the
    Oracle 9i R2 Developers release.
    Any help will be greatly appreciated.You mentioned the 9ir2 release. Do you still have any reference to the 9ir2 software in your environment ? With a little luck you have, and in that case it not so hard to find a solution ...
    Ronald.
    http://homepage.mac.com/ik_zelf/oracle

Maybe you are looking for

  • Report on Modvat balance

    Hi Guru's, Do we have any standard report on Modvat balance. Thanks, Reddy.

  • Firewire 400 or 800?

    So, I just purchased a Samsung camcorder, but only came with USB cable. From what I read from this forum is that you need to have the firewire cable to import video from camcorder to Mac. What exactly is the difference between Firewire 400 and Firewi

  • Pass attribute throw task flows

    I am using jdeveloper 11.1.2 I have a page contains select one choice component with 100 element in it I need to add popup search page so when I search it the 100 elements will be displayed and when I chose one of this element it will be selected in

  • Group Condition at Header on Scale basis

    Hi, I want to know, how system assign the corresponding condition amount of header to individual item . in our system e.g in our system we have condition ZD22 for packainf and forwading charges as fixed amount and scale is qty i have add Rs 300 at he

  • Owb first step

    hi all, i'm dealing for the first time with owb. i'm doing some mappings in order to populate ods tables from staging tables (external tables). in order to convert the type of a column i came across the anydata cast and tried to use it. since it gave