Sys.deferror : invalid ...

Hi all,
I am doing replication for my Oracle 10g r2 server. while installing on one of the servers i ran the catrep.sql which told some views erronous. one such view is sys.deferror. Now when i watch the definition of the view it refers to a table which is not existing. Now i want to know that is there some package needed to install explicitly for replication to activate or its there by default ?
I read a lots of replication docs .... we have some preexisting scripts that we ran on 8.1.7 earlier . now we are having 10g. So replication needs to be setup on it ........ but the deferror view is showing errors ... even recompiling also didn't work ....
Any help is appreciated
-Ankur

I manually created my DB....Did you run CATALOG.SQL and CATPROC.SQL scripts after you created the database?
This is the o/p of the query u told ....
OWNER TABLE_NAME STATUS
SYSTEM DEF$_TEMP$LOB VALID
SYSTEM DEF$_PUSHED_TRANSACTIONS VALID
SYSTEM DEF$_PROPAGATOR VALID
SYSTEM DEF$_LOB VALID
SYSTEM DEF$_AQERROR VALID
SYSTEM DEF$_AQCALL VALIDThere are five more objects missing:
SYSTEM.DEF$_ORIGIN
SYSTEM.DEF$_ERROR
SYSTEM.DEF$_DESTINATION
SYSTEM.DEF$_DEFAULTDEST
SYSTEM.DEF$_CALLDEST
These tables are created by catdefrt.sql script located in <ORACLE_HOME>/rdbms/admin directory. This script is invoked by catdefer.sql which is invoked by catproc.sql.
Therefore you either didn’t run catproc.sql after you created the database, or you ran it, but it didn’t go well.
where can i read this metalink ????Metalink is Oracle Web Support Portal. In order to use it your company must have Support Contract with Oracle. URL: http://metalink.oracle.com
Other Info: http://www.oracle.com/support/premier/metalink.html
If you haven’t ran CATPROC.SQL yet, you have to make sure you run this script. This script invokes CATREP.SQL. The same applies for CATALOG.SQL (run it before CATPROC.SQL).
If you are sure you have ran CATALOG.SQL and CATPROC.SQL after you created the database, you may just run CATDEFER.SQL followed by CATREP.SQL
Before you do anything, you have to answer the following questions and be aware of some restrictions:
Is this database your production database?
If yes, then if you decide to run CATPROC.SQL, you have to do it very carefully.
Also it is important to know that running catproc will require some downtime because no users should be connected to the database while running the script. (the best way to ensure that no one is connected is to start the database in restricted mode)
Again, if we are talking about production system here, you have to think about database availability.
If this is not your production database, than you just have to make sure no other users are connected to the database when you run the script.
In any case, make sure you run each of the scripts connected as SYS.
If you haven’t ran CATALOG.SQL neither, you make sure you run it before you run CATPROC.SQL
These scripts are essential to build Data Dictionary Views after the database has been created manually.
For more info refer to http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm#sthref254
Once you make sure CATALOG.SQL and CATPROC.SQL scripts ran correctly, that should be enough since CATPROC.SQL invokes CATREP.SQL (starting from 9i).
During the execution, you may get errors that many of the objects already exist, which can be ignored.
Once you have all of the scripts ran, you have to run UTLRP.SQL script to recompile the invalid objects, if any.
All of the scripts I mentioned are located in <ORACLE_HOME>/rdbms/admin directory.
And again, if the database is the production one, make sure you know what you are doing, otherwise ask some experienced DBA for help, or contact Oracle Support (Metalink) and of course read the docs.
--Mihajlo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Sys packages invalid

    in oracle 9i some sys packages become invalid give solution

    Did you try recompiling them with utlrp.sql script??
    Count the number of invalid packages before and after running this script.
    Default location of this file is as follows.
    Windows: %ORACLE_HOME%/rdbms/admin/utlrp.sql
    Unix/Linux: $ORACLE_HOME/rdbms/admin/utlrp.sql
    Regards,
    Sabdar Syed.

  • Some Objects owned by SYS became invalid due wrong deletion from OBJ$ table

    Hi,
    While cleaning up streams from source database,we have found some rules and stream queue name was still present, so we tried to delete those records from obj$ table, but by mistake we have deleted all records from obj$ table related to streams.Actually we executed the following sql statement:
    DELETE FROM OBJ$ WHERE NAME LIKE '%STREAM%';COMMIT;
    For this fault some problem arrise.After this we have found lots of SYS owner objects (VIEW,PACKAGE,TYPE) are become invalid.This situation happened in a remote database.For this remote database there is missing a TYPE "AQ$_JMS_STREAM_MESSAGE".
    We have created a dummy database in local and executed the same delete statement, and after this We have executed (after shutdown immediate & startup migrate)catpatch.sql & (after shutdown immediate & startup) utlrp.sql but still there are some objects exists invalid.
    e.g. one object is "_DBA_APPLY_ERROR" which is invalid.While I have tried to open the table "APPLY$_ERROR" for this view it showing an error message "ORA-00600: internal error code, arguments: [kkdlusr1], [30813], [], [], [], [], [], []"
    We are using ORACLE 9.2.0.5 and Windows XP for our work.
    Now please tell me what is it`s remedy.
    Thanks in advance.

    I had exec utlirp.sql..
    Well you were asked to run utlrp.sql. I can't speak about the time that it will take to get complete. For the invalid objects, there are two ways to make them valid,one run utlrp.sql and see how many become valid and the other ( painful one) is to manually look for the errors in their compilation and sort it out.
    Aman....

  • Sys package invalid !!!

    hey gurus
    i'm facing a starnge problem , it's showing all packages of sys schema as in valid . i try to run
    exec dbms_stats.export_schema_stats('SCHEMANAME', 'STATS_BKP_SCHEMA', sysdate, 'PRODD');
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "SYS.DBMS_STATS", line 5173
    ORA-06512: at "SYS.DBMS_STATS", line 5185
    ORA-06512: at "SYS.DBMS_STATS", line 5587
    ORA-06512: at line 1
    following is thelist of invalid objects
    DBMS_AQ
    DBMS_AQADM
    DBMS_AQJMS_INTERNAL
    DBMS_AQ_EXP_QUEUES
    DBMS_AQ_EXP_ZECURITY
    DBMS_AQ_IMPORT_INTERNAL
    DBMS_AQ_SYS_EXP_ACTIONS
    DBMS_AQ_SYS_IMP_INTERNAL
    DBMS_CAPTURE_ADM_INTERNAL
    DBMS_CAPTURE_PROCESS
    DBMS_DDL_INTERNAL
    DBMS_DEFER
    DBMS_DEFERGEN
    DBMS_DEFERGEN_AUDIT
    DBMS_DEFERGEN_AUDIT
    DBMS_DEFERGEN_INTERNAL
    DBMS_DEFERGEN_INTERNAL
    DBMS_DEFERGEN_LOB
    DBMS_DEFERGEN_LOB
    DBMS_DEFERGEN_PRIORITY
    DBMS_DEFERGEN_RESOLUTION
    DBMS_DEFERGEN_RESOLUTION
    DBMS_DEFERGEN_UTIL
    DBMS_DEFERGEN_WRAP
    DBMS_DEFERGEN_WRAP
    DBMS_DEFER_IMPORT_INTERNAL
    DBMS_DEFER_INTERNAL_SYS
    DBMS_DEFER_QUERY_UTL
    DBMS_DEFER_REPCAT
    DBMS_DEFER_SYS
    DBMS_DEFER_SYS_PART1
    DBMS_DESCRIBE
    DBMS_IAS_CONFIGURE
    DBMS_IAS_INST_UTL_EXP
    DBMS_IAS_QUERY
    DBMS_IAS_SESSION
    DBMS_ITRIGGER_UTL
    DBMS_LOGREP_EXP
    DBMS_LOGREP_IMP_INTERNAL
    DBMS_LOGSTDBY
    DBMS_PROPAGATION_ADM
    DBMS_REDEFINITION
    DBMS_REGXDB
    DBMS_REPCAT_INSTANTIATE
    DBMS_REPCAT_RGT_ALT
    DBMS_REPCAT_RGT_CHK
    DBMS_REPUTIL2
    DBMS_SNAP_REPAPI
    DBMS_SNAP_REPAPI
    DBMS_STATS
    DBMS_STATS_INTERNAL
    DBMS_SUMMARY
    DBMS_SUMVDM
    INITJVMAUX
    LTAQ
    LTPRIV
    LT_CTX_PKG
    LT_EXPORT_PKG
    LT_REPLN
    OWA_TEXT
    OWM_MIG_PKG
    OWM_REPUTIL
    Please suggest sometthing
    p.s. database is running fine so far
    Thanks

    try to recompile with the ?/rdbms/admin/utlrp.sql script. This should set all sys packages in a valid status. If problem persists, it means somehow your data dictionary is inconsistent and you may need to run the catproc.sql script.
    ~ Madrid

  • Executing security_pkg.create_secu_owner causes sys objects invalid?

    Hi everyone,
    Just trying to confirm.
    We've been investigating why the SYS owned UTL_FILE and other packages suddenly became invalid on the database (9.2.0.5)
    The only activiy we can find based on the audit logs during the time when the utl_file became invalid is this command:
    BEGIN security_pkg.create_secu_owner('XXXXXX','aaaaa'); END;
    *input parameters have been changed for security purposes.
    can executing the security_pkg.create_secu_owner really cause the UTL_FILE to become invalid?
    thanks,

    I had exec utlirp.sql..
    Well you were asked to run utlrp.sql. I can't speak about the time that it will take to get complete. For the invalid objects, there are two ways to make them valid,one run utlrp.sql and see how many become valid and the other ( painful one) is to manually look for the errors in their compilation and sort it out.
    Aman....

  • Sys Password invalid 11g

    During installation I selected the "Same Password for All SYS" option & typed it in....twice.
    So Now I'm runnin SQL-Plus I try to sign in as Sys....its says I need to signin as SysDBA or SysOper. Well, Ok.
    But using those names (Ucase, Lcase, Mixed) my password/ login is invalid.
    I SWEAR I typed the password correctly,
    As a matter of fact, when I login to the DataBase Control as Sys (doesn't seem to mind that name here rolleyes)
    the password works & lets me in.
    Unfortunately from there I can't seem to do anything except make a new Administrator.
    My Administrator user "Bob" lets me signin to SQL Plus, but I can't create tables or change or grant any privileges ......so....
    How can I get logged in as SYS(DBA)???? And grant priveleges to "Bob"???
    Is there a GUI for Oracle?

    I get the 12560: TNS Protocol error on ALL login attempts when I start the Command Prompt from the Accessories menu.
    I don't know how to copy from the Command Prompt window short of an entire PrintScreen....trust me, it says "12560 TNS Protocol Error"
    I tried "cd .." -ing back to the C:\ (it starts in the "Docs & Settings\Me" dir), that didn't help...the command prompt is missing an environment or path variable or sumpin that "looks" in the right place to "see" the database instance.
    I don't have that problem when i use the SQLPlus Shortcut in the OraHome start menu....logs "Bob" right in & I get the <SQL> prompt.
    BUT....
    That instance of the command prompt is "already in" SQL Plus because the very first prompt I get is "Enter Username:" (no place to type the "SQLPLUS User/pwd as sysdba"....)
    However.....
    I went back into the "Database Control" app (logged in w/ "sys" and the original pwd...stupid thing...works there), and under "Server" I found "Users" and the ability to edit roles and DB access there....so I gave Bob the
    DBA Role and assigned him USER tablespace & some privileges that let me create tables etc...so....
    ...even though my sysdba/pwd doesn't work from the SQLPLUS prompt, it DOES work lettin me into the Database Control app from which I can get my needs met.
    I'm still flumuxed as to why I can get into Database Control, but I can't sysdba/pwd into the SQLPLUS....moot point now, just ..... wierd.
    If you're tired of me I can call this "Answered", but if you wanna help me figure out how to get the sysdba login to work via SQL PLUS I'd certainly appreciate it.
    The main discrepancy is this:
    The Accessories-> Command prompt is DIFFERENT than the command prompt i get from the OraHome->Application Development ->SqlPlus shortcut.

  • SYS packages are invalid in oracle 10g (10.2.0.4)

    I am using Oracle 10g (10.2.0.4) in AIX 6.1 server . According to OEM advice I remove the 'utl_file' privelege
    from PUBLIC user . In that moment I get some packages of the 'SYS' schema invalid . I again give the
    grant permission of the 'UTL_FILE' to PUBLIC user but packages of the SYS schema are remain invalid .
    I compile the packages several times but the problem in not solved . If one package make valid
    then other package goes to INVALID during compiling . In this moment, How can I Enable the
    SYS user's package .The problem is related only with the packages & views now ...
    Would anybody plz help me now ...

    shipon_97 wrote:
    I am using Oracle 10g (10.2.0.4) in AIX 6.1 server . According to OEM advice I remove the 'utl_file' privelege
    from PUBLIC user . In that moment I get some packages of the 'SYS' schema invalid . I again give the
    grant permission of the 'UTL_FILE' to PUBLIC user but packages of the SYS schema are remain invalid .
    I compile the packages several times but the problem in not solved . If one package make valid
    then other package goes to INVALID during compiling . In this moment, How can I Enable the
    SYS user's package .The problem is related only with the packages & views now ...
    Would anybody plz help me now ...Try compiling all the objects with "UTLRP.sql" on the server, then check invalid objects.
    conn / as sysdba
    @?/rdbms/admin/utlrp.sql Regards
    Z.K.
    http://oracleendeavor.blogspot.com/

  • Packages sys invalid after upgrade

    Hi,
    I migrate version 8.1.7.3 to 9.2.0.2 and after this operation some package sys are
    invalid.
    What operations is necessary to validate this package.
    Regards

    Have you tried manually compiling any of the objects?
    If yes, is there any error thrown?

  • Package Body SYS.DBMSOBJG - status invalid

    I have created two database version 8.1.7.0.0 on WindowsNT 4.0 SP5.
    One package body DBMSOBJG under SYS is invalid and the status remains same even after compilation. The source is wrapped. How can i turn it to valid. Till time i have not experienced any problem with database but don't know the future implecations because of this invalid package body.
    Regards

    Pl detail how you upgraded to EE version
    https://docs.oracle.com/cd/E11882_01/server.112/e23633/intro.htm#UPGRD12355

  • How can i Make sys's java classes valid?

    I use Oracle 8.1.8.
    All the java classes in sys are invalid.
    How can I make it valid?
    thanks!

    Dear Chris,
    Sorry to disturb you.
    As I didn't browse Metalink yet, How could I browse METALINK With below Category?
    Thanks in advance,
    Orahar.

  • WebDB - SYS password problem

    My platform:
    RH6.0
    8.0.5.1 -Standard - with patches
    probably - WEBDB 2.0.5 ;-)
    I ran into the same problem that every one seems to be running
    into - SYS password invalid. I was trying to install WEBDB into a
    different home from 8.0.5.
    - I bet that all of us were trying to install WEBDB into a
    different home from 8.0.5 .
    - As soon as took the default $ORACLE_HOME, the install zoomed
    forward. ( actually still going on ). If this is going to screw
    up the DB , thats another story.
    -JUST AN OBSERVATION FROM A UNIX ADMIN -
    - NN
    null

    Michael Hasenstein (SuSE) (guest) wrote:
    : doomy (guest) wrote:
    : : WebDB specially says to install under 8i in a directory other
    : : than ORACLE_HOME.
    : Doesn't matter. You can/should have ORACLE_HOME set to your real
    : oracle home anyway - the Oracle installer detects the presence
    of
    : 8i and installs everything under $ORACLE_HOME/webdb/ in this
    : case, so this is already done automatically! Look at the .dei,
    : .vrf,.. files for orainst, look for "8i", and check the
    : installation code, if you don't believe me.
    This is probably why I'm getting the errors about
    tablespaces.1st. I'll
    try this on our database box and see if it works. BTW, is ther
    SuSE specific
    patches in your distribution of oracle/webdb?
    null

  • Unable to create EM repository in 10g RAC - 2 nodes (Windows)

    Hi,
    I am trying to configure Enterprise Manager via command prompt since it failed while creating the database through DBCA. I have a two node cluster running oracle 10g (10.2.0.2) on Windows 2003 x64.
    I could get something in metalink related to emca not accepting sysman and dbsnmp password. But there is no info regarding sys user. Also, it seems that the emca is not able to access the nodes the cluster properly. All my Oracle services are running. PING to all IPs are fine. TNSPING to both instances are fine. The load balancing is happening properly . remote_listener and local_listener are configured properly in each instance.
    Here is the output:
    C:\Documents and Settings\produser>emca -repos create -cluster
    STARTED EMCA at Dec 31, 2007 09:15:30 AM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database unique name: PRDDB
    Listener port number: 1521
    Password for SYS user:
    Dec 31, 2007 09:15:43 AM oracle.sysman.emcp.ParamsManager getInaccessibleNodeList
    WARNING: The following cluster nodes are unavailable: [node1, node2].
    Dec 31, 2007 09:15:43 AM oracle.sysman.emcp.ParamsManager getInaccessibleSidList
    WARNING: The requested operation will not be performed for the following instanc
    es: [PRDDB1, PRDDB2].
    Invalid username/password.
    Password for SYS user:
    Invalid username/password.
    Password for SYS user:
    Invalid username/password.
    -Thanks
    Please help. This is a production box.
    Message was edited by:
    user487209
    Message was edited by:
    user487209

    try emca -config dbcontrol db -repos create -cluster

  • DB Upgrade+Migrate from 10.1 to 11.2 using IMPDP with network_link param

    Dear all,
    I would like to upgrade and migrate my 10.1.0.5 DB on old server to 11.2.0.2 on new server.
    Here is the background info:
    Old server:
    OS : Redhat Linux AS 2.1
    DB Version : 10.1.0.5 (32 bit)
    No RAC
    New Server:
    OS : OEL 5.5
    DB Version : 11.2.0.2
    RAC
    ASM
    What I have done so far:
    1. Create new clustered 11Gr2 DB on new server.
    2. Pre-create tablespaces on new DB.
    3. Migrate 10.1.0.5 to 11.2.0.2 using IMPDP.
    impdp system/******* DIRECTORY=dump_file_dir NETWORK_LINK=DWH_DBLINK LOGFILE=log_file_dir:DWH_import_20110621.log FULL=Y SERVICE_NAME=dwhdb.xxx.xxx TABLE_EXISTS_ACTION=replace cluster=N exclude=statistics
    4. After IMPDP complete, invalid objects and components are found, run utlrp.sql no help
    SQL> select owner, count(*) from dba_objects where status = 'INVALID' group by owner;
    OWNER COUNT(*)
    WKSYS 16
    PUBLIC 12
    OLAPSYS 7
    ODM 21
    SYS 2
    WMSYS 11
    12 rows selected.
    SQL> select comp_name, status, version from dba_registry;
    COMP_NAME STATUS VERSION
    OWB VALID 11.2.0.2.0
    Oracle Application Express VALID 3.2.1.00.12
    Oracle Enterprise Manager VALID 11.2.0.2.0
    OLAP Catalog VALID 11.2.0.2.0
    Spatial VALID 11.2.0.2.0
    Oracle Multimedia VALID 11.2.0.2.0
    Oracle XML Database VALID 11.2.0.2.0
    Oracle Text VALID 11.2.0.2.0
    Oracle Expression Filter VALID 11.2.0.2.0
    Oracle Rules Manager VALID 11.2.0.2.0
    Oracle Workspace Manager INVALID 11.2.0.2.0
    Oracle Database Catalog Views VALID 11.2.0.2.0
    Oracle Database Packages and Types INVALID 11.2.0.2.0
    JServer JAVA Virtual Machine VALID 11.2.0.2.0
    Oracle XDK VALID 11.2.0.2.0
    Oracle Database Java Packages VALID 11.2.0.2.0
    OLAP Analytic Workspace VALID 11.2.0.2.0
    Oracle OLAP API VALID 11.2.0.2.0
    Oracle Real Application Clusters VALID 11.2.0.2.0
    19 rows selected.
    5. Check SYS's invalid objects, e.g. DBA_OUTLINE_HINTS, after tracing the reason, find outln.ol$hints is replaced by 10.1.0.5 version. I think it is due to the IMPDP's "TABLE_EXISTS_ACTION=replace" parameter.
    Others invalid objects like WMSYS.WM$ENV_VARS, also replaced by old version.
    What should I do now?
    Do I need to run upgrade script after DB migration using IMPDP?
    Is the migration procedure correct?
    Please advise
    Thanks in advance

    Hi,
    It looks like you've messed up the Non User (Oracle default user) data and/or metadata i.e sys, system, wksys.
    How many non Oracle default user do you have? and how big is the database? If you're using this method I'm assuming the data is not really big.
    I personally will not do full export/ import across different version, its better to just export the non default Oracle user schema as you might ended up messed up the sys objects, etc
    What you might do is
    - drop the 11g database and start from beginning again but exclude Oracle default user e.g sys,system, etc
    - or try run catupgrd.sql script (this will drop and recreate the objects), -this may or may not be fixing your invalid components
    Cheers

  • 11g1 installed but error starting/installing emca

    I've seen no instruction in the docs that says to create any environment variable like
    ORACLE_HOME. In one of the messages it syas that the script created ORACLE_HOME but
    ORACLE_HOME does not appear in the environment. YES I have rebooted!
    The path was augmented by the oracle BIN directory during the initial install.
    BTW I did add ORACLE_HOSTNAME to the environment. I specified that it be my computer name.
    Question is : what do I do to fix this error???
    I did as standard an install as I could but...
    (1) installed 11g1 on Win XP Pro SP3.
    (2) 11g1 database is working through
    (a) command line sqlplus
    (b) PHP
    (c) OCI C++ program
    (3) install error :
    EM config failed due to the following error:
    Error starting database control
    log file:
    C:\app\landonkelsey\cfgtoollogs\dbca\LMKIIIGDN\emConfig.log
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.util.CentralAgentUtil getURLAndCentralAgentHome
    CONFIG: URL and Central Agent home : {}
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.util.CentralAgentUtil getCentralAgentHomeAndURL
    CONFIG: Central Agent home and URL: {}
    Sep 19, 2009 3:40:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 4:01:59 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    Sep 19, 2009 4:01:59 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    Sep 19, 2009 4:01:59 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    Sep 19, 2009 4:01:59 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    Sep 19, 2009 4:01:59 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    Sep 19, 2009 4:01:59 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LOG_FILE value: C:\app\landonkelsey\cfgtoollogs\dbca\LMKIIIGDN\emConfig.log
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: HOST value: landon
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: LMKIIIGDNSID
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LISTENER value: LISTENER
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LISTENER_OH value: C:\app\landonkelsey\product\11.1.0\db_1
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: C:\app\landonkelsey\product\11.1.0\db_1
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: LMKIIIGDN
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: LMKIIIGDN
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: C:\app\landonkelsey\product\11.1.0\db_1
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to false
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-backup' set to false
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'create' set to false
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :C:\app\landonkelsey
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\landonkelsey\cfgtoollogs\emca\emca_2009_09_19_15_40_04.log to C:\app\landonkelsey\cfgtoollogs\emca\LMKIIIGDN\emca_2009_09_19_15_40_04.log
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\app\landonkelsey\cfgtoollogs\dbca\LMKIIIGDN\emConfig.log.
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Sep 19, 2009 4:02:04 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 19, 2009 4:02:08 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:08 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: DBSNMP
    Sep 19, 2009 4:02:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 19, 2009 4:02:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 19, 2009 4:02:12 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:12 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Sep 19, 2009 4:02:12 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 19, 2009 4:02:12 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Sep 19, 2009 4:02:12 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: LMKIIIGDN
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: LMKIIIGDN
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: LMKIIIGDN
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    Sep 19, 2009 4:02:13 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 19, 2009 4:02:14 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:16 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 2720994149
    Sep 19, 2009 4:02:16 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYSMAN
    Sep 19, 2009 4:02:16 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:16 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:02:22 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:02:22 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 19, 2009 4:02:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Sep 19, 2009 4:02:25 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Sep 19, 2009 4:02:26 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: LMKIIIGDN
    Sep 19, 2009 4:02:26 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties to C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp
    Sep 19, 2009 4:02:26 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties has been copied to C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp
    Sep 19, 2009 4:02:27 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emoms.properties to C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emoms.properties.emca.tmp
    Sep 19, 2009 4:02:27 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emoms.properties has been copied to C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emoms.properties.emca.tmp
    Sep 19, 2009 4:02:27 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster.isCluster: false. Skip call to getLocalNode
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_RECONFIG' set to false
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: LMKIIIGDNSID Host: landon Node: null OH: C:\app\landonkelsey\product\11.1.0\db_1 agentHome: null isCentral: false
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: LMKIIIGDNSID Host: landon Node: null OH: C:\app\landonkelsey\product\11.1.0\db_1 isDBC: false
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_CONFIGURED' set to false
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_DBCONTROL_CONFIGURED' set to false
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: LMKIIIGDNSID Host: landon Node: null OH: C:\app\landonkelsey\product\11.1.0\db_1 isDBC: false
    Sep 19, 2009 4:02:28 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter PORTS_FILE.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_LMKIIIGDNSID.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_LMKIIIGDNSID.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_LMKIIIGDNSID.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_LMKIIIGDNSID.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\app\landonkelsey\product\11.1.0\db_1\oui
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [C:\app\landonkelsey\product\11.1.0\db_1]
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME C:\app\landonkelsey\product\11.1.0\db_1
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from C:\app\landonkelsey\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from C:\app\landonkelsey\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Sep 19, 2009 4:02:29 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from C:\app\landonkelsey\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: 5540 from C:\app\landonkelsey\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_landon_LMKIIIGDNSID
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: 5520 from C:\app\landonkelsey\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_landon_LMKIIIGDNSID
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: 1158 from C:\app\landonkelsey\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_landon_LMKIIIGDNSID
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file C:\app\landonkelsey\product\11.1.0\db_1\install\staticports.ini
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.util.PortManager getFreePorts
    CONFIG: C:\app\landonkelsey\product\11.1.0\db_1:landon:null:LMKIIIGDNSID:{}:null:{DBCONTROL_HTTP_PORT=1158, RMI_PORT=5521, JMS_PORT=5541, AGENT_PORT=3938}
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_LMKIIIGDNSID.
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: AGENT_PORT_LMKIIIGDNSID value: 3938
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_LMKIIIGDNSID.
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBCONTROL_HTTP_PORT_LMKIIIGDNSID value: 1158
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_LMKIIIGDNSID.
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: JMS_PORT_LMKIIIGDNSID value: 5541
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_LMKIIIGDNSID.
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: RMI_PORT_LMKIIIGDNSID value: 5521
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.EMDBPreConfig getFreePorts
    CONFIG: Ports assigned for SID: LMKIIIGDNSID : {DBCONTROL_HTTP_PORT=1158, RMI_PORT=5521, JMS_PORT=5541, AGENT_PORT=3938}
    Sep 19, 2009 4:02:30 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:02:31 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Sep 19, 2009 4:02:31 PM oracle.sysman.emcp.EMDBPreConfig copyAgentTimeStampFile
    CONFIG: File: C:\app\landonkelsey\product\11.1.0\db_1\landon_LMKIIIGDNSID\sysman\emd\agntstmp.txt:landon does not exists.
    Sep 19, 2009 4:02:31 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 19, 2009 4:02:32 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:02:32 PM oracle.sysman.emcp.EMReposConfig unlockAccounts
    CONFIG: Unlocking dbsnmp and sysman
    Sep 19, 2009 4:02:32 PM oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Successfully unlocked relevant accounts
    Sep 19, 2009 4:02:32 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYSMAN
    Sep 19, 2009 4:02:33 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:05:28 PM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Finished executing emreposoutofbox.sql
    Sep 19, 2009 4:05:29 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYSMAN
    Sep 19, 2009 4:05:30 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:05:30 PM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Submitting dbms job: C:\app\landonkelsey\product\11.1.0\db_1\sysman\admin\emdrep\sql\core\latest\admin\admin_submit_dbms_jobs.sql
    Sep 19, 2009 4:05:30 PM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Successfully submitted dbms job
    Sep 19, 2009 4:05:30 PM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Unlocking mgmt view user account
    Sep 19, 2009 4:05:30 PM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: view user sql: declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    Sep 19, 2009 4:05:30 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: CMD /C C:\app\landonkelsey\product\11.1.0\db_1\sysman\admin\scripts\emca\emcaDbUtil.bat "C:\app\landonkelsey\product\11.1.0\db_1\sysman\admin\scripts;C:\app\landonkelsey\product\11.1.0\db_1\bin;" C:/app/landonkelsey/product/11.1.0/db_1/perl/5.8.3/bin/MSWin32-x86-multi-thread\perl.exe C:\app\landonkelsey\product\11.1.0\db_1\sysman\admin\scripts\emca\emcaDbUtil.pl C:\app\landonkelsey\product\11.1.0\db_1 LMKIIIGDNSID SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    Sep 19, 2009 4:05:59 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 0
    Sep 19, 2009 4:05:59 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Execution of CMD /C C:\app\landonkelsey\product\11.1.0\db_1\sysman\admin\scripts\emca\emcaDbUtil.bat "C:\app\landonkelsey\product\11.1.0\db_1\sysman\admin\scripts;C:\app\landonkelsey\product\11.1.0\db_1\bin;" C:/app/landonkelsey/product/11.1.0/db_1/perl/5.8.3/bin/MSWin32-x86-multi-thread\perl.exe C:\app\landonkelsey\product\11.1.0\db_1\sysman\admin\scripts\emca\emcaDbUtil.pl C:\app\landonkelsey\product\11.1.0\db_1 LMKIIIGDNSID SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD completed successfully
    Sep 19, 2009 4:05:59 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Arguments passed C:\app\landonkelsey\product\11.1.0\db_1 LMKIIIGDNSID SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    Connecting to database LMKIIIGDNSID in home C:\app\landonkelsey\product\11.1.0\db_1 with user "SYS" role "SYSDBA".
    connected to database.
    sql to execute declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    noOfParams to bind: 1.
    sql execute successfully.
    Sep 19, 2009 4:05:59 PM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Unlocked mgmt_view account
    Sep 19, 2009 4:05:59 PM oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Successfully unlocked mgmt_view account
    Sep 19, 2009 4:05:59 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:05:59 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYSMAN
    Sep 19, 2009 4:05:59 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 19, 2009 4:06:01 PM oracle.sysman.emcp.ParamsManager checkListenerStatusForDBControl
    CONFIG: Passed listener validation check.Listener is up and running.
    Sep 19, 2009 4:06:01 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 19, 2009 4:06:01 PM oracle.sysman.emcp.EMReposConfig uploa

    from another post I tried: (Enterprise Manaer Configuration failed
    C:\>emca -config dbcontrol db
    STARTED EMCA at Sep 21, 2009 7:51:32 PM
    EM Configuration Assistant, Version 11.1.0.5.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: LMKIIIGDNSID
    Listener port number: 1521
    Password for SYS user: Terminate batch job (Y/N)? n
    C:\>emca -config dbcontrol db
    STARTED EMCA at Sep 21, 2009 7:53:24 PM
    EM Configuration Assistant, Version 11.1.0.5.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: LMKIIIGDNSID
    Listener port number: 1521
    Password for SYS user:
    Password for SYS user: Invalid username/password.
    Password for SYS user:
    Password for DBSNMP user:
    Invalid username/password.
    Password for DBSNMP user:
    Password for SYSMAN user:
    Password for SYSMAN user: Email address for notifications (optional): [email protected]
    Outgoing Mail (SMTP) server for notifications (optional):
    You have specified the following settings
    Database ORACLE_HOME ................ C:\app\landonkelsey\product\11.1.0\db_1
    Local hostname ................ landon
    Listener port number ................ 1521
    Database SID ................ LMKIIIGDNSID
    Email address for notifications ............... [email protected]
    Outgoing Mail (SMTP) server for notifications ...............
    Do you wish to continue? [yes(Y)/no(N)]: y
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\app\landonkelsey\cfgtoollogs\emca\LMKIIIGDN\emca_2009_09_21_19_53_24.log.
    Sep 21, 2009 7:55:29 PM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    Sep 21, 2009 8:02:26 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    Sep 21, 2009 8:02:29 PM oracle.sysman.emcp.util.FileUtil modifyPortValuesInXML
    SEVERE: Error writing file C:\app\landonkelsey\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_landon_LMKIIIGDNSID\config\rmi.xml
    Sep 21, 2009 8:02:29 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error instantiating OC4J configuration files
    Refer to the log file at C:\app\landonkelsey\cfgtoollogs\emca\LMKIIIGDN\emca_2009_09_21_19_53_24.log for more details.
    Could not complete the configuration. Refer to the log file at C:\app\landonkelsey\cfgtoollogs\emca\LMKIIIGDN\emca_2009_09_21_19_53_24.log for more details.
    here is the file: (showing ORACLE_HOSTNAME no defined...it has been defined for days
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to true
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: C:\app\landonkelsey\product\11.1.0\db_1
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Sep 21, 2009 7:53:24 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 21, 2009 7:53:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: C:\app\landonkelsey\product\11.1.0\db_1
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: LMKIIIGDNSID
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster.isCluster: false. Skip call to getLocalNode
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: LMKIIIGDNSID Host: landon Node: null OH: C:\app\landonkelsey\product\11.1.0\db_1 isDBC: false
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: LMKIIIGDNSID Host: landon Node: null OH: C:\app\landonkelsey\product\11.1.0\db_1 agentHome: null isCentral: false
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: LMKIIIGDNSID Host: landon Node: null OH: C:\app\landonkelsey\product\11.1.0\db_1 agentHome: null isCentral: false
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Sep 21, 2009 7:53:33 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user:
    Sep 21, 2009 7:53:34 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-01031: insufficient privileges
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01031: insufficient privileges
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:853)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:364)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:106)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:148)
         at oracle.sysman.emcp.DatabaseChecks.isASMDb(DatabaseChecks.java:720)
         at oracle.sysman.emcp.EMConfigAssistant.getParamsWarnsList(EMConfigAssistant.java:1982)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2725)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Sep 21, 2009 7:53:34 PM oracle.sysman.emcp.DatabaseChecks isASMDb
    CONFIG: Database instance unavailable.
    oracle.sysman.emcp.exception.DatabaseUnavailableException: Database instance unavailable.
         at oracle.sysman.emcp.DatabaseChecks.throwDBUnavailableException(DatabaseChecks.java:136)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:129)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:148)
         at oracle.sysman.emcp.DatabaseChecks.isASMDb(DatabaseChecks.java:720)
         at oracle.sysman.emcp.EMConfigAssistant.getParamsWarnsList(EMConfigAssistant.java:1982)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2725)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Sep 21, 2009 7:53:34 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Sep 21, 2009 7:53:38 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Sep 21, 2009 7:53:43 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Sep 21, 2009 7:53:43 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:53:44 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-01031: insufficient privileges
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01031: insufficient privileges
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:853)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:364)
         at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1040)
         at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:2885)
         at oracle.sysman.emcp.EMConfigAssistant.promptForData(EMConfigAssistant.java:641)
         at oracle.sysman.emcp.EMConfigAssistant.promptForParams(EMConfigAssistant.java:2680)
         at oracle.sysman.emcp.EMConfigAssistant.displayWarnsAndPromptParams(EMConfigAssistant.java:2706)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2733)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Sep 21, 2009 7:53:56 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Sep 21, 2009 7:53:56 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:53:57 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:54:06 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: DBSNMP
    Sep 21, 2009 7:54:06 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-01017: invalid username/password; logon denied
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01017: invalid username/password; logon denied
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:853)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:805)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:360)
         at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1040)
         at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:2885)
         at oracle.sysman.emcp.EMConfigAssistant.promptForData(EMConfigAssistant.java:641)
         at oracle.sysman.emcp.EMConfigAssistant.promptForParams(EMConfigAssistant.java:2680)
         at oracle.sysman.emcp.EMConfigAssistant.displayWarnsAndPromptParams(EMConfigAssistant.java:2706)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2733)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Sep 21, 2009 7:54:06 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:54:07 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:54:07 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: DBSNMP
    Sep 21, 2009 7:54:07 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-01017: invalid username/password; logon denied
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01017: invalid username/password; logon denied
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:853)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:805)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:360)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:385)
         at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1080)
         at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:2885)
         at oracle.sysman.emcp.EMConfigAssistant.promptForData(EMConfigAssistant.java:641)
         at oracle.sysman.emcp.EMConfigAssistant.promptForParams(EMConfigAssistant.java:2680)
         at oracle.sysman.emcp.EMConfigAssistant.displayWarnsAndPromptParams(EMConfigAssistant.java:2706)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2733)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1010)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    Sep 21, 2009 7:54:24 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: DBSNMP
    Sep 21, 2009 7:54:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:54:30 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYSMAN
    Sep 21, 2009 7:54:30 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:54:41 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EMAIL_ADDRESS value: [email protected]
    Sep 21, 2009 7:54:55 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: MAIL_SERVER_NAME value:
    Sep 21, 2009 7:54:55 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 21, 2009 7:54:56 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value:
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value: yes
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LOG_FILE.
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :C:\app\landonkelsey
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: LMKIIIGDN
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\app\landonkelsey\cfgtoollogs\emca\LMKIIIGDN\emca_2009_09_21_19_53_24.log.
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Sep 21, 2009 7:55:19 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: DBSNMP
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: LMKIIIGDN
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: LMKIIIGDN
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: LMKIIIGDN
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 2720994149
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYSMAN
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 21, 2009 7:55:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: LMKIIIGDNSID, oracleHome: C:\app\landonkelsey\product\11.1.0\db_1, and user: SYS
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: LMKIIIGDN
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties to C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties has been copied to C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emoms.properties to C:\app\landonkelsey\product\11.1.0\db_1\sysman\config\emoms.properties.emca.tmp
    Sep 21, 2009 7:55:21 PM oracle.sysman.emcp.util.FileUtil backupFile
    Edited by: landonmkelsey on Sep 21, 2009 10:01 PM

  • Emca so fustrating - can't login/start/configure to dbconsole

    Hi, I have configured and created repository for dbconsole - no errors on it.
    however - at the end of the configuration it points to port 5500
    AND on the status it shows 1158 port
    C:\Users\administrator.UPSNET>emctl status dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.7.0
    Copyright (c) 1996, 2008 Oracle Corporation. All rights reserved.
    http://focus-64.ups.co.il:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is not running.
    C:\Users\administrator.UPSNET>emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.1.0.7.0
    Copyright (c) 1996, 2008 Oracle Corporation. All rights reserved.
    http://focus-64.ups.co.il:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ...The requested service has already been started.
    More help is available by typing NET HELPMSG 2182.
    service is up on the windows services panel, but when I do status - it shows it is not running and I can't start it...
    so - I'm thinking maybe it's a port issue so I want to change it to a different port:
    but I get invalid username password on the sys password
    eventhough I have a password file and connecting with sqlplus as sysdba using @orcl works just fine
    C:\Users\administrator.UPSNET>D:\app\product\11.1.0\db_1\BIN\emca -reconfig ports -DBCONTROL_HTTP_PORT 5570
    STARTED EMCA at 12:55:44 05/01/2013
    EM Configuration Assistant, Version 11.1.0.7.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: orcl
    Password for SYS user:
    Password for SYS user: Invalid username/password.
    Password for SYS user: Terminate batch job (Y/N)? y
    C:\Users\administrator.UPSNET>sqlplus "sys/sasa@orcl as sysdba"
    SQL*Plus: Release 11.1.0.7.0 - Production on Sat Jan 5 13:24:28 2013
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    so if any of you have any advice other then - move to sqlserver I would appreciate it

    OK - some progress made - I'm looking now in D:\app\cfgtoollogs\emca and all the missing log files are there. (instead in the <sid> directory). anyway -
    1. the last log shows:
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-reconfig' set to true
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'ports' set to true
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBCONTROL_HTTP_PORT value: 5570
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: D:\app\product\11.1.0\db_1
    06/01/2013 16:29:51 oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    06/01/2013 16:29:51 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SID.
    06/01/2013 16:29:54 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: orcl
    06/01/2013 16:29:58 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ASM_SID.
    06/01/2013 16:29:58 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ASM_SID value: +ASM
    06/01/2013 16:29:58 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    06/01/2013 16:29:58 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: +ASM, oracleHome: D:\app\product\11.1.0\db_1, and user: SYS
    06/01/2013 16:29:58 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    06/01/2013 16:29:58 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value:
    06/01/2013 16:30:04 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value: yes
    06/01/2013 16:30:04 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LOG_FILE.
    06/01/2013 16:30:04 oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :D:\app
    06/01/2013 16:30:04 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    06/01/2013 16:30:04 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    06/01/2013 16:30:04 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    06/01/2013 16:30:04 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: D:\app\product\11.1.0\db_1, and user: SYS
    06/01/2013 16:30:04 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: Re-initializing sql-engine. oldHome: D:\app\product\11.1.0\db_1 new home: D:\app\product\11.1.0\db_1 oldSid: +ASM new sid: orcl
    06/01/2013 16:30:04 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    06/01/2013 16:30:04 oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    06/01/2013 16:30:04 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: SP2-0640: Not connected
    BUT more interesting I now see the log files of when it gave me the invalid username/password which show the real error is ORA-12560 - TNS:protocol adapter error
    CONFIG: Setting param: SID value: orcl
    06/01/2013 16:48:48 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ASM_SID.
    06/01/2013 16:48:48 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ASM_SID value: +ASM
    06/01/2013 16:48:48 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    06/01/2013 16:48:48 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: +ASM, oracleHome: D:\app\product\11.1.0\db_1, and user: SYS
    06/01/2013 16:48:49 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-12560: TNS:protocol adapter error
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-12560: TNS:protocol adapter error
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:853)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:364)
         at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1040)
         at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:2859)
         at oracle.sysman.emcp.EMConfigAssistant.promptForData(EMConfigAssistant.java:641)
         at oracle.sysman.emcp.EMConfigAssistant.promptForParams(EMConfigAssistant.java:2680)
         at oracle.sysman.emcp.EMConfigAssistant.displayWarnsAndPromptParams(EMConfigAssistant.java:2706)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2733)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1190)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    06/01/2013 16:48:53 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    06/01/2013 16:48:53 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: +ASM, oracleHome: D:\app\product\11.1.0\db_1, and user: SYS
    06/01/2013 16:48:53 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-12560: TNS:protocol adapter error
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-12560: TNS:protocol adapter error
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1530)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:853)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:364)
         at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1040)
         at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:2859)
         at oracle.sysman.emcp.EMConfigAssistant.promptForData(EMConfigAssistant.java:641)
         at oracle.sysman.emcp.EMConfigAssistant.promptForParams(EMConfigAssistant.java:2680)
         at oracle.sysman.emcp.EMConfigAssistant.displayWarnsAndPromptParams(EMConfigAssistant.java:2706)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2733)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1190)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:519)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:468)
    so that gives a better hint - I will try and look into it. any thoughts?

Maybe you are looking for

  • Error Code 1605 when installing or unstalling sql server 2008 R2 on my server

    Rai, Sunil (IN - Delhi) 5:32 PM TITLE: SQL Server Setup failure. SQL Server Setup has encountered the following error: MsiGetProductInfo failed to retrieve ProductVersion for package with Product Code = '{2453DBC8-ACC4-4711-BD03-0C15353AA3D8}'. Error

  • APAS 3.0 and Windows Live Mail program

    How do I change the email client that Adobe Photoshop Album Starter 3.0 is using from Outlook express (old emailing program) to Windows Live mail (new emailing program)? When I change the 'edit, preferences, email, to "Hotmail", it goes to a web site

  • Having problem with wifi on plane

    Can not keep pick up Internet on plane, it will find it but will not connect.

  • Nothing like fresh cards in my mail box

    Both my quicksilver 5k Visa Sig and 3k QS visa Plat came today. Why two you may ask? Well the website timed out when I apped so I resubmitted and was approved for 3k Plat and was kind of bummed. But whatever I called for a different reason the next d

  • Just a noob simple question

    how do i print System Time? System.out.println(/* what do i need to put here?*/)