Re-installed 10g Personal - Trying to Create Enterprise Manager

Windows XP running 10g locally.
I can login with SQL*Plus.
Enterprise Manager failed to install. Running EMCA.bat, I get a message that Repository already exists.
This is the explanation of how to drop and create a new Repository:
===========
9.3.1 Dropping the Management Repository
To recreate the Management Repository, you first remove the Enterprise Manager schema from your Management Repository database. You accomplish this task using the -action drop argument to the RepManager script, which is described in the following procedure.
To remove the Management Repository from your database:
Locate the RepManager script in the following directory of the Oracle Application Server Home where you have installed and deployed the Management Service:
IAS_HOME/sysman/admin/emdrep/bin
At the command prompt, enter the following command:
$PROMPT> RepManager repository_host repository_port repository_SID
-sys_password password_for_sys_account -action drop
============
Unfortunately, RepManager is not a batch or exe file and does not executve from the command prompt.
Next, I found an explanation about using SQL*Plus to drop Sysman.
=========
SQL> DROP USER SYSMAN CASCADE;
User dropped.
==========
Now back to EMCA -a (emca.bat with parameter -a).
This appeared to create the new Repository Parameter file but failed to complete.
The error message said I needed to set Block Size at 8K or larger and Job Queue at 10 or greater.
The LOG file said
==========
Create core schema..
Creating Types
No errors.
No errors.
No errors.
No errors.
No errors.
No errors.
No errors.
CREATE ROLE MGMT_USER
ERROR at line 1:
ORA-01921: role name 'MGMT_USER' conflicts with another user or role name
======
I don't think I have a problem with block size. I'm not sure how to check the Job Queue parameter. How do I drop the MGMT_USER user or role?

Hey once again ,
Please find following steps to remove EM repositry completly
Step 1: Drop AQ related objects in the SYSMAN schemaLogon SQLPLUS as user SYSMAN
SQL>exec DBMS_AQADM.DROP_QUEUE_TABLE(queue_table=>'MGMT_NOTIFY_QTABLE',force =>TRUE);
Step 2: Drop the DB Control
Repository ObjectsLogon SQLPLUS as user SYS or SYSTEM, and drop the sysman account and management objects:
SQL> SHUTDOWN IMMEDIATE;
SQL> STARTUP RESTRICT;
SQL> EXEC sysman.emd_maintenance.remove_em_dbms_jobs;
SQL> EXEC sysman.setEMUserContext('',5);
SQL>REVOKE dba FROM sysman;
SQL> DECLARECURSOR c1 ISSELECT owner, synonym_name nameFROM dba_synonymsWHERE table_owner
= 'SYSMAN';BEGINFOR r1 IN c1 LOOPIF r1.owner = 'PUBLIC' THENEXECUTE IMMEDIATE 'DROP PUBLIC SYNONYM '||r1.name;ELSEEXECUTE
IMMEDIATE 'DROP SYNONYM '||r1.owner||'.'||r1.name;END IF;END LOOP;END;
SQL> DROP USER mgmt_view CASCADE;
SQL> DROP ROLE mgmt_user;
SQL> DROP USER sysman CASCADE;
SQL> ALTER SYSTEM DISABLE RESTRICTED SESSION;
:-)

Similar Messages

  • Create enterprise management agent failed during IDM 11.1.1.3 installtion

    Hi,
    Create enterprise management agent step in bootstrap configuration of IDM 11.1.1.3 (OID, OVD, ODSM, ODIP and OIF ) is failing. This is on Windows 2003 sp2. I have seen a post similar to this where it is mentioned that a missing DDL may be causing this issue. If this is the case, can i get the DLL please..
    Re: Error during "Create Oracle Internet Directory" Step
    Also i have seen another post similar to this where it is mentioned about SSL configuration issues...please advise.
    EM fails to start with NoClassDefFoundError: HTTPClient/ProtocolNotSuppExce
    Appreciate your help !
    Regards,
    Sudhakar

    During installation of Oracle DB 11gR2, EM did not start, had to make sure all environment variables including ORACLE_UNQNAME are set so that EM is started successfully on Oracle DB installation. this resolved the issue.
    Edited by: Sudhakar on Apr 3, 2011 11:25 AM

  • Error in creating Enterprise manager repository

    Error in Enterprise manager repository
    oracle@oracle:~> emca -repos create
    STARTED EMCA at Mar 8, 2009 9:14:45 PM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: ora01
    Listener port number: 1521
    Password for SYS user:
    Password for SYSMAN user:
    Do you wish to continue? yes(Y)/no(N): Y
    Mar 8, 2009 9:15:08 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_2009-03-08_09-14-45-PM.log.
    Mar 8, 2009 9:15:09 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Mar 8, 2009 9:15:09 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    Mar 8, 2009 9:15:09 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_repos_create_<date>.log for more details.
    Mar 8, 2009 9:15:09 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_2009-03-08_09-14-45-PM.log for more details.
    Could not complete the configuration. Refer to the log file at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_2009-03-08_09-14-45-PM.log for more details.
    emca_repos_create_2009-03-08_09-15-09-PM.log
    Check if repos user already exists.
    old 6: WHERE username=UPPER('&EM_REPOS_USER');
    new 6: WHERE username=UPPER('SYSMAN');
    old 8: IF ( '&EM_CHECK_TYPE' = 'EXISTS') THEN
    new 8: IF ( 'NOT_EXISTS' = 'EXISTS') THEN
    old 11: raise_application_error(-20000, '&EM_REPOS_USER does not exists..');
    new 11: raise_application_error(-20000, 'SYSMAN does not exists..');
    old 14: ELSIF ( '&EM_CHECK_TYPE' = 'NOT_EXISTS' ) THEN
    new 14: ELSIF ( 'NOT_EXISTS' = 'NOT_EXISTS' ) THEN
    old 17: raise_application_error(-20001, '&EM_REPOS_USER already exists..');
    new 17: raise_application_error(-20001, 'SYSMAN already exists..');
    old 21: raise_application_error(-20002, 'Invalid Check type &EM_CHECK_TYPE');
    new 21: raise_application_error(-20002, 'Invalid Check type NOT_EXISTS');
    DECLARE
    ERROR at line 1:
    ORA-20001: SYSMAN already exists..
    ORA-06512: at line 17
    emca_2009-03-08_09-14-45-PM.log
    Mar 8, 2009 9:12:13 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-repos' set to true
    Mar 8, 2009 9:12:13 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Mar 8, 2009 9:12:13 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'create' set to true
    Mar 8, 2009 9:12:13 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: /home/oracle/product/10gR2
    Mar 8, 2009 9:12:15 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: ora01
    Mar 8, 2009 9:12:18 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Mar 8, 2009 9:12:20 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter SYS_PWD.
    Mar 8, 2009 9:12:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: ora01, oracleHome: /home/oracle/product/10gR2, and user: SYS
    Mar 8, 2009 9:12:20 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 8, 2009 9:12:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value:
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value: yes
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LOG_FILE.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: ora01, oracleHome: /home/oracle/product/10gR2, and user: SYS
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: ora01
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_2009-03-08_09-12-13-PM.log.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: /home/oracle/product/10gR2
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: ora01, oracleHome: /home/oracle/product/10gR2, and user: SYS
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: ora01
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: ora01
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: ora01
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: ora01, oracleHome: /home/oracle/product/10gR2, and user: SYS
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: ora01
    Mar 8, 2009 9:12:25 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: ora01, oracleHome: /home/oracle/product/10gR2, and user: SYS
    Mar 8, 2009 9:12:26 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Mar 8, 2009 9:12:26 PM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: Spooling to /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_repos_create_2009-03-08_09-12-26-PM.log
    Mar 8, 2009 9:12:26 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Mar 8, 2009 9:12:26 PM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: ORA-20001: SYSMAN already exists..
    ORA-06512: at line 17
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-20001: SYSMAN already exists..
    ORA-06512: at line 17
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1467)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeScript(SQLEngine.java:841)
         at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:265)
         at oracle.sysman.assistants.util.sqlEngine.SQLPlusEngine.executeScript(SQLPlusEngine.java:306)
         at oracle.sysman.emcp.EMReposConfig.createRepository(EMReposConfig.java:360)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:182)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:124)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    Mar 8, 2009 9:12:26 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    Mar 8, 2009 9:12:26 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_repos_create_<date>.log for more details.
    Mar 8, 2009 9:12:26 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_2009-03-08_09-12-13-PM.log for more details.
    Mar 8, 2009 9:12:26 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error creating the repository
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:194)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:124)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)

    oracle@oracle:~>  emca -config dbcontrol db -repos create
    STARTED EMCA at Mar 8, 2009 9:38:46 PM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: ora01
    Listener port number: 1521
    Password for SYS user:
    Password for DBSNMP user:
    Password for SYSMAN user:
    Email address for notifications (optional):
    Outgoing Mail (SMTP) server for notifications (optional):
    You have specified the following settings
    Database ORACLE_HOME ................ /home/oracle/product/10gR2
    Database hostname ................ srv603484.adpepper.com
    Listener port number ................ 1521
    Database SID ................ ora01
    Email address for notifications ............... [email protected]
    Outgoing Mail (SMTP) server for notifications ............... www.cyabge.com
    Do you wish to continue? [yes(Y)/no(N)]: Y
    Mar 8, 2009 9:39:23 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_2009-03-08_09-38-46-PM.log.
    Mar 8, 2009 9:39:24 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Mar 8, 2009 9:41:39 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Mar 8, 2009 9:41:43 PM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Mar 8, 2009 9:48:24 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /home/oracle/product/10gR2/bin/emctl start dbconsole
    Mar 8, 2009 9:48:24 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_2009-03-08_09-38-46-PM.log for more details.
    Could not complete the configuration. Refer to the log file at /home/oracle/product/10gR2/cfgtoollogs/emca/ora01/emca_2009-03-08_09-38-46-PM.log for more details.
    oracle@oracle:~> emctl start dbconsole
    TZ set to US/Pacific
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://**********:5500/em/console/aboutApplication
    Timezone mismatch: The agentTZRegion value (US/Pacific) in
    /home/oracle/product/10gR2/**********8_ora01/sysman/config/emd.properties
    does not match the current environment TZ setting(US/Pacific).
    The dbconsole cannot run with this mismatch.
    If US/Pacific is the correct timezone, set your timezone environment variable to US/Pacific and repeat the 'emctl start dbconsole' operation.
    If US/Pacific is not the correct timezone, make sure that the timezone in your environment is correct, and then run the following command in your local Oracle Home: 'emctl resetTZ agent'
    The output of this command will include detailed instructions to follow, to correct the mismatch.
    Edited by: user618704 on Mar 9, 2009 2:08 AM

  • Problem trying to create and manage external tables

    Hello guys,
    I am having problems having created my external tables trying to select from them. I created the table thus:
    create table job_ext
    (job_id number(3),
    FUNCTION varchar2(30) )
    organization external (type oracle_datapump default directory test_dir
    access parameters (records delimited by newline fields delimited by "~" (job_id number(3) ,
    FUNCTION varchar2(30) ) )
    location ('testdump.lst')
    but on running select * from job_ext, I get the error
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-00554: error encountered while parsing access parameters
    KUP-01005: syntax error: found "identifier": expecting one of: "logfile, nologfile, version" etc..
    KUP-01008: the bad identifier was: records
    KUP-01007: at line 1 column 1
    ORA-06512: at "SYS.ORACLE_DATAPUMP", line 19
    ORA-06512: at line 1
    what am I not doing right.
    Secondly, I wish to ask if an directory object is created, will it be visible on the OS file system?? I am using Oracle 10g complete reference for study but it does not throw light on this.
    thanks

    Hi,
    It looks like you may need to grant permissions to the target directory.
    The ORA-29913 error can also happen in external tables when you don't grant read and write permissions to the directory:
    CREATE OR REPLACE DIRECTORY extdir AS '/u01/app/oracle./extdir';
    GRANT READ ON DIRECTORY extdir TO myowner;
    GRANT WRITE ON DIRECTORY extdir TO myowner;
    Also, see BUG 5172459 (MetaLink Note:373168.1)
    The problem is that the message file for external tables oin not the English version. These steps will address the issue:
    1. cd $ORACLE_HOME/rdbms/mesg
    2. cp KUP<lang>.msb KUP<lang>.msb.BAK
    3. cp kupus.msb KUP<lang>.msb
    http://www.dba-oracle.com/t_ora_29913_external_table_error.htm

  • Error while trying to start Enterprise manager(Data Base Control)

    We are getting error while trying to start the EM Database Control in database 11g (11.1.0.6).The error is given below.
    #emctl start dbconsole
    OC4J Configuration issue. /user1/oracledb/app/testdb/product/11.1.0/db_1/oc4j/j2ee/OC4J_DBConsole_appvserver.rssoftware.com_ORCL not found.
    How to resolve this issue?
    Regards,
    Rup

    Check here:
    OC4J Configuration issue.
    http://arjudba.blogspot.com/2008/04/troubleshooting-dbconsole-error-oc4j.html
    HTH
    -Anantha

  • 10g Personal Edition Question

    I am newbie and have a question regarding 10g personal edition. I see that this version supports one user connection but I am trying to find out if the user connection can be remote (from another workstation) or if it has to be local.
    I have (2) XP boxes and want to install 10g personal edition on one XP box then access the DB from the other XP box. Can this be done?
    Thanks in advance for any input!

    Like the original poster, I too am a total Oracle newbie, considering migrating to Oracle from the outstandling but comparatively feature-poor PostgreSQL, and I'm trying the downloadable version of the Personal Edition database 10gR2, and I cannot for the newbie life of me figure out how to use this thing remotely, so that I can have Oracle running on my server at home and use it/develop with it using Enterprise Manager and SQL Developer from, say, a coffeeshop or other remote location via the Internet. (Exception: remote control software--RADMIN works well--but this is not a good non-emergency solution.)
    Ultimately, it would also need to be secure (SSL or something), but at this point, I cannot get it to work at all. I know how port-forwarding and other firewallish things work, but I suspect the problem is that the Personal Edition uses a local loopback connection which may be inaccessible from the Net?
    Of course I'm perfectly willing to buy the product if I can be assured that this will ultimately work reliably--is that's what's necessary to get it to work (the downloadewd version being crippled somehow?), or to get any support (folks say Metalink is helpful)?
    Usually, the documentation is all I need to make something go, but the Oracle documentation I've looked at so far is at once incredibly expansive and not very helpful to me. (I may not know enough for it to be helpful: most of the documentation seems to assume you're already fully immersed in the Oracle world, and little of it seems specific to the Personal Edition's quirks.)
    Any pointers to explicit documentation, let alone some step-by-step "here's what you have to do" instructions, would be tremendously appreciated.
    Thanks!

  • Unable to access Oracle Enterprise Manager in Oracle 10g AS Machine

    Hi All,
    We are working on oracle forms 10g in 3 tier architecture. I have installed oracle 10g Infrastructure (OraHome_1) followed by oracle 10g Application server (middle-tier,OraHome_2). I have copied all the forms to OraHome_2\forms folder and compiled them successfully.
    When i tried to access enterprise manager (Infrastructure)thru http://myappserver:18100, i was unable to do so. It displayed "page cannot be displayed".
    Also
    When i tried to access enterprise manager (middle-tier)thru http://172.16.1.1:18101, i was unable to do so. It displayed "page cannot be displayed".
    I checked for port status, thru “netstat –na” command, It was displaying
    172.16.1.1 18100 TIME_WAIT
    172.16.1.1 18101 TIME_WAIT
    172.16.1.1 7777 TIME_WAIT
    Why is that i am unable to access the Enterprise Manager?

    Hi All,
    I was able to resolve the issue. Thr was a proxy server enabled in the IE in AS machine. Once i checked the option for bypassing it and turned off the windows firewall(OS was win 2003 server). I was able to view the home page at http://myappserver, then was able to access EM also.

  • Trying to create an Adobe ID

    I'm new to Photoshop AND have a new laptop with Windows 8.  Photoshop Elements 10 has been installed and am trying to create an Adobe ID.  Am being told I need my personal URL, and don't know what to do.  Any help appreciated.

    I can't tell you the meaning of "Personal URL" because that's my question.  I'm trying to create an Adobe ID to go with my new program, Adobe Photoshop Elements 10, and after I fill in all of the blanks I get a message asking for my "Personal URL", I don't know what that means or where to find it.  I don't have a website nor do I want to share my photos on Facebook.
    Is an Adobe ID necessary to use Photoshop Elements 10?  I'm new to Photoshop and will be taking a class in March; I'd like to be able to look around a bit and become somewhat familiar with the program.  I'm sure there will be long-time users in the class and I'll be left behind at the starting gate.
    Thanks if you can help.
    Gail

  • Problem installing Oracle Enterprise Manager

    I install OEM on a windows 2000. When I run OEM configuration assistant to create a new repository, I got a error:
    lost database connection,
    ora-12547, TNS lost contact.
    I did it like:
    user: system
    passwd:
    service: 192.168.1.1:1521:ora8
    Thanks a lot. It's really frustrating with all these problems.

    Deborah,
    I really don't think I installed Enterprise Manager Server. I have looked everywhere for the emca configuration assistant and it is just not there. I am running version 3 of oracle 8.1.7 enterprise edition, and I did not remember seeing enterprise manager server on the list of products that would be installed. I did remember seeing enterprise manager components. I am going to try and install again on a different machine and see if enterprise manager server is part of the install.
    Tim

  • Enterprise manager & sql* plus login failed

    hi
    this is the problem i encountered yesterday:
    there are server_3 and rs_16 machines which are in D1 domain and server_1 in W1 workgroup. server_3 and rs_16 has no oracle software whatsoever and on server_1 8i database exists. other machines with 8i clients, all in D1 domain, succesfully connect to server_1.
    i installed 10g database on server_3 machine; after installation i created a database db1. after the database was created, i tried to start enterprise manager (EM) and it failed (the database is not mounted ....), and i found out that tns listener wasn't created during the installation. so i created tns listener and started EM again and browser showed the proper page (username and login). so i entered sys as username, pswrd (created during the installation) and connect as sysdba. when i clicked on login button, the page refreshed but nothing happened, the same page (login) was still opened. i tried to connect from rs_16 and the same thing happened. this happened using internet explorer for opening EM. i tried to login as system, sysman but all in vain.
    then i installed 10g on rs_16, created db2 database and found out that tnsnames.ora file was missing. created db3 as well, and all went ok. started EM, tried to login and the same thing happened as on server_3, browser just refreshed the page.
    also have to say that i tried to connect to databases using sql* plus and login also failed.
    also tried using administration assistent for windows and tried to connect to db3. when i tried to connect as sys acount (database authentication) login failed, but when i used os authentication i succeeded.
    then i tried to start EM from another machine rs_13 (D1 domain) using internet explorer and i succeeded, there was no problem at all. after all, i installed mozilla firefox (1.0.6) on rs_16 and succesfully started EM for any database i wanted. but have to mention that i still can't connect to any db using sql* plus.
    rs_13 setup:
    - win 2000 + sp4
    - ie 6.0.2600.0000IC
    and rs_16:
    - win xp + sp2
    - ie 6.0.2900.2180.xpsp_sp2
    server_3:
    - windows server 2003
    on every machine i was logged in as top administrator so i had any possible permission.
    could anybody answer these questions:
    1. why tnsnames.ora wasn't created?
    2. why tns listener wasn't created?
    3. why couldn't i start EM using ie on server_3 and rs_16 and could on rs_13?
    4. why did login fail using sql* plus and why can't i still connect to any db using sql* plus? is it a problem of assigning some privileges or something else?
    5. why did login fail using database authentication while succeeded using windows authentication in administration assistent for windows? what should i do to make it succeed? is this all problem due to ie browser, win security or oracle security?
    6. why microsoft is giving me a hard time with their security?
    thanks for help in advance
    hope this post will help someone else as well !!
    Message was edited by:
    uncle carmine
    Message was edited by:
    uncle carmine

    could anybody answer these questions:
    1. why tnsnames.ora wasn't created?
    2. why tns listener wasn't created?I think you cancel Network Configuration Assistan which would create tnsnames.ora and listener. I hope others help you with the other questions I have plenty of work
    Best Regards
    Krystian Zieja / mob

  • Unable to drop Oracle Enterprise Manager console in Oracle 11g

    Hello all,
    I am trying to drop the Oracle Enterprise Manager console in Oracle 11g (Windows server 2008 32 bit). I am getting the following error.
    D:\Oracle\Ora11G\BIN>emca -deconfig dbcontrol db -repos drop
    STARTED EMCA at Jun 16, 2009 9:59:58 PM
    EM Configuration Assistant, Version 11.1.0.7.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: NM45
    Listener port number: 1529
    Password for SYS user:
    Password for SYSMAN user:
    Password for SYSMAN user:
    Do you wish to continue? [yes(Y)/no(N)]: y
    Jun 16, 2009 10:00:20 PM oracle.sysman.emcp.util.EMCALogManager addLogFileIntern
    al
    WARNING: Adding log file D:\Oracle\Ora11G\cfgtoollogs\emca\ENMSCSDB\emca_2009_06_16_22_00_20.log failed. Messages will not be logged in this file.
    Jun 16, 2009 10:00:20 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at D:\Oracle\Ora11G\cfgtoollogs\emca\ENMSCSDB\emca_2009_06_16_22_00_20.log.
    Jun 16, 2009 10:00:21 PM oracle.sysman.emcp.util.DBControlUtil stopOMS
    INFO: Stopping Database Control (this may take a while) ...
    Jun 16, 2009 10:00:22 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Can't find file D:\Oracle\Ora11G\F1SMLFS_NM45\sysman\config\emoms.properties
    Refer to the log file at D:\Oracle\Ora11G\cfgtoollogs\emca\ENMSCSDB\emca_2009_06_16_22_00_20.log for more details.
    Could not complete the configuration. Refer to the log file at D:\Oracle\Ora11G\cfgtoollogs\emca\ENMSCSDB\emca_2009_06_16_22_00_20.log for more details.
    D:\Oracle\Ora11G\BIN>
    Even though the D:\Oracle\Ora11G\F1SMLFS_NM45\sysman\config\emoms.properties is exists in the disk. Any Idea.
    In Oracle 9i " Enterprise manager Configuration Assistant" (Open “Start ---> Programs ----> Oracle - OraHome92 ---> Configuration and Migration
    Tools -----> Enterprise manager Configuration Assistant) was present. Is there any replacement of this in Oracle 11g ?
    Thanks
    With Regards
    Hemant

    hem_kec wrote:
    Hello all,
    I am trying to drop the Oracle Enterprise Manager console in Oracle 11g (Windows server 2008 32 bit). I am getting the following error.
    D:\Oracle\Ora11G\BIN>emca -deconfig dbcontrol db -repos dropBefore this you shoud do :
    ORACLE_HOME/bin/emca -x <sid>
    ORACLE_HOME>/sysman/admin/emdrep/bin/RepManager <hostname> <listener_port> <sid> -action drop
    Refer to the log file at D:\Oracle\Ora11G\cfgtoollogs\emca\ENMSCSDB\emca_2009_06_16_22_00_20.log for more details.did you check this log ?
    Even though the D:\Oracle\Ora11G\F1SMLFS_NM45\sysman\config\emoms.properties is exists in the disk. Any Idea.yes. you could visit metalink and see      278100.1 How To Drop, Create And Recreate DB Control In A 10g Database
    In Oracle 9i " Enterprise manager Configuration Assistant" (Open “Start ---> Programs ----> Oracle - OraHome92 ---> Configuration and Migration
    Tools -----> Enterprise manager Configuration Assistant) was present. Is there any replacement of this in Oracle 11g ?
    Thanksok
    With Regards
    Hemantbest regards

  • Problem in Login to Enterprise Manager Cosole

    I have installed ORACLE 9i Rel:9.0.1.0.1, after configuring the Mangement Server when I am trying to load Enterprise Manager Console program and when I enter username and password, I got an error says "Incorrect Login Credentials". If anybody can help me to solve this problem I will appriciate it.
    Thanks

    Ashar Najum,
    The initial username and password for the OEM console is username: SYSMAN password: oem_temp for OEM version 2.2. After you log in the first time, it will ask you to change the password. From there, you can create other dba's to log in from their consoles to the same managment server.
    Hope that helps!
    Sincerely,
    Rob Kaegy
    I have installed ORACLE 9i Rel:9.0.1.0.1, after configuring the Mangement Server when I am trying to load Enterprise Manager Console program and when I enter username and password, I got an error says "Incorrect Login Credentials". If anybody can help me to solve this problem I will appriciate it.
    Thanks

  • Enterprise Management Console through borwser

    Hi,
    I tried to configure Enterprise Management Console through borwser
    using docs
    http://download-west.oracle.com/docs/cd/B10501_01/em.920/a96673/ch5.htm#1656
    But while clicking on
    "launch console" still it is opening in normal mode.
    Regards,
    Mathew

    In Oracle 9i don't expect to see an enterprise manager like the one in 10g, 9i works with a Java class that is downloaded through the browser in an applet mode. So even if you configure the console the way it is mentioned in the document, the result will this, you will see the console exactly the way it is displayed in the traditional Java Client Mode.
    The pourpose to access the Java Console through web is to have access to the EM Console in an environment where you don't have the client installed, but you can reach the server through browser.

  • Application server : Enterprise Manager ias Console - No response

    Hi All,
    We have 10gApplication server infrastructure and the middle tier servives for discoverer installed
    In the infrastructure tier the Enterprise Manager ias Console is starting up with out any error message, but in the discoverer middle tier the Enterprise Manager ias Console startup is gibing the below error message
    Starting Oracle Enterprise Manager 10g Application Server Control ...........................
    No response, checking logs for initialization activity.
    waiting for response from console ........................
    No response, checking logs for initialization activity.
    Console startup failed to start.
    On reviewing the log files, got the below error mesage in the sysman/log
    4211 [Thread-5] ERROR oracle.sysman.emSDK.eml.util.iAS.IASEntryPoint - init retry failed: The OracleAS Repository API threw an exception when obtaining the
    connect string to the Metadata Repository
    oracle.ias.repository.schema.SchemaException: Unable to establish connection to the Oracle Internet Directory Server [ldap://<servername>.<domain name>.com:389/]. Bas
    e Exception : javax.naming.CommunicationException: oeb0stl1.mastercard.com:389 Root exception is java.net.ConnectException: Connection refused
    at oracle.ias.repository.directory.DirectoryReader.connect(DirectoryReader.java:124)
    at oracle.ias.repository.IASSchema.getDBConnect(IASSchema.java:554)
    at oracle.ias.repository.IASSchema.getDBConnect(IASSchema.java:772)
    at oracle.ias.repository.SchemaManager.getDBConnect(SchemaManager.java:406)
    at oracle.ias.sysmgmt.persistence.SeedDbAccess.getDBConnect(Unknown Source)
    at oracle.ias.sysmgmt.persistence.PersistenceManager.getSeedInfo(Unknown Source)
    at oracle.ias.sysmgmt.persistence.PersistenceManager.<init>(Unknown Source)
    at oracle.ias.sysmgmt.persistence.PersistenceManager.<init>(Unknown Source)
    at oracle.ias.sysmgmt.task.TaskMaster.initRepository(Unknown Source)
    at oracle.ias.sysmgmt.task.TaskMaster.<init>(Unknown Source)
    at oracle.ias.sysmgmt.task.InstanceManager.sysInit(Unknown Source)
    at oracle.ias.sysmgmt.task.InstanceManager.init(Unknown Source)
    at oracle.ias.sysmgmt.EntryPoint.init(Unknown Source)
    at oracle.sysman.emSDK.eml.util.iAS.IASEntryPoint.initEntrypoint(IASEntryPoint.java:145)
    at oracle.sysman.emSDK.eml.util.iAS.IASEntryPoint.getEntryPoint(IASEntryPoint.java:266)
    at oracle.sysman.emSDK.eml.util.iAS.IASEntryPoint.getEntryPoint(IASEntryPoint.java:306)
    at oracle.webdb.monitoring.hawkeye.PortalIntegration$InitThread.run(Unknown Source)
    Please advice.
    Thanks & Regards,
    Rakesh

    Shail,
    I have verified the listener, its up and running. Also tried restarting teh listsner. Still no response is coming.
    Enterprise Manager ias Console for Infrastructure is coming up with out any issues, the issue is only with the Enterprise Manager ias Console in middle tier ( Discoverer home )
    Please advice,
    Thanks & Regards,
    Rakesh

  • Enterprise Manager is not able to connect to the database instance. Open??

    Hello there,
    After I installed oracle database and tried to start Enterprise Manager, I got the message:
    Enterprise Manager is not able to connect to the database instance.
    All statuses are OK (green and up) except database instance. It is also green and up but open. (Details: The instance is open.)
    Can anyone help me about it?
    I use Windows XP x64 with all patches installed. Oracle database R11g x64.
    I tried with different database versions and different machines and different OS and loopback adapter and... my EM still want to log in.
    I can log in with sqlplus. It accepts any pass for sys (as sysdba). Why?
    My log files are available here: http://195.66.185.187/log.zip

    You are using a bequeath connection when logging in with SQL*Plus on the server so the password is not validated.
    Log in using SQL*Plus this way:
    sqlplus /nolog
    followed by
    conn sys@<service_name> AS SYSDBA
    and provide the correct password
    My guess it it will fail.
    If so then you need to use the correct password and if you don't know what it is set it when logged on as SYS.

Maybe you are looking for