Scheduling Export in database control

Hi , I just want to know what is the best way to schedule daily export(datapump) in Oracle for Windows. Should I schedule one export and use the SQl script to schedule a SQL script job or use the host command job to do the Export?
Is there another way to do it? What's the best practice please
Thanks
Jp

JP,
Do you have EM dbconsole setup on your machine? If you do you can use that to schedule a daily export job using datapump
Here is a link with example how to use Datapump API and you can use DBMS_SCHEDULER to schedule a daily job
http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_api.htm#sthref460
Regards
OrionNet

Similar Messages

  • How to Schedule Job using Database Control for SQLPLUS script?

    Hi All,
    I am using Database version 10.2. I would like to schedule a SQLPLUS script job using Database control (Not using Grid Control!). The following is the script.
    ========================================================
    define OEM_FRIENDLY=1
    define OWB_BACKGROUND=0
    set serveroutput on
    set verify off
    whenever sqlerror exit failure;
    define REPOS_OWNER='&1.'
    define LOCATION_NAME='&2.'
    define TASK_TYPE='&3.'
    define TASK_NAME='&4.'
    define SYSTEM_PARAMS='&5.'
    define CUSTOM_PARAMS='&6.'
    alter session set current_schema = &REPOS_OWNER.;
    set role owb_d_&REPOS_OWNER., owb_o_&REPOS_OWNER.;
    variable exec_return_code number;
    begin
    -- Initialize Return Code
    :exec_return_code := wb_rt_api_exec.RESULT_FAILURE;
    -- Run Task
    :exec_return_code := wb_rt_api_exec.run_task('&LOCATION_NAME.',
    '&TASK_TYPE.',
    '&TASK_NAME.',
    '&CUSTOM_PARAMS.',
    '&SYSTEM_PARAMS.',
    &OEM_FRIENDLY.,
    &OWB_BACKGROUND.);
    end;
    exit :exec_return_code;
    ===========================================================
    Is it possible to schedule SQLPLUS script with 6 different parameters? If yes then how can I schedule for monday to friday or only for Saturday and sundays.
    Please provide brief steps.
    Thanks for your help in advance.
    - Mehul

    Let me explain to you about scheduler.
    You can schedule a pl/sql stored procedure TEST_S as follows...
    Begin
    dbms_scheduler.create_job(
    job_name=>'MY_JOB',
    Job_Type=>'STORED_PROCEDURE',
    job_action=>'TEST_S',
    start_date=>sysdate,
    repeat_interval=>'freq=monthly;BYDAY=MON,TUE,WED,THU,FRI',
    end_date=>null');
    END;
    You can also also execute o/s script like .bat or .sh. For this job type should be EXECUTABLE.
    Example of converting a .sql script in .bat script...
    insert.sql
    insert into dept values(50,'IT','LONDON');
    exit
    insert.bat
    sqlplus scott/tiger @insert.sql
    Executing now...
    C:\Documents and Settings>insert.bat
    C:\Documents and Settings>sqlplus scott/tiger @insert.sql
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Mar 1 08:01:00 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    1 row created.
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - P
    oduction
    With the Partitioning, OLAP and Data Mining options
    C:\Documents and Settings>
    So first read about DBMS_SCHEDULER and do the work in prompt. Then you can go and schedule it even by database control.
    Scheduling by database control...
    http://www.oracle.com/technology/oramag/oracle/04-jul/o44tech_dba.html
    Scheduler
    http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sched.htm#CIHEHDHA
    PS: By default each job you created is disable state. Please enable it by enable procedure of DBMS_SCHEDULER package.

  • 'Scheduler' link in Oracle Database Control

    Hi all,
    In Oracle Database Control, I cannot see link to "Scheduler" under Administration tab page as described in the documentation or a link to "Manage Current Backups"
    How can I obtain those links?
    Please note that I'm speaking about Oracle EM Databse Control (that shipped with the datbase CD itself) and not the Database Grid Control product.
    Thanks in advance,
    Ahmed B.

    I have the same problem with Grid Control 10.1.0.4 on Sun Solaris 9. Target database are 10.1.0.4.0 64-bit, also on Solaris 9 64-bit. As described in Help, under "Administration" tab is sub-tab "Scheduler" with following links: Jobs, Schedules, Programs, Job Classes, Windows, Window Groups.
    Who knows, what I need to do for resolving this issue? I need scheduler administration!

  • Oracle 10G Database Control and Scheduling OWB Process Flow

    Does anyone know how to go about scheduling an OWB Process Flow from
    Oracle 10G Data Base Control. I knew how to do this with Oracle Enterprise Manager 9.2 but we recently upgraded to Oracle Db 10G and the interface has changed significantly.
    Now the interface seems to require a PL/SQL stored procedure to be executed.
    Is there a template procedure that is installed with 10G Data Base Control as there was for 9.2 i.e. oem_exec_template.sql?
    Thanks! Deadline approaching fast...
    Marion

    I've used the oem_exec_template.sql successfully with OWB 10.1 and Oracle 10G Database Control, with a little trial and error at first.
    I'm assuming that your job execution environment is set up correctly, ie. that you can properly execute jobs via the host agent.
    1. Log on to Database Control as SYSTEM, select Jobs from the links at the bottom of the page
    2. In the Results section, Create Job, select "SQL Script" and press Go
    3. In the General section, enter Job Name, and as SQL Script enter e.g.:
    @/u01/app/oracle/owb_oracle_home/owb/rtp/sql/oem_exec_template.sql owb_runtime WF_LOC PROCESS MY_PROCESS , ,
    4. In the Databases section, add your target database
    5. In the Credentials section, I select "Override Preferred Credentials" and use the agent account (oracle on my Linux system) and db user owb_access (OWB Runtime Access user)
    6. Review Schedule tab and submit
    Comments on step 3:
    - the oem_exec_template.sql script must be installed according to the path specified in step 3, on the database host where the OWB Runtime Repository is located
    - owb_runtime is the owner of my OWB Runtime Repository
    - WF_LOC is the name of my Workflow Location as seen in OWB Deployment Manager
    - MY_PROCESS is the name of a deployed Workflow Process
    - the commas indicate that I don't supply any system or custom parameters.
    - step 3 is actually a shell command line that is interpreted by eg. /bin/sh on Unix or cmd on Windows, and must obey proper quoting rules. On windows, I had to specify the empty commas as "\," (including dblquotes)
    Regards, Hans Henrik

  • Database control: how to read output of sproc that returns result set

    I have a stored procedure that returns a result set. Should I use a RowSet control to wrap this, or a database control, or neither? Am I better off with straight JDBC in a Java control?
    Thanks.

    Sorry for missing the point totally...
    DOKTL also contains long text for FM parameters...
    This is a modified version of your code that retrieves the long text and displays it...
    DATA: parameter TYPE TABLE OF swotfupar,
          ls_parameter LIKE LINE OF parameter,
          search_string TYPE doktl-object,
          texttab type table of doktl-doktext with header line.
    PARAMETERS: fubaname TYPE swcontdef-abapname
                              DEFAULT 'POPUP_TO_CONFIRM',
                pa_lang TYPE sy-langu.
    START-OF-SELECTION.
      CALL FUNCTION 'SWO_QUERY_FUNCTION_PARAMETERS'
        EXPORTING
          functionmodule            = fubaname
        TABLES
          function_parameters       = parameter
    *   EXCEPTIONS
    *     FUNCTION_NOT_FOUND        = 1
    *     OTHERS                    = 2
      IF sy-subrc <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      LOOP AT parameter INTO ls_parameter.
        CONCATENATE `                              `            "30 spaces
                    ls_parameter-parameter INTO search_string.
        OVERLAY search_string WITH fubaname.
        SELECT doktext FROM doktl INTO TABLE texttab
               WHERE id = 'FU'
               AND langu = pa_lang
               AND object = search_string.
        WRITE:/ 'Long Text for', ls_parameter-parameter.
        LOOP AT texttab.
          NEW-LINE.
          WRITE: AT 10 texttab COLOR COL_HEADING.
        ENDLOOP.
      ENDLOOP.
    Hope this helps you
    Regards,
    Dushyant Shetty

  • Do i need to reconfigure OEM Database Control when change ip address?

    Hi all.
    Do i need to reconfigure OEM Database Control after a change of ip address?
    I mean, i have an OEL5 box with 10g Rel2. I have configure the server with a static ip address.
    This server will be sent to another location and it's possible the ip address will be changed. It will remain a static ip, but may change. Since i plan to deliver this server with rman jobs within OEM Database Control. I'd like to know if this will continue working after an eventual ip address change ....
    Regards....!

    myluism wrote:
    Hi all.
    Do i need to reconfigure OEM Database Control after a change of ip address?
    I mean, i have an OEL5 box with 10g Rel2. I have configure the server with a static ip address.
    This server will be sent to another location and it's possible the ip address will be changed. It will remain a static ip, but may change. Since i plan to deliver this server with rman jobs within OEM Database Control. I'd like to know if this will continue working after an eventual ip address change ....
    Regards....!It depends.
    When you created the dbcontrol, the configuration was put in a directory in ORACLE_HOME named something like 'hostname_sid' and there are also files under that where the hostname is baked into either the file name or a property of a configration defined within a file. If it is truly hostname, you might be ok, but if it is actually IP address instead of host name (I have seen that) then you obviously have a problem.
    Over the years (and across several versions) I've found the OEM repository to be rather "brittle", and Oracle to have a rather cavalier attitude about rebuilding it. As a result, I specifically DO NOT have anything important - and very specifically my backup jobs - in the repository. I still schedule my backups through rman, though I know many people use dbms_scheduler. But even that appears to not be the same as an oem controlled schedule.

  • 10.1.0.2.0 Database Control Backup error.

    Has anybody found this error when running an "gui" Database Control error?
    I can successfully run a command line RMAN backup (script) on our production server, however I get the following error when attempting to schedule an backup through the GUI.
    STATUS: failed initialization, Param username not provided.
    When I go through setting up the backup I ensure to "test backup to disk" which is successful.
    It should work if the test is successful, and I am able to run the scripted RMAN backup to the same directory on the disk with no issues.
    Any thoughts?
    Kindest regards,
    Shawn

    Is this window box , if this is the case then you
    need to set the local security policy before running
    backup job.Yes, make sure your username (i.e. the one running the job) has log on as batch job privilege.

  • Can't create or import Database Control Repository on fresh install

    I've just installed the latest 10g version on a Linux system. Afterward, and after exporting my ORACLE_SID and ORACLE_HOME variables, on trying to start the EM Control (emctl), I got the dreaded "OC4J Configuration issue" error:
    ./emctl start dbconsole
    TZ set to US/Eastern
    OC4J Configuration issue. /usr/local/oracle/product/10.2.0/db_1/oc4j/j2ee/OC4J_DBConsole_myhostname_myoracledb not found.
    lsnrctl hung when connecting or checking status:
    ./lsnrctl
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 25-JUN-2007 16:14:23
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Welcome to LSNRCTL, type "help" for information.
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=myhostname)(PORT=1521)))
    So I ran netca to configure the listener, and that seemed to work, but at the end it complained that the port was already in use (even though netstat -a shows nothing on port 1521). Then I tried to create the repository (emca -repos create), but that failed too ("SYSMAN already exists"):
    INFO: Creating the EM repository (this may take a while) ...
    Jun 25, 2007 4:18:55 PM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: ORA-20001: SYSMAN already exists..
    ORA-06512: at line 17
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-20001: SYSMAN already exists..
    ORA-06512: at line 17
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1467)
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeScript(SQLEngine.java:841)
    at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:265)
    at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:306)
    at oracle.sysman.emcp.EMReposConfig.createRepository(EMReposConfig.java:360)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:182)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:124)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    Jun 25, 2007 4:18:55 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    Jun 25, 2007 4:18:55 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /usr/local/oracle/product/10.2.0/db_1/cfgtoollogs/emca/myoracledb/emca_repos_create_<date>.log for
    Jun 25, 2007 4:18:55 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at /usr/local/oracle/product/10.2.0/db_1/cfgtoollogs/emca/myoracledb/emca_2007-06-25_04-18-37-PM.log for morJun 25, 2007 4:18:55 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error creating the repository
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:194)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:124)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    I'm not sure what else to try. Any thoughts?
    Thank you,
    ~John

    Please let me know if this isn't the correct log:
    $ cat $ORACLE_HOME/cfgtoollogs/emca/oracledb/emca_2007-06-27_04-51-05-PM.log
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to true
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'create' set to true
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'drop' set to true
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: /usr/local/oracle/product/10.2.0/db_1
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:05 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: /usr/local/oracle/product/10.2.0/db_1
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: oracledb
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: This is expected, as we might be calling it from a non-rac home
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Error retrieving the local node for the cluster
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: PRKH-1010 : Unable to communicate with CRS services.
    [OCR Error(Native: prsr_initCLSS:[21])]
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster Error Message: PRKH-1010 : Unable to communicate with CRS services.
    [OCR Error(Native: prsr_initCLSS:[21])]
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: oracledb Host: [hostname] Node: null OH: /usr/local/oracle/product/10.2.0/db_1 isDBC: false
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: oracledb Host: [hostname] Node: null OH: /usr/local/oracle/product/10.2.0/db_1 agentHome: null isCentral: false
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: oracledb Host: [hostname] Node: null OH: /usr/local/oracle/product/10.2.0/db_1 agentHome: null isCentral: false
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jun 27, 2007 4:51:09 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user:
    Jun 27, 2007 4:51:10 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Jun 27, 2007 4:51:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Jun 27, 2007 4:51:12 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Jun 27, 2007 4:51:15 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Jun 27, 2007 4:51:15 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:15 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:17 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: DBSNMP
    Jun 27, 2007 4:51:17 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:20 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EMAIL_ADDRESS value:
    Jun 27, 2007 4:51:21 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: MAIL_SERVER_NAME value:
    Jun 27, 2007 4:51:21 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:21 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value:
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value: yes
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LOG_FILE.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: oracledb
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /usr/local/oracle/product/10.2.0/db_1/cfgtoollogs/emca/oracledb/emca_2007-06-27_04-51-05-PM.log.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: DBSNMP
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: oracledb
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_DOMAIN value: world
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: oracledb
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: oracledb.world
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    Jun 27, 2007 4:51:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 3244183297
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: oracledb
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_DOMAIN value: world
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: oracledb
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: oracledb.world
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter EMAIL_ADDRESS.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: oracledb, oracleHome: /usr/local/oracle/product/10.2.0/db_1, and user: SYS
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_DOMAIN value: world
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: oracledb.world
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /usr/local/oracle/product/10.2.0/db_1/sysman/config/emd.properties to /usr/local/oracle/product/10.2.0/db_1/sysman/config/emd.properties.emca.tmp
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file /usr/local/oracle/product/10.2.0/db_1/sysman/config/emd.properties has been copied to /usr/local/oracle/product/10.2.0/db_1/sysman/config/emd.properties.emca.tmp
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /usr/local/oracle/product/10.2.0/db_1/sysman/config/emoms.properties.emca to /usr/local/oracle/product/10.2.0/db_1/sysman/config/emoms.properties
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file /usr/local/oracle/product/10.2.0/db_1/sysman/config/emoms.properties.emca has been copied to /usr/local/oracle/product/10.2.0/db_1/sysman/config/emoms.properties
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /usr/local/oracle/product/10.2.0/db_1/sysman/emd/targets.xml to /usr/local/oracle/product/10.2.0/db_1/sysman/emd/targets.xml.emca.tmp
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file /usr/local/oracle/product/10.2.0/db_1/sysman/emd/targets.xml has been copied to /usr/local/oracle/product/10.2.0/db_1/sysman/emd/targets.xml.emca.tmp
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_RECONFIG' set to false
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: oracledb Host: [hostname] Node: null OH: /usr/local/oracle/product/10.2.0/db_1 agentHome: null isCentral: false
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: oracledb Host: [hostname] Node: null OH: /usr/local/oracle/product/10.2.0/db_1 isDBC: false
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_CONFIGURED' set to false
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_DBCONTROL_CONFIGURED' set to false
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: oracledb Host: [hostname] Node: null OH: /usr/local/oracle/product/10.2.0/db_1 isDBC: false
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter PORTS_FILE.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_oracledb.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_oracledb.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_oracledb.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_oracledb.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to /usr/local/oracle/product/10.2.0/db_1/oui
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to /usr/local/oracle/product/10.2.0/db_1/oui
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [usr/local/oracle/product/10.2.0/db_1]
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME /usr/local/oracle/product/10.2.0/db_1
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from /usr/local/oracle/product/10.2.0/db_1/oc4j/j2ee/OC4J_DBConsole
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from /usr/local/oracle/product/10.2.0/db_1/oc4j/j2ee/OC4J_DBConsole
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from /usr/local/oracle/product/10.2.0/db_1/oc4j/j2ee/OC4J_DBConsole
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from /usr/local/oracle/product/10.2.0/db_1/sysman/config/emd.properties
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    Jun 27, 2007 4:51:24 PM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file /usr/local/oracle/product/10.2.0/db_1/install/staticports.ini
    Jun 27, 2007 4:51:25 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Failed to allocate port(s) in the specified range(s) for the following process(es): JMS [5540-5559],RMI [5520-5539],Database Control [5500-5519],EM Agent [3938] | [1830-1849]
    Refer to the log file at /usr/local/oracle/product/10.2.0/db_1/cfgtoollogs/emca/oracledb/emca_2007-06-27_04-51-05-PM.log for more details.
    Jun 27, 2007 4:51:25 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Failed to allocate port(s) in the specified range(s) for the following process(es): JMS [5540-5559],RMI [5520-5539],Database Control [5500-5519],EM Agent [3938] | [1830-1849]
    at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2266)
    at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:670)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:233)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:160)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:141)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)

  • Regarding - Export of database - confussion

    When I am doing export my database at the end of the result shows
    export "terminated" successfully completed.Any how i have no problem
    in the file while i import i got 100% data.
    The word "terminated" is making confussion -
    what is the purpose of the word "terminated" meaning?

    :D Good one Howard ;)
    See even with help=Y , its terminating :D
    C:\>exp help=y
    Export: Release 9.0.1.3.1 - Production on Fri Oct 19 11:45:23 2007
    (c) Copyright 2001 Oracle Corporation.  All rights reserved.
    You can let Export prompt you for parameters by entering the EXP
    command followed by your username/password:
         Example: EXP SCOTT/TIGER
    Or, you can control how Export runs by entering the EXP command followed
    by various arguments. To specify parameters, you use keywords:
         Format:  EXP KEYWORD=value or KEYWORD=(value1,value2,...,valueN)
         Example: EXP SCOTT/TIGER GRANTS=Y TABLES=(EMP,DEPT,MGR)
                   or TABLES=(T1:P1,T1:P2), if T1 is partitioned table
    USERID must be the first parameter on the command line.
    Keyword    Description (Default)      Keyword      Description (Default)
    USERID     username/password          FULL         export entire file (N)
    BUFFER     size of data buffer        OWNER        list of owner usernames
    FILE       output files (EXPDAT.DMP)  TABLES       list of table names
    COMPRESS   import into one extent (Y) RECORDLENGTH length of IO record
    GRANTS     export grants (Y)          INCTYPE      incremental export type
    INDEXES    export indexes (Y)         RECORD       track incr. export (Y)
    DIRECT     direct path (N)            TRIGGERS     export triggers (Y)
    LOG        log file of screen output  STATISTICS   analyze objects (ESTIMATE)
    ROWS       export data rows (Y)       PARFILE      parameter filename
    CONSISTENT cross-table consistency    CONSTRAINTS  export constraints (Y)
    FEEDBACK             display progress every x rows (0)
    FILESIZE             maximum size of each dump file
    FLASHBACK_SCN        SCN used to set session snapshot back to
    FLASHBACK_TIME       time used to get the SCN closest to the specified time
    QUERY                select clause used to export a subset of a table
    RESUMABLE            suspend when a space related error is encountered(N)
    RESUMABLE_NAME       text string used to identify resumable statement
    RESUMABLE_TIMEOUT    wait time for RESUMABLE
    TTS_FULL_CHECK       perform full or partial dependency check for TTS
    TABLESPACES          list of tablespaces to export
    TRANSPORT_TABLESPACE export transportable tablespace metadata (N)
    TEMPLATE template name which invokes iAS mode export
    Export terminated successfully without warnings.
    C:\>So no problems :)
    Sidhu

  • Backup problems from Enterprise Manager Database control

    I'm having a problem with performing backups from EM DB Control on two of my Oracle 10g 10.2.0.4 systems. When I configure and submit any backup job from EM (either online or offline), the following happens:
    - When the job is due to run a Pre backup task has status of 'Scheduled'
    - Prebackup task completes and status changes to 'Succeeded'
    - Backup task appears with status of 'Scheduled' and value of started time within the next minute
    - Status of backup task never changes from 'Scheduled', and the started time keeps updating to the current time
    - This goes on indefinitely until I abort the job
    At the moment I have scheduled tasks configured to run an RMAN job every night, but I need to get this working through Enterprise Manager Database control. Please help!
    Something else which has happended on one of these systems is that after applying some Microsoft Critical updates the database control service would not start. The only way I could find to resolve this was to recreate the Enterprise Manager repository. Could there be a link here at all?
    Cheers,
    Strak

    I think Rodney may have the cause, because the database has been copied. I have looked in every property file I can think of, and then all the rest anyway, and there is no reference to the old host name. And I have ralready e-installed EM using emca -config -dbcontrol db. And I'm definately on the correct port.
    So it must be held internally in the database. I've seen partial instructions on deleting the EM repository in the database & java files, does anyone have a full set I can use ? Once that is done, does emca reinstall everything ?
    Many thanks, Duncan

  • Is OEM database control configured for the DBs?

    Hi
    I have multiple oracle (10gR2) databases running on a linux (5.8) server. How can I check that for which of the databases has the OEM Database Control been configured and on what port is it listening?
    Best regards

    Thank you everyone!
    Here is what I see (I have changed the DB names):
    ==============
    [oracle@vm58-1 install]$ emctl status dbconsole
    TZ set to US/Eastern
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
    https://vm58-1.com:1158/em/console/aboutApplication
    EM Daemon is not running.
    Logs are generated in directory
    /u01/app/oracle/product/10.2.0/db_1/vm58-1.com_db1/sysman/log
    [oracle@vm58-1 install]$ export ORACLE_SID=db2
    [oracle@vm58-1 install]$ emctl status dbconsole
    TZ set to US/Eastern
    OC4J Configuration issue.
    /u01/app/oracle/product/10.2.0/db_1/oc4j/j2ee/OC4J_DBConsole_vm58-1.com_db2
    not found.
    [oracle@vm58-1 install]$
    ==============
    So it seems that DB Console was configured for db1. When I try to start it, I get following output
    ========
    [oracle@vm58-1 install]$ export ORACLE_SID=db1
    [oracle@vm58-1 install]$ emctl start dbconsole
    TZ set to US/Eastern
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation.  All rights reserved.
    https://vm58-1.com:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control
    ========
    And these "dots" just continue to appear and it is running for 15+ minutes now.
    Please advise how to check what is happening.
    Grid Control suggestion - I agree. I believe Grid Control is not free and the client does not seem to be interested to spend more money :-)
    Best regards

  • Schedule Export Processes with Custom Query

    Hi,
    Can I use Schedule Export Processes, with a custom query over HZ_PARTIES and HZ_LOCATIONS, in order to export suppliers data in a specific field order with join conditions?
    I used Schedule Export Processes with "PARTY", selecting proper fields, but exported csv is in a different field order than the required by an external system.
    Thanks,
    Erick.

    Can you elaborate on the issue here. Are you looking for a way to run "ad-hoc" SQL queries for the filters ? I do not think that is possible, depending on your environment you may be able to create a custom view object to match your requirements.
    As for the orders I think you should be able to control the order using the sequence as the FAQs state:
    What happens if I change the sequence number or header text?
    Changing the sequence number changes the order of the attributes in the exported data file. Changing the header text enables you to give a more intuitive meaning to the attribute and the associated data.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Scheduled export hangs very often

    Hi friends,
    I've scheduled export running on DB server-Windows. I've created a batch file with export commands for about 5 databases and scheduled the job to run this batch file every night around 9 pm.
    But, the export hangs quite often atleast 1-2 night a week with this message and when I come in the morning I had to hit enter for it to proceed:
    batch file: (I've replaced the username,pwd etc in the below cmd, cannot provide on the forums...)
    exp system/pwd@db1 file=exp_db1_full.dmp log=exp_db1_full.log full=y buffer=400000
    exp username/pwd@db2 file=db2_user.dmp log=db2_user.log buffer=400000
    exp system/pwd@db3 file=exp_db3_full.dmp log=exp_db3_full.log full=y buffer=400000
    exp username/pwd@db4 file=db4_user.dmp log=db4_user.log buffer=300000
    exp username/pwd@db5 file=db5_user.dmp log=db5_user.log buffer=300000
    D:\>exp username/pwd@db4  file=db4_user.dmp log=db4_user.log buffer=300000
    Export: Release 10.2.0.3.0 - Production on Wed Jan 13 21:17:36 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Release 10.2.0.3.0 - 64bit Production
    EXP-00028: failed to open dbname_user.dmp for write
    Export file: EXPDAT.DMP >It hangs mostly for db3,db4 or db5 exports.. Not consistent either. Just stops with this command. Please give me your suggestions...
    Thanks a lot

    It could be a couple of issues:
    1. The file you gave it may be maxing out size wise and since there is no other file to use, exp builds the default file
    expdat.dmp and prompts the user to make sure it is ok to use that file. To get around this, you could add a second
    filename to the exp commands. If this happens for more than one job, you are overwriting the expdat.dmp file from the
    previous job.
    2. If for some reason it can't open that file, it would prompt for the expdat.dmp file.
    So, by hitting <cr> when prompted, your exp job will write to the expdat.dmp file. It would be interesting to look at the size of the expdat.dmp file and the size of the file you thought the export was going to write to.
    Dean

  • Database Control Install

    I'm running a 10.2 instance on Solaris, and need to install DB Control on a Windows box for management. What install disk/download does it come from? It's been about a year since I setup DB Control. I thought it was on the companion CD, no?

    Here is a good article on the emca command:
    The emca tool that is available in 10.2 Database install uses different options than the emca shipped for 10.1. Below is the output from the help file for the 10.2 emca utility:
    1. Set the $ORACLE_HOME to the 10.2 Database home.
    2. To get a list of options, issue the command: emca -h
    <$ORACLE_HOME>/emca [operation] [mode] [dbType] [flags] [parameters]
    -h | h | -help | help: prints this help message
    -version: prints the version
    -config dbcontrol db [-repos (create | recreate)] [-cluster] [-silent] [-backup] [parameters]: configure Database Control for a database
    -config centralAgent (db | asm) [-cluster] [-silent] [parameters]: configure central agent management
    -config all db [-repos (create | recreate)] [-cluster] [-silent] [-backup] [parameters]: configure both Database Control and central agent management
    -deconfig dbcontrol db [-repos drop] [-cluster] [-silent] [parameters]: de-configure Database Control
    -deconfig centralAgent (db | asm) [-cluster] [ -silent] [parameters]: de-configure central agent management
    -deconfig all db [-repos drop] [-cluster] [-silent] [parameters]: de-configure both Database Control and central agent management
    -addInst (db | asm) [-silent] [parameters]: configure EM for a new RAC instance
    -deleteInst (db | asm) [-silent] [parameters]: de-configure EM for a specified RAC instance
    -reconfig ports [-cluster] [parameters]: explicitly reassign Database Control ports
    -reconfig dbcontrol -cluster [-silent] [parameters]: reconfigures RAC Database Control deployment
    -displayConfig dbcontrol -cluster [-silent] [parameters]: displays information about the RAC Database Control configuration
    -upgrade (db | asm | db_asm) [-cluster] [-silent] [parameters]: upgrades an earlier version of the EM configuration to the current version
    -restore (db | asm | db_asm) [-cluster] [-silent] [parameters]: restores the current version of the EM configuration to an earlier version
    Parameters and Options:
    [parameters]: [ -respFile fileName ] [ -paramName paramValue ]*
    db: perform configuration operation for a database (including databases that use ASM)
    asm: perform configuration operation for an ASM-only instance
    db_asm: perform upgrade/restore operation for a database and an ASM instance
    -repos create: create a new Database Control repository
    -repos drop: drop the current Database Control repository
    -repos recreate: drop the current Database Control repository and recreate a new one
    -cluster: perform configuration operation for a RAC database
    -silent: perform configuration operation without prompting for parameters
    -backup: configure automatic backup for a database
    Parameters for single instance databases
    HOST: Database hostname
    SID: Database SID
    PORT: Listener port number
    ORACLE_HOME: Database ORACLE_HOME
    HOST_USER: Host username for automatic backup
    HOST_USER_PWD: Host user password for automatic backup
    BACKUP_SCHEDULE: Automatic backup schedule (HH:MM)
    EMAIL_ADDRESS: Email address for notifications
    MAIL_SERVER_NAME: Outgoing Mail (SMTP) server for notifications
    ASM_OH: ASM ORACLE_HOME
    ASM_SID: ASM SID
    ASM_PORT: ASM port
    ASM_USER_ROLE: ASM user role
    ASM_USER_NAME: ASM username
    ASM_USER_PWD: ASM user password
    SRC_OH: ORACLE_HOME for the database to be upgraded
    DBSNMP_PWD: Password for DBSNMP user
    SYSMAN_PWD: Password for SYSMAN user
    SYS_PWD: Password for SYS user
    DBCONTROL_HTTP_PORT: Database Control HTTP port
    AGENT_PORT: EM agent port
    RMI_PORT: RMI port for Database Control
    JMS_PORT: JMS port for Database Control
    Additional Parameters for cluster databases
    CLUSTER_NAME: Cluster name
    DB_UNIQUE_NAME: Database unique name
    SERVICE_NAME: Service name
    EM_NODE: Database Control node name
    EM_SID_LIST: Agent SID list [comma separated]

  • Access to EM Database Control

    I can enter in EM Database Control with the following directions:
    http://192.168.0.5:1158/em http://localhost:1158/em http://127.0.0.1:1158/em
    But not with the http://nshcare_server:1158/em direction where to nshcare_server it is the name of host (machine_name).
    When introducing the user and the password, return to appear the screen again of login without showing no error. If, for example, an incorrect password is introduced, appears a message of error.
    Why does not work putting the name of host?
    Thanks.

    Hi,
    The output of the emctl status dbconsole:
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://NSHCARE_SERVER:1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running.
    Logs are generated in directory C:\oracle\product\10.2.0\db_1/NSHCARE_SERVER_NS/sysman/log
    The content of the targets.xml:
    <Targets AGENT_SEED="126608752">
         <Target TYPE="oracle_emd" NAME="NSHCARE_SERVER:3938"/>
         <Target TYPE="host" NAME="NSHCARE_SERVER"/>
         <Target TYPE="oracle_database" NAME="NS">
              <Property NAME="MachineName" VALUE="NSHCARE_SERVER"/>
              <Property NAME="Port" VALUE="1521"/>
              <Property NAME="SID" VALUE="NS"/>
              <Property NAME="OracleHome" VALUE="C:\oracle\product\10.2.0\db_1"/>
              <Property NAME="UserName" VALUE="0fcf1c23c3b50242" ENCRYPTED="TRUE"/>
              <Property NAME="password" VALUE="0641b14c11a36641e79dfa23e63ecfce" ENCRYPTED="TRUE"/>
         </Target>
         <Target TYPE="oracle_listener" NAME="LISTENER_NSHCARE_SERVER">
              <Property NAME="Machine" VALUE="NSHCARE_SERVER"/>
              <Property NAME="LsnrName" VALUE="LISTENER"/>
              <Property NAME="Port" VALUE="1521"/>
              <Property NAME="OracleHome" VALUE="C:\oracle\product\10.2.0\db_1"/>
              <Property NAME="ListenerOraDir" VALUE="C:\oracle\product\10.2.0\db_1\network\admin"/>
         </Target>
    </Targets>
    The content of the emoms.properties:
    #Tue Dec 12 10:21:13 CET 2006
    oracle.sysman.emSDK.svlt.ConsoleServerName=NSHCARE_SERVER_Management_Service
    oracle.sysman.eml.mntr.emdRepPwd=2ff38e29ffcd1004f59701afe0985257
    emdrep.ping.pingCommand=ping <hostname>
    oracle.sysman.eml.mntr.emdRepPort=1521
    oracle.sysman.eml.mntr.emdRepDBName=NS
    oracle.sysman.eml.mntr.emdRepPwdSeed=5520390720547338740
    oracle.sysman.emSDK.svlt.ConsoleMode=standalone
    oracle.sysman.emRep.dbConn.statementCacheSize=30
    oracle.sysman.db.isqlplusUrl=http\://NSHCARE_SERVER\:5560/isqlplus/dynamic
    oracle.sysman.emSDK.svlt.ConsoleServerPort=1158
    oracle.sysman.eml.mntr.emdRepRAC=FALSE
    oracle.sysman.emSDK.emd.rt.useMonitoringCred=true
    oracle.sysman.eml.mntr.emdRepPwdEncrypted=TRUE
    oracle.sysman.db.isqlplusWebDBAUrl=http\://NSHCARE_SERVER\:5560/isqlplus/dba/dynamic
    oracle.sysman.emSDK.svlt.ConsoleServerHost=NSHCARE_SERVER
    oracle.sysman.eml.mntr.emdRepDBID=2760945814
    oracle.sysman.emSDK.svlt.ConsoleServerHTTPSPort=1158
    oracle.sysman.eml.mntr.emdRepServer=NSHCARE_SERVER
    oracle.sysman.eml.mntr.emdRepSID=NS
    oracle.sysman.eml.mntr.emdRepConnectDescriptor=(DESCRIPTION\=(ADDRESS_LIST\=(ADDRESS\=(PROTOCOL\=TCP)(HOST\=NSHCARE_SERVER)(PORT\=1521)))(CONNECT_DATA\=(SERVICE_NAME\=NS)))
    oracle.sysman.emSDK.sec.ReuseLogonPassword=true
    oracle.sysman.eml.mntr.emdRepUser=SYSMAN
    oracle.sysman.db.adm.conn.statementCacheSize=2
    oracle.sysman.db.perf.conn.statementCacheSize=30
    And the content (very big) of the emd.properties:
    # perl executable directory
    perlBin=C:\oracle\product\10.2.0\db_1\perl\5.8.3\bin\MSWin32-X64-multi-thread
    # script directory
    scriptsDir=C:\oracle\product\10.2.0\db_1/sysman/admin/scripts
    # emd Root directory(read-only location). Metrics should not create files
    # under this directory
    emdRoot=C:\oracle\product\10.2.0\db_1
    # agent Root directory(writeable).
    # Use this property to base any temporary file creation.
    agentStateDir=C:/oracle/product/10.2.0/db_1/NSHCARE_SERVER_NS
    # Chronos root directory
    chronosRoot=C:/oracle/product/10.2.0/db_1/NSHCARE_SERVER_NS/sysman/emd/chronos
    # OMS Upload URL
    # if there is no receiving OMS or if you wish to disable the UploadManager
    # please set this value to empty or comment out below line
    REPOSITORY_URL=http://NSHCARE_SERVER:1158/em/upload/
    # Proxy settings used for fetchlets. not applicable for uploader.
    #proxyHost=www-proxy.us.oracle.com
    #proxyPort=80
    #dontProxyFor=.us.oracle.com
    # If it is necessary to go through an http proxy server to get to the
    # repository, uncomment the following two lines
    #REPOSITORY_PROXYHOST=
    #REPOSITORY_PROXYPORT=
    #REPOSITORY_PROXYREALM=%EM_REPOS_PROXYREALM%
    #REPOSITORY_PROXYUSER=%EM_REPOS_PROXYUSER%
    #REPOSITORY_PROXYPWD=%EM_REPOS_PROXYPWD%
    # This string is used by the agent to connect to remote targets
    # ***IMPORTANT*** Do not change the contents of this setting. Only the
    # install should modify this value.
    agentSeed=126608752
    # This string is used by the agent to determine which algorithm to use for encrypted data
    # The string value will be same as the release version
    agentVersion=10.1.0.4.0
    # How long, in minutes, collector will wait until next load.
    UploadInterval=5
    # If an upload fails, we want to backoff by UploadFailBackoff
    # percentage more each time for each successive upload failure
    # e.g. if we start the retry at 1 minute. If we fail in our next
    # upload attempt, we try again 1minute 12 seconds later etc.
    UploadFailBackoffPct= 20
    # Maximum amount of time, in seconds, upload will wait for response from
    # repository before timing out.
    # 0 means infinite.
    UploadTimeout=1800
    # Timeout for upload a file, HealthMonitor will abort the EMD process if
    # UploadManager does not finish uploading one file within this time
    # Unit is minite, the default value is 1 hour ( 15 Min)
    #UploadMaxTime=15
    # How big the file the collector will upload (in KB)
    # the actual file size could be slightly bigger.
    # This is only a guidance.
    UploadFileSize=2048
    # The maximum number of megabytes(MB) the upload manager will support in the
    # upload directory before temporarily being disabled
    UploadMaxBytesXML=50
    # The maximum number of files the upload manager will support in the
    # upload directory before temporarily being disabled
    UploadMaxNumberXML=5000
    # The maximum amount (%) of disk space that can be used on the EMD filesystem
    # before the following is disabled:
    # - Collection of data (upload manager)
    # - Logging and tracing
    UploadMaxDiskUsedPct=98
    # The amount (%) of disk space that can be used on the EMD filesystem
    # before the following is re-enabled after being disabled previously:
    # - Collection of data (upload manager)
    # - Logging and tracing
    UploadMaxDiskUsedPctFloor=95
    # Time out for the Agent to think that the access to the database could be
    # hung. The Agent would not allow more threads to go and hang with a database
    # if any one access to the database does not return within DbHangTimeout
    # seconds.
    # The more the timeout more the possibility of allowing more threads
    # to be hung in the EMD with a bad database.it is specified in seconds.
    #DbHangTimeout=200
    # The script to run if disk space usage exceeds parameters or if certain other
    # error conditions occur.
    #emdFailureScript=emdfail.command
    # The location of the file that contains the root certificate.
    emdRootCertLoc=C:/oracle/product/10.2.0/db_1/NSHCARE_SERVER_NS/sysman/config/b64LocalCertificate.txt
    internetCertLoc=C:/oracle/product/10.2.0/db_1/NSHCARE_SERVER_NS/sysman/config/b64InternetCertificate.txt
    # The download URL for the EMD Oracle Wallet and its local file location.
    # Note: Ensure that this URL references a valid port number at which the
    # console is available on http
    emdWalletSrcUrl=http://NSHCARE_SERVER:1158/em/wallets/emd
    emdWalletDest=C:/oracle/product/10.2.0/db_1/NSHCARE_SERVER_NS/sysman/config/server
    # The email address for out-of-band notifications
    emd_email_address=
    emd_email_gateway=
    # The return email address for out-of-band notifications
    emd_from_email_address=
    # EMD main servlet URL
    EMD_URL=http://NSHCARE_SERVER:3938/emd/main
    # Whether the EMD should listen on all NICs on the current host (the default)
    # or just the NIC associated with the hostname in EMD_URL
    AgentListenOnAllNICs=TRUE
    # This parameter indicates the thread model to use. uncomment one of the
    # following ThreadPoolModel line to indicate the model, agent need to use.
    # SMALL if number of targets is less than 11.
    # MEDIUM if number of targets is from 11 to 50.
    # LARGE if number of targets is greater than 50.
    # This parameter can be overriden by 'MaxThreads' which indicates the maximum
    # number of threads that CEMD can have running at any point of time. User can
    # mostly use the other parameter ThreadPoolModel to indicate what model for the
    # agent to use.
    # ThreadPoolModel = SMALL
    # ThreadPoolModel = MEDIUM
    # ThreadPoolModel = LARGE
    # This parameter indicates the stack size, threads have to be created with.
    # we can set it to 0 to use the OS default value.
    # In some version of solaris(such as 2.9 ) specify a stack size may cause Java Hotspot warning
    # when JVM is used.
    NormalThreadStackSize=0
    #Signals that users want to ignore.
    #It can be one or combination of SIGTERM, SIGINT
    # The signals can listed with ',' as delimiter.
    #IgnoreSignals=
    # This property is NO LONGER USED for host config collection (instead, hostConfigClasspath is used).
    # If noone else uses it, it can be removed.
    ouiLoc=C:\oracle\product\10.2.0\db_1/oui
    # Classpath for host config collection
    # VERY IMPORTANT NOTE: If you change the host config classpath entries in this section, you HAVE
    # to change the HOST_CONFIG_TEST_CLASSPATH entry in the utl/emdwqaenv file too.
    # NOTE: if the location of emd_java.jar and/or log4j-core.jar is changed
    # make sure that appropriate changes are also made
    # to the CLASSPATH variable in this file if necessary
    # PORTING NOTE: Check OUI-required jar files for OUI APIs to work. They could be different on your platform.
    # Also, our version of xmlparserv2.jar must be compatible with the one OUI expects (both OUI and ECM use XML parser).
    hostConfigClasspath=C:\oracle\product\10.2.0\db_1/oui/jlib/xmlparserv2.jar;C:\oracle\product\10.2.0\db_1/oui/jlib/OraInstaller.jar;C:\oracle\product\10.2.0\db_1/oui/jlib/srvm.jar;C:\oracle\product\10.2.0\db_1/oui/jlib/share.jar;C:\oracle\product\10.2.0\db_1/sysman/jlib/emd_java.jar;C:\oracle\product\10.2.0\db_1/sysman/jlib/log4j-core.jar
    # JAVA HOME required for JavaExt metric calls
    JAVA_HOME=C:\oracle\product\10.2.0\db_1/jdk/jre
    # CLASSPATH required for JavaExt metric calls
    CLASSPATH=C:\oracle\product\10.2.0\db_1/sysman/jlib/emd_java.jar;C:\oracle\product\10.2.0\db_1/opmn/lib/ons.jar;C:\oracle\product\10.2.0\db_1/lib/xmlparserv2.jar;C:\oracle\product\10.2.0\db_1/sysman/jlib/log4j-core.jar;C:\oracle\product\10.2.0\db_1/oc4j/j2ee/home/lib/http_client.jar;C:\oracle\product\10.2.0\db_1/lib/dms.jar;C:\oracle\product\10.2.0\db_1/lib/dmsEmd.jar;C:\oracle\product\10.2.0\db_1/jlib/share.jar;C:\oracle\product\10.2.0\db_1/jdbc/lib/ojdbc14dms.jar;C:\oracle\product\10.2.0\db_1/jlib/jssl-1_1.jar;C:\oracle\product\10.2.0\db_1/jlib/javax-ssl-1_1.jar;C:\oracle\product\10.2.0\db_1/jlib/ojmisc.jar;C:\oracle\product\10.2.0\db_1/lib/em_test.jar;C:\oracle\product\10.2.0\db_1/jlib/ojmisc.jar;C:\oracle\product\10.2.0\db_1/jlib/repository.jar;C:\oracle\product\10.2.0\db_1/opmn/lib/optic.jar
    # this is the java option
    #JAVA_OPTIONS=-Xmx128m
    # These are the optional Java flags for the in-process Java
    # Native Interface (JNI)
    agentJavaDefines=-Doracle.dms.refresh.wait.time=1000 -DUrlTiming.UseJSSE=true
    # When set to true, the emd.log and emd.trc file will be appended by a pid
    # For example:
    # emd_15789.log
    # emd_15789.trc
    # By default, it is not set for regression test purpose.
    # After installed, please uncomment this line because when EMD is restarted,
    # previous log information will be lost if not set to true.
    #LogFileWithPID=true
    # Default log file maximum size before rolling in Kilobytes
    LogFileMaxSize=4096
    # Maximum number of log file roll files to maintain before deletion
    LogFileMaxRolls=4
    # Default trace file maximum size before rolling in Kilobytes
    TrcFileMaxSize=4096
    # Maximum number of trace file roll files to maintain before deletion
    TrcFileMaxRolls=4
    # To enable the metric browser, uncomment the following line
    # This is a reloadable parameter
    #enableMetricBrowser=true
    # To disable Remote operations (non-reachable agent) uncomment the following
    # line:
    #disableRemoteOperations=true
    # add an additional admin path from which the agent will read additional
    # target metadata. The specified path should have the mandatory 4 directories
    # under it. 1. metadata 2. scripts 3. default_collection 4. discover
    #altAdminPath=<additional admin path>
    # The health monitor executes callbacks in a separate thread. if for some
    # reason the threads spawned from health monitor to execute callbacks are
    # hung, the agent could run out of resource and freeze.
    # so when the current thread count spawned from the Health monitor reaches
    # this limit, the agent is bounced. the default is set to 5.
    #MaxHealthMonitorThreads=5
    # dynamicPropsComputeTimeout default to 30s
    dynamicPropsComputeTimeout=60
    # emagent perl tracing levels
    # supported levels: DEBUG, INFO, WARN, ERROR
    # default level is ERROR
    EMAGENT_PERL_TRACE_LEVEL=ERROR
    # other optional parameters for perl tracing
    # EMAGENT_PERL_TRACE_DIR default to $ORACLE_HOME/sysman/log
    #EMAGENT_PERL_TRACE_DIR=
    # EMAGENT_PERL_TRACE_FILESIZE default to 5M
    #EMAGENT_PERL_TRACE_FILESIZE=5
    # this section define the logging level for each component,
    # it is "reloadable", you can change the level at runtime to reset
    # the logging level, but if you remove the line, it will not be
    # changed.
    tracelevel.main=WARN
    tracelevel.emSDK.xml=WARN
    tracelevel.emSDK.utl=WARN
    tracelevel.ResMonitor=WARN
    tracelevel.Dispatcher=WARN
    tracelevel.ThreadPool=WARN
    tracelevel.pingManager=WARN
    tracelevel.collector=WARN
    tracelevel.http=WARN
    tracelevel.ssl=WARN
    tracelevel.ssl.io=WARN
    tracelevel.blackouts=WARN
    tracelevel.upload=WARN
    tracelevel.command=WARN
    tracelevel.reload=WARN
    tracelevel.scheduler=WARN
    tracelevel.Authentication=WARN
    tracelevel.metadata=WARN
    tracelevel.targets=WARN
    tracelevel.TargetManager=WARN
    tracelevel.engine=WARN
    tracelevel.javaproc=WARN
    tracelevel.vpxoci=WARN
    tracelevel.javavm=WARN
    tracelevel.fetchlets=WARN
    tracelevel.fetchlets.os=WARN
    tracelevel.fetchlets.osline=WARN
    tracelevel.fetchlets.oslinetok=WARN
    tracelevel.fetchlets.UDM=WARN
    tracelevel.fetchlets.sql=WARN
    tracelevel.fetchlets.url=WARN
    tracelevel.fetchlets.urllines=WARN
    tracelevel.fetchlets.urllinetoken=WARN
    tracelevel.fetchlets.URLTiming=WARN
    tracelevel.fetchlets.propEcho=WARN
    tracelevel.fetchlets.readFromFile=WARN
    tracelevel.fetchlets.readMultFromFile=WARN
    tracelevel.fetchlets.throwable=WARN
    tracelevel.fetchlets.resourceGrab=WARN
    tracelevel.fetchlets.emSDK=WARN
    # The following three properties are for HTTP timeout
    # Timeout value for reading Http primary header, default is 30 seconds.
    httpTimeoutPrimaryHeader=30
    # Timeout value for reading http secondary headers, default is 30 seconds
    httpTimeoutSecondaryHeaders=30
    # Timeout value for reading http body, default is 60 seconds.
    httpTimeoutBody=60
    omsRecvDir=C:\oracle\product\10.2.0\db_1\NSHCARE_SERVER_NS\sysman\recv
    agentTZRegion=Europe/Paris

Maybe you are looking for

  • Adobe Media Encoder won't run

    I can't seem to run my version of Adobe Media Encoder. I get an error which says C:\Program Files\Adobe\Adobe Media Encoder\ CC\MediaCoreUI.dll is either not designed to run on Windows or it contains an error. I have installed the latest update of th

  • Making mac book pro original have more horsepower?

    hello, i have a mac book pro original. i have it linked to my hdtv and i have been trying to play 1080p movies with it. at first i got through half the movie with no lag at all, and then there started to be some lagging problems where i'd have to clo

  • Date Stamp

    Is there a way to add a date stamp to a Lumia 820 photo? If not can Nokia include such functionality in the next update?

  • How to do Commitment item carryforward (Fund Management) ?

    Dear experts, Please guide me how to do commitment item carryforward. I've read thought SAP help, it said I need to do commitment item carryforward. But I have no idea, what's the transaction code, what parameter to fill in.. Kindly guide me or send

  • Reading chars in a String

    hi. very new here. Just say I had a String bla= "This is a messge" How would I break the sentence down and find all the single chars, like if(see letter 'i' in this string) then (add one to int vowels or somethin)