CREARE DATABASE

Hi,
I am a community college student not looking for someone to do my homework, but just some assistance. I need to write a script that creates a database with the following parameters: 10MB Tablespace for Rollback Segment, 5MB Tablespace for User, 25MB Tablespace Temporary Segments (i.e. for sorts), and 10MB Tablespace for Indexes. From my book, I have a CREATE DATABASE script as follows: CREATE DATABASE <databasename> MAXDATAFILES <n> MAXINSTANCES <n> MAXLOGFILES <n> MAXLOGMEMBERS <n> DATAFILE '<path>/<datafilename>' <storage_settings> UNDO TABLESPACE <undo> DATAFILE '<path>/<file>' <storage> CHARACTER SET <charsetname> NATIONAL CHARACTER SET <ncharsetname> LOGFILE GROUP <n> ('<path>/<file>, ...) GROUP <n> ('<path>/,file>', ...); Where do I specify the instructor's parameters in the CREATE DATABASE script? Any assistance would be appreciated. Thanks

Ciao Silvanoo,
Allora, non sono un grande esperto di database e ActiveX, concettualmente l'idea è quella di aprire una reference all'activeX che vuoi utilizzare: palette Connectivity>>ActiveX>>Automation open, poi fai tasto destro sull'input Automation Refnum e selezioni la classe di ActiveX che ti interessa. Ora, devi utilizzare i property node le cui proprietà e metodi sono già quelli "corretti" per la classe di ActiveX che hai selezionato; conoscendo i comandi puoi interagire con il database.
ti allego un paio di link che ho trovato, uno è ad un forum scritto da un tizio abbastanza esperto, l'altro è ad un sito esterno che offre una serie di tool per interagire con i database:
http://forums.ni.com/ni/board/message?board.id=170&message.id=81990&query.id=7374#M81990
http://www.jeffreytravis.com/lost/labsql.html
Al momento questo è il massimo aiuto che posso darti, ciao
carlo>

Similar Messages

  • About database trigger

    Suppose I have 2 tables A and B. There are about 40 table
    columns for table A and 30 table column for table B. Table A
    can insert, update and delete the record from table B. Table A
    can insert, update about 15 table columns into table B. I
    create database trigger on table A to insert, update and delete.
    TAble B can update only 1 table columns into table A. Due to
    these 2 tables A and B have update trigger. So it is mutating
    when I try to update the record from table A and also update the
    record in table B. Please if you have any suggestion, let me
    know. I try to work around by creating the package with
    variable field set to boolean. But, somehow it only allows to
    update from B to A, not from A to B. Thanks in advance.
    null

    Long Tran (guest) wrote:
    : Suppose I have 2 tables A and B. There are about 40 table
    : columns for table A and 30 table column for table B. Table A
    : can insert, update and delete the record from table B. Table A
    : can insert, update about 15 table columns into table B. I
    : create database trigger on table A to insert, update and
    delete.
    : TAble B can update only 1 table columns into table A. Due to
    : these 2 tables A and B have update trigger. So it is mutating
    : when I try to update the record from table A and also update
    the
    : record in table B. Please if you have any suggestion, let me
    : know. I try to work around by creating the package with
    : variable field set to boolean. But, somehow it only allows to
    : update from B to A, not from A to B. Thanks in advance.
    Hi, I've had this type of mutating table problem before ....
    Here's a workaround:
    1. Create temporary table to record the changes on the
    database triggers (row triggers). Then on a after statement
    issue the update statement.
    2. Crear package variables at the package specification. Then
    create procedures or functions to set this values accordingly
    (in before and after trigger statement). Finally use after
    statement triggers.
    null

  • ADMIRAL database on SQL 2008 R2 Named Instance

    Hi,
    we are running  TES 6.1.0.133 (test Master) upon a remote SQL 2005 SP4 named instance database, all is right.
    I need to move the ADMIRAL database to an SQL 2008 R2 SP1 named instance.
    What JDBC, JRE and connection string do I need to succeed ?
    The versions are JRE 1.6.0.30, Microsoft JDBC 4.0.
    thank in advance you for your experience,
    Frederic                 

    You should probably ask Cisco to help you through this they can likely provide you with an updated document and jar file
    You will need to update your master.props settings.
    You will need potentially need a new jar
    Perform on a maintenance weekend with a maximum amount of recovery time
    I have a Cisco  doc and Zip files from 2010 when we did this but it is likely a different JAR that you would want to apply now.
    What I would think are the Sequence of events (disclaimer Cisco would be best source of sequence, order, etc)
    set system queue to zero
    close all client sessions
    stop master services
    kill all connections to Admiral database
    backup admiral database
    set database offline and rename
    Restore admiral database backup to new target SQL server 2008 instances
    Creare a backup of master.props
    Apply Jar to update master / SQL scripts (if supplied by Cisco)
    Update master.props with new settings
    JdbcURL=jdbc:sqlserver://:;selectMethod=cursor;databaseName=Admiral (or Admiral DB name)
    There could be other setting that may also need to chance
    Start Tidal Master make sure it is running
    Connect Client
    Verify Connections
    Turn on System Queue slowly ramp up from a few to your standard level

  • Accesing mysql database from threads

    Hi
    dont know if this is the right place for this
    I'm building a server-client application, on sever's side I create a thread for every client who can request several operations over a mysql database (insert, delete, update, etc), at some point 2 clients can request the same operation over the same registry (2 clients trying to delete the same registry, for example), I try to avoid that to happend, so before doing any operation over the database I check the correct status (a registry must exist to delete, or not exist to create, for example), this is the code that makes that (for inserting a registry):
    //first I make sure the registry does not exist
    sql = "SELECT id_grupo FROM adm_grupo WHERE nombre_grupo = '" + nomGrupo + "'";
    res = bd.ConsultarSQL(sql);
    //If already exist, the operation is rejected
    if (res.next()) {
        EnviarError("Error al Crear el Grupo: Ya existe ese nombre");
         return -1;               
    //Check point ends
    //If not, the insert statement is made
    sql = "INSERT INTO adm_grupo VALUES (NULL,'" + nomGrupo + "','N')";however, since it could be 2 threads (every thread is an object) doing that, the first one can pass the check point and stop because its processor time is over, so the second can start its insert process and pass the check point too (because the first one didn't have enough time to insert the registry), then both registries are inserted causing a logical error, I thought in fixing that problem using the synchronized keyword for the functions, but I read that keyword blocks 1 object that can be accesed for several threads, but in my case I have several threads, everyone accesing its own object, so I'm not sure if the synchronized will work, I dont know any other solution to this,
    thnx in advance for any help

    Sure.  But test it.  You'll need to test it regardless, just to make sure it all works.
    In general, I usually prefer to have the backup tool create the initial SQL database archive on the primary server, zip it, and to then have the backup server in a trusted network location pull the database archive over to the backup server.  (It can then unzip it or process it as needed.)  With this, the primary server doesn't have access to the backups, nor to the backup server. This intended to isolate the access that a breach of the primary server might permit.

  • Dbconsole when i clone database

    dear all.
    my database is 10.2.0.0.1
    OS: RHEL v5 64 bits.
    i cloned my database some weeks ago. But i didn't clone (if i can say that) the dbconsole (Em) and when i execute the command "emctl start dbconsole" it shows me:
    emctl start dbconsole
    TZ set to America/Lima
    OC4J Configuration issue. /u01/app/oracle/product/10.2.0/db_1/oc4j/j2ee/OC4J_DBConsole_hades.mintra.gob.pe_plelpp not found.
    when i put the next command in order to create the repository:
    ./emca -config dbcontrol db -repos create
    show log error in: /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/plelpp/emca_2008-09-02_05-47-52-PM.log
    The last lines of this file are:
    02-sep-2008 17:48:47 oracle.sysman.emcp.EMReposConfig invoke
    GRAVE: Error al crear el repositorio
    02-sep-2008 17:48:47 oracle.sysman.emcp.EMReposConfig invoke
    INFO: Consulte el archivo log en /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/plelpp/emca_repos_create_<fecha>.log para obtener más información.
    02-sep-2008 17:48:47 oracle.sysman.emcp.EMConfig perform
    GRAVE: Error al crear el repositorio
    Consulte el archivo log en /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/plelpp/emca_2008-09-02_05-47-52-PM.log para obtener más información.
    02-sep-2008 17:48:47 oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error al crear el repositorio
         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)
    Please i need to create the repository in order to manage my database through BROWSER...
    HOw can i do that?
    Thanks a lot.
    Cesar.
    Please apologize my english.

    friends
    thanks for your answers.
    when i executed this command: "emca -deconfig dbcontrol db -repos drop" not uninstall anything. This is the log:
    EMCA iniciado en 04-sep-2008 11:43:28
    Asistente de Configuración de EM, Versión 10.2.0.1.0 Producción
    Copyright (c) 2003, 2005, Oracle. Todos los Derechos Reservados.
    Introduzca la siguiente información:
    SID de Base de Datos: plelpp
    Número de Puerto del Listener: 1522
    Contraseña de Usuario SYS:
    Contraseña de Usuario SYSMAN
    ¿Desea continuar? [sÃ(Y)/no(N)]: Y
    04-sep-2008 11:44:24 oracle.sysman.emcp.EMConfig perform
    INFO: Esta operación se está registrando en /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/plelpp/emca_2008-09-04_11-43-28-AM.log.
    04-sep-2008 11:44:26 oracle.sysman.emcp.EMDBPreConfig performDeconfiguration
    ADVERTENCIA: EM no está configurado para esta base de datos. No se puede realizar acciones especÃficas de EM.
    04-sep-2008 11:44:26 oracle.sysman.emcp.EMReposConfig dropRepository
    INFO: Borrando el repositorio de EM. Puede tardar unos minutos...
    04-sep-2008 11:44:27 oracle.sysman.emcp.util.PlatformInterface executeCommand
    ADVERTENCIA: Error al ejecutar /u01/app/oracle/product/10.2.0/db_1/sysman/admin/emdrep/bin/RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=hades.mintra.gob.pe)(PORT=1522)))(CONNECT_DATA=(SERVICE_NAME=plelpp.mintra.gob.pe))) -repos_user SYSMAN -action drop -verbose -output_file /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/plelpp/emca_repos_drop_2008-09-04_11-44-26-AM.log
    04-sep-2008 11:44:27 oracle.sysman.emcp.EMReposConfig invoke
    GRAVE: Error al borrar el repositorio
    04-sep-2008 11:44:27 oracle.sysman.emcp.EMReposConfig invoke
    INFO: Consulte el archivo log en /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/plelpp/emca_repos_drop_<fecha>.log para obtener más información.
    04-sep-2008 11:44:27 oracle.sysman.emcp.EMConfig perform
    GRAVE: Error al borrar el repositorio
    Consulte el archivo log en /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/plelpp/emca_2008-09-04_11-43-28-AM.log para obtener más información.
    No se ha podido terminar la configuración. Consulte el archivo log en /u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/emca/plelpp/emca_2008-09-04_11-43-28-AM.log para obtener más información.
    When i saw the log it shows:
    [04-09-2008 11:44:26] Enter SYS user's password :
    [04-09-2008 11:44:26]
    [04-09-2008 11:44:26] Enter repository user password :
    [04-09-2008 11:44:26]
    [04-09-2008 11:44:26] Getting temporary tablespace from database...
    [04-09-2008 11:44:27] Could not connect to SYS/(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=hades.mintra.gob.pe)(PORT=1522)))(CONNECT_DATA=(SERVICE_NAME=plelpp.mintra.gob.pe))): ORA-01031: privilegios insuficientes (DBD ERROR: OCISessionBegin)
    Facts:
    1.- The password of SYSMAN is the same password of the source database when i cloned 2 months ago. Im sure because I logged through SQL*Plus with sysman and everything is ok. This db was dropped.
    2.- Actually i have a problem with as sysdba or as sysoper when i try to connect remotely through Sql*Plus or Toad. It shows me the same error ORA-01031. But when i enter locally, everything is ok. (the thread about this Re: ORA-01031 problem with sys as sysdba remotely
    What do you think is happening?
    The solution maybe with the second point ?
    Thanks a lot !!!!

  • Crear archivo de texto desde trigger en SQL SERVER 2005

    Necesito crear un archivo .txt con cierto texto cada vez que se ejecuta el trigger. Quisiera saber como hacerlo.
    Gracias

    Y estando en el contexto de un gestor de bases de datos ¿porque quieres retroceder 30 años y utilizar ficheros planos para almacenar información?
    Es mucho más sencillo (y eficaz, y versátil, y...) definir una tabla y almacenar en ella los mensajes que tienes pensado enviar al fichero de texto.
    Why do you want to use ancient flat files when you have at your hands the power of sorting/searching/storing of a database management system?.
    It is a lot easier and surely more productive to create a table and store there the messages you want to accumulate in txt files.

  • EM doesn't connect with database

    Hi all,
    I am a beginner in Oracle.
    Currently, I have installed Oracle Database 10g Release 2 Patch Set 1 and I have created a new database. I have defined also the system variables, ORACLE_SID and ORACLE_HOME.
    I launch the oracle services through a batch process
    net start OracleOraDb10g_home1TNSListener
    net start OracleServiceSEDETEP
    net start OracleDBConsoleSEDETEP
    net start OracleOraDb10g_home1iSQL*PlusAll services seem to start OK.
    Well, now I execute emctl status dbconsole and the answer is the folowing:
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.2.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://ZFNARTSGI14.MDEF.ES:1158/em/console/aboutApplication
    EM Daemon is not running.
    Logs are generated in directory C:\oracle\product\10.2.0\db_1/ZFNARTSGI14.MDEF.E
    S_SEDETEP/sysman/log
    If I try to connect through the web browser, I can insert my user, but the database instance shows "Pending Status" and when I click in this link EM DB Control shows
    "Error to search the target SEDETEP in the repository......".
    The dabase was created with Enterprise Manager Repository enabled.
    What is the problem????
    Many thanks in advance,
    David2005

    I have dropped the dbconsole and next I try to create newly, but always I obtain an error.
    emca_repos_create_2006-06-27_04-01-56-PM.log
    Check if repos user already exists.
    antiguo 6:     WHERE username=UPPER('&EM_REPOS_USER');
    nuevo     6: WHERE username=UPPER('SYSMAN');
    antiguo 8: IF ( '&EM_CHECK_TYPE' = 'EXISTS') THEN
    nuevo     8: IF ( 'NOT_EXISTS' = 'EXISTS') THEN
    antiguo 11:     raise_application_error(-20000, '&EM_REPOS_USER does not exists..');
    nuevo 11:     raise_application_error(-20000, 'SYSMAN does not exists..');
    antiguo 14: ELSIF ( '&EM_CHECK_TYPE' = 'NOT_EXISTS' ) THEN
    nuevo 14: ELSIF ( 'NOT_EXISTS' = 'NOT_EXISTS' ) THEN
    antiguo 17:     raise_application_error(-20001, '&EM_REPOS_USER already exists..');
    nuevo 17:     raise_application_error(-20001, 'SYSMAN already exists..');
    antiguo 21:     raise_application_error(-20002, 'Invalid Check type &EM_CHECK_TYPE');
    nuevo 21:     raise_application_error(-20002, 'Invalid Check type NOT_EXISTS');
    DECLARE
    ERROR en línea 1:
    ORA-20001: SYSMAN already exists..
    ORA-06512: en línea 17
    emca_2006-06-27_04-01-23-PM.log
    27-jun-2006 16:01:23 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    27-jun-2006 16:01:23 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to true
    27-jun-2006 16:01:23 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    27-jun-2006 16:01:23 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    27-jun-2006 16:01:23 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'create' set to true
    27-jun-2006 16:01:23 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: C:\oracle\product\10.2.0\db_1
    27-jun-2006 16:01:23 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:23 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: C:\oracle\product\10.2.0\db_1
    27-jun-2006 16:01:27 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: SEDETEP
    27-jun-2006 16:01:27 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:27 oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster.isCluster: false. Skip call to getLocalNode
    27-jun-2006 16:01:27 oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    27-jun-2006 16:01:27 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:27 oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: SEDETEP Host: <SERVER DOMAIN> Node: null OH: C:\oracle\product\10.2.0\db_1 isDBC: false
    27-jun-2006 16:01:27 oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: SEDETEP Host: <SERVER DOMAIN> Node: null OH: C:\oracle\product\10.2.0\db_1 agentHome: null isCentral: false
    27-jun-2006 16:01:27 oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: SEDETEP Host: <SERVER DOMAIN> Node: null OH: C:\oracle\product\10.2.0\db_1 agentHome: null isCentral: false
    27-jun-2006 16:01:27 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro SYS_PWD
    27-jun-2006 16:01:27 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user:
    27-jun-2006 16:01:28 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: ORA-01031: privilegios insuficientes
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-01031: privilegios insuficientes
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1467)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:814)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:363)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:101)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:143)
         at oracle.sysman.emcp.DatabaseChecks.isASMDb(DatabaseChecks.java:715)
         at oracle.sysman.emcp.EMConfigAssistant.getParamsWarnsList(EMConfigAssistant.java:1793)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2276)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:928)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    27-jun-2006 16:01:28 oracle.sysman.emcp.DatabaseChecks isASMDb
    CONFIG: Instancia de base de datos no disponible.
    oracle.sysman.emcp.exception.DatabaseUnavailableException: Instancia de base de datos no disponible.
         at oracle.sysman.emcp.DatabaseChecks.throwDBUnavailableException(DatabaseChecks.java:131)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailabilityImpl(DatabaseChecks.java:124)
         at oracle.sysman.emcp.DatabaseChecks.checkDbAvailability(DatabaseChecks.java:143)
         at oracle.sysman.emcp.DatabaseChecks.isASMDb(DatabaseChecks.java:715)
         at oracle.sysman.emcp.EMConfigAssistant.getParamsWarnsList(EMConfigAssistant.java:1793)
         at oracle.sysman.emcp.EMConfigAssistant.getDisplayAndPromptWarnsParms(EMConfigAssistant.java:2276)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:928)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    27-jun-2006 16:01:28 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    27-jun-2006 16:01:30 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    27-jun-2006 16:01:38 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro SYS_PWD
    27-jun-2006 16:01:38 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:38 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:43 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: DBSNMP
    27-jun-2006 16:01:43 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:49 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EMAIL_ADDRESS value:
    27-jun-2006 16:01:50 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: MAIL_SERVER_NAME value:
    27-jun-2006 16:01:50 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:50 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value:
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CONFIRMATION ANSWER value: sí
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro LOG_FILE
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DB_UNIQUE_NAME
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DB_UNIQUE_NAME
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:54 oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: SEDETEP
    27-jun-2006 16:01:54 oracle.sysman.emcp.EMConfig perform
    INFO: Esta operación se está registrando en C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\SEDETEP\emca_2006-06-27_04-01-23-PM.log.
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: DBSNMP
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro MODIFY_SID
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro MODIFY_SID
    27-jun-2006 16:01:54 oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DB_UNIQUE_NAME
    27-jun-2006 16:01:54 oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: SEDETEP
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DB_DOMAIN
    27-jun-2006 16:01:54 oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: SEDETEP
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: SEDETEP
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro MODIFY_SID
    27-jun-2006 16:01:54 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DBID
    27-jun-2006 16:01:54 oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    27-jun-2006 16:01:54 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 2471832204
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro MODIFY_SID
    27-jun-2006 16:01:55 oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DB_UNIQUE_NAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: SEDETEP
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DB_DOMAIN
    27-jun-2006 16:01:55 oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: SEDETEP
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: SEDETEP
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro EMAIL_ADDRESS
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro MAIL_SERVER_NAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:55 oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro MODIFY_SID
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro MODIFY_SID
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro GLOBAL_DB_UNIQUE_NAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DB_DOMAIN
    27-jun-2006 16:01:55 oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: SEDETEP
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copiando archivo C:\oracle\product\10.2.0\db_1\sysman\config\emd.properties en C:\oracle\product\10.2.0\db_1\sysman\config\emd.properties.emca.tmp
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: El archivo original C:\oracle\product\10.2.0\db_1\sysman\config\emd.properties se ha copiado en C:\oracle\product\10.2.0\db_1\sysman\config\emd.properties.emca.tmp
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copiando archivo C:\oracle\product\10.2.0\db_1\sysman\config\emoms.properties en C:\oracle\product\10.2.0\db_1\sysman\config\emoms.properties.emca.tmp
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: El archivo original C:\oracle\product\10.2.0\db_1\sysman\config\emoms.properties se ha copiado en C:\oracle\product\10.2.0\db_1\sysman\config\emoms.properties.emca.tmp
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copiando archivo C:\oracle\product\10.2.0\db_1\sysman\emd\targets.xml en C:\oracle\product\10.2.0\db_1\sysman\emd\targets.xml.emca.tmp
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: El archivo original C:\oracle\product\10.2.0\db_1\sysman\emd\targets.xml se ha copiado en C:\oracle\product\10.2.0\db_1\sysman\emd\targets.xml.emca.tmp
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_RECONFIG' set to false
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: SEDETEP Host: <SERVER DOMAIN> Node: null OH: C:\oracle\product\10.2.0\db_1 agentHome: null isCentral: false
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: SEDETEP Host: <SERVER DOMAIN> Node: null OH: C:\oracle\product\10.2.0\db_1 isDBC: false
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_CONFIGURED' set to false
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_DBCONTROL_CONFIGURED' set to false
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DBCONTROL_HTTP_PORT
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro AGENT_PORT
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro RMI_PORT
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro JMS_PORT
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: SEDETEP Host: <SERVER DOMAIN> Node: null OH: C:\oracle\product\10.2.0\db_1 isDBC: false
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro ORACLE_HOSTNAME
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro PORTS_FILE
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro JMS_PORT_SEDETEP
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro JMS_PORT
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro RMI_PORT_SEDETEP
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro RMI_PORT
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DBCONTROL_HTTP_PORT_SEDETEP
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DBCONTROL_HTTP_PORT
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro AGENT_PORT_SEDETEP
    27-jun-2006 16:01:55 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro AGENT_PORT
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\oracle\product\10.2.0\db_1\oui
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\oracle\product\10.2.0\db_1\oui
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [C:\oracle\product\10.2.0\db_1, C:\oracle\product\10.2.0\db_HTML]
    27-jun-2006 16:01:55 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME C:\oracle\product\10.2.0\db_1
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from C:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from C:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from C:\oracle\product\10.2.0\db_1\oc4j\j2ee\OC4J_DBConsole
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from C:\oracle\product\10.2.0\db_1\sysman\config\emd.properties
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME C:\oracle\product\10.2.0\db_HTML
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from C:\oracle\product\10.2.0\db_HTML\sysman\config\emd.properties
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error al leer el archivo C:\oracle\product\10.2.0\db_1\install\staticports.ini
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.PortManager getFreePorts
    CONFIG: C:\oracle\product\10.2.0\db_1:<SERVER DOMAIN>:null:SEDETEP:{}:null:{DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    27-jun-2006 16:01:56 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro AGENT_PORT_SEDETEP
    27-jun-2006 16:01:56 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: AGENT_PORT_SEDETEP value: 3938
    27-jun-2006 16:01:56 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro DBCONTROL_HTTP_PORT_SEDETEP
    27-jun-2006 16:01:56 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBCONTROL_HTTP_PORT_SEDETEP value: 1158
    27-jun-2006 16:01:56 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro JMS_PORT_SEDETEP
    27-jun-2006 16:01:56 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: JMS_PORT_SEDETEP value: 5540
    27-jun-2006 16:01:56 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No se ha definido ningún valor para el parámetro RMI_PORT_SEDETEP
    27-jun-2006 16:01:56 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: RMI_PORT_SEDETEP value: 5520
    27-jun-2006 16:01:56 oracle.sysman.emcp.EMDBPreConfig getFreePorts
    CONFIG: Ports assigned for SID: SEDETEP : {DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SEDETEP, oracleHome: C:\oracle\product\10.2.0\db_1, and user: SYS
    27-jun-2006 16:01:56 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    27-jun-2006 16:01:56 oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: Spooling to C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\SEDETEP\emca_repos_create_2006-06-27_04-01-56-PM.log
    27-jun-2006 16:01:56 oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creando el repositorio de EM. Puede tardar unos minutos...
    27-jun-2006 16:01:56 oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: ORA-20001: SYSMAN already exists..
    ORA-06512: en línea 17
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-20001: SYSMAN already exists..
    ORA-06512: en línea 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:365)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:187)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:129)
         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)
    27-jun-2006 16:01:56 oracle.sysman.emcp.EMReposConfig invoke
    GRAVE: Error al crear el repositorio
    27-jun-2006 16:01:56 oracle.sysman.emcp.EMReposConfig invoke
    INFO: Consulte el archivo log en C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\SEDETEP\emca_repos_create_<fecha>.log para obtener más información.
    27-jun-2006 16:01:56 oracle.sysman.emcp.EMConfig perform
    GRAVE: Error al crear el repositorio
    Consulte el archivo log en C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\SEDETEP\emca_2006-06-27_04-01-23-PM.log para obtener más información.
    27-jun-2006 16:01:56 oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error al crear el repositorio
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:199)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:129)
         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)
    Sorry, I have copied all content of file, because I don't know how to extract the valid information.
    Thanks and Regards,
    David.

  • Logical Database in Abap Objects

    Hi to All
    I want do it a program report using a Logical Database.
    Is this possible ??? But when I make a GET <node>, occurs the following error:
             "" Statement "ENDMETHOD" missing.  ""
    I'm doing the following:
    CLASS MONFIN IMPLEMENTATION.
           METHOD TRAER_DATOS.
                   GET VBRK.
           ENDMETHOD.
    ENDCLASS.
    Please, somebody tell me how I use the logical database in Abap Objects.
    Thank you very much
    Regards
    Dario R.

    Hi there
    Logical databases whilst of "some use" are not really part of OO.
    If you want to use a logical database in an abap OO program I would create a special class which just does the get data from your DB and pass this either at record or table level.
    Techniques such as GET XXXX LATE aren't really part of any OO type of application since at Object Instantiation time you should be able to access ALL the attributes of that object.
    As far as OO is concerned Logical databases are a throwback to "Dinosaur Technology".
    Since however modules such as SD and FI are still heavily reliant on relational structures (i.e linked tables etc)  then there is still some limited life in this stuff but for OO try and solve it by another method.
    If you really must use this stuff in OO then do it via a FMOD call and save the data in a table which your method will pass back to your application program.
    You can't issue a GET command directly in a method.
    Cheers
    Jimbo

  • Logical Database in Webdynpro

    Hello,
    I have a program in R/3 that is based on a logical database. I don't want to have to write the program all over again in Webdynpro.
    Is there a way to use the logical database in Webdynpro for ABAP.

    Basically WDA calls a FM and then the following help is a good starting point:
    "Calling a Logical Database Using a Function Module"
    http://help.sap.com/saphelp_nw04/helpdata/en/64/237f8cd43711d1950b0000e8353423/content.htm
    Kindly close the thread and award appropriate a points to the answer given.
    Sergio

  • Logical database in adhoc query

    Hello All,
    Can anyone tell me what is the logical database in adhoc query?

    Hi
    When you create a query , you have to select an infoset. Infoset can be considered as a source from which data is populated in the Query Fields.
    Infosets are created from Transaction SQ02.
    There can be four methods through which an Infoset can become a source of data:
    1.  Table join ( By joining two or more tables from Data dictionary)
         example: Joining tables PA0001 and PA0006 on Pernr to get a one resultant dataset
    2. Direct read of Basis Table ( Like PA0001 as a source for data in Infoset )
    3. Logical Database ( A Pre-written Program by SAP that extract data from clusters, tables taking care of authorizations and validity periods)
    Example : Logical database PNP, PNPCE (Concurrent Employement),PCH ( LDB for Personnel Development Data)
    Custom Logical DBs can be created in T_Code SE-36.
    4. Data Retrieval by a Program ( Custom code written by ABAP developers which will collect and process data) . This program has a corresponding Structure in data dictionary and the fields of this structure will be used in query)
    Reward Points, if helpful.
    Regards
    Waseem Imran

  • LOGICAL DATABASE IN HR ABAP PRPGRAMMING

    Hi Friends,
    what is use of LOGICAL DATABASE IN HR ABAP PROGRAMMING
    AND END-OF-SELECTION EVENT IN HR PROGRAMMING PROGRAMMING???
    regards,
    vijay.

    hi
    HR Logical Databases
    In Human Resources (HR), the following logical databases can be used as a data source for HR InfoSets:
    PNP (PNPCE)
    PAP
    PCH
    By selecting a logical database, you determine the HR data that can be reported on using an InfoSet.
    Logical Database PCH
    This logical database generally enables you to report on all HR infotypes. However, you are advised not to use this logical database unless you want to report on Personnel Planning data.
    Logical Database PNP (or PNPCE)
    Use logical database PNP to report on HR master data. It is possible to use logical database PCH to access this data, but PNP meets such reporting requirements more quickly because it is best suited to the task of selecting persons.
    Logical database PNP enables you to access HR master data and infotypes from Personnel Planning. For example, you have the following options:
    Reporting on the costs, number of attendees booked, and instructor for a business event on which an employee is booked
    Reporting on working time and planned compensation for a position that an employee occupies
    Reporting on the validity and proficiency of a qualification that an employee fulfils
    From a technical perspective, this means you can use PNP to report on all of the infotypes that exist for objects (infotype 1000) that have a direct relationship (infotype 1001) with the Person object.
    The ability to access infotypes from Personnel Planning using logical database PNP is a special feature that you can only use in the context of SAP Query and Ad Hoc Query. You cannot use this functionality for ABAP reports you programmed yourself.
    You can also use logical database PNP to report on data from Personnel Time Management (infotypes 2000 to 2999) and Payroll (special payroll infotypes for the USA and customer infotypes; for more information, access Customizing for the Human Resources Information System and see Payroll Results).
    Logical Database PAP
    Logical database PAP enables you to access data from Recruitment.
    regards
    navjot
    reward if helpfull

  • Installation problem with NW'04 SR1: database connection failed

    Hi all,
    while installing NW '04 SR1 on Windows Server 2003 SP1 and MS SQL Server 2000 SP4 I ran into an error related to the database connection. While performing the step "Load Java Database content" SAPinst crashes with the message
    com.sap.sql.log.OpenSQLException: Could not load class com.ddtek.jdbc.sqlserver.SQLServerDriver.
    The connection to the SLQ Server with e.g. the Query Analyzer is OK. I had a problem with this installation setup before (have a look at the corresponding <a href="https://forums.sdn.sap.com/thread.jspa?threadID=338638&tstart=0">thread</a> ), the JDBC drivers where missing on the installation master but after copying them in the right direction the installation went on with no problem up to this point...
    Has anybody an idea what could have happened here? Is this maybe a problem connected to the one I recently had
    Below I attached the sapinst.log and jload.log with more detailed messages.
    sapinst.log ###########
    INFO 2007-03-12 22:06:24
    Working directory changed to C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_~1\ONE_HOST.
    INFO 2007-03-12 22:06:24
    Output of D:\Java/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\base.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\util.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\sqlserver.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\spy.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jce_export.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jsse.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_smime.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_ssl.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key' '-dataDir' 'S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP' '-job' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML' '-log' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log' is written to the logfile C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_~1\ONE_HOST/jload.java.log.
    WARNING 2007-03-12 22:06:26
    Execution of the command "D:\Java/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\base.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\util.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\sqlserver.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\spy.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jce_export.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jsse.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_smime.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_ssl.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key' '-dataDir' 'S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP' '-job' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML' '-log' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log'" finished with return code 1. Output:
    java version "1.4.2_13"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_13-b06)
    Java HotSpot(TM) Client VM (build 1.4.2_13-b06, mixed mode)
    12.03.2007 22:06:25 com.sap.inst.jload.Jload main
    INFO: Jload -sec WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key -dataDir S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP -job C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML -log C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log
    12.03.2007 22:06:26 com.sap.inst.jload.Jload main
    SCHWERWIEGEND: couldn't connect to DB
    com.sap.sql.log.OpenSQLException: Could not load class com.ddtek.jdbc.sqlserver.SQLServerDriver.
    ERROR 2007-03-12 22:06:26
    CJS-20065  Execution of JLoad tool 'D:\Java/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\base.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\util.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\sqlserver.jar;D:\usr\sap/WPT/JC10/j2ee\jdbc\spy.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jce_export.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_jsse.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_smime.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/iaik_ssl.jar;D:/usr/sap/WPT/SYS/global/security/lib/tools/w3c_http.jar' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key' '-dataDir' 'S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP' '-job' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML' '-log' 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log'' aborts with returncode 1. Check 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log' and 'C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.java.log' for more information.
    jload.log ###########
    12.03.07 22:06 com.sap.inst.jload.Jload main
    INFO: Jload -sec WPT,jdbc/pool/WPT,D:\usr\sap\WPT\SYS\global/security/data/SecStore.properties,D:\usr\sap\WPT\SYS\global/security/data/SecStore.key -dataDir S:/D51030724\J2EE_OSINDEP\J2EE-ENG/JDMP -job C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/IMPORT.XML -log C:\PROGRA1\SAPINS1\NW04SR1\WEBAS_1\ONE_HOST/jload.log
    12.03.07 22:06 com.sap.inst.jload.Jload main
    SEVERE: couldn't connect to DB
    com.sap.sql.log.OpenSQLException: Could not load class com.ddtek.jdbc.sqlserver.SQLServerDriver.
    Best regards,
    Bernd

    Hello Kairat,
    Please follow the below mentioned guide to install it.
    Check all the parameters to set and run pre requisite checker before starting installation.
    Keep in mind that before starting any SAP installation you should always run prerequisite checker.
    https://websmp205.sap-ag.de/instguides --> SAP Netweaver -->SAP Netweaver 7.0 -- > Installations --> EHP2
    Regards,
    Amit Barnawal

  • Message: "The database structure has been modified" every time I log to SAP

    Hello,
    "The database structure has been modified. In order to resume this process, all open windows will be closed". Every time I log to one of my companies in SAP Business One this message appears.
    I haven't installed any new addons and made no changes in database structure (and any other user hasn't done any changes), but this message appears always when I log to company for the first time (when I try to log on another user or log to another company there is no message). Can anyone help me with this problem?
    Best regards
    Ela Świderska

    Hi Ela Świderska,
    You may check this thread first:
    UDFs disappeared
    Thanks,
    Gordon

  • SSO to database

    We have Business Objects 3.1 SP2 FP2.3 running on Windows 2003 R2 SP2 64bits.
    CMS database on SQL 2005 x64
    Environment runs on Apache Tomcat
    Single Sign-On with kerberos on Active Directory is working fine.
    We have developers who want to use their Crystal Reports with SSO also and not use SQL authentication like they used to do in previous BO versions.
    In Windows AD Authenticaton of the CMC, I checked the option Cache security context (required for SSO database)
    In the Database Configuration of the Crystal Report we're testing, in the section "When viewing report", we selected Use SSO context for database logon
    Is there any other necessary configuration to be done in any config file?
    Not sure whether this should be added but in the krb5.ini file, I added the following value under libdefaults (just before the realms section): forwardable = true
    When I try to view the report, I get the following error message in InfoVIew:
    Error in File "testreport": Unable to connect: incorrect log on parameters: Details: [Database Vendor Code: 18456]
    For the same kind of report but with the option: "Use same database logon as when report is run", with SQL authentication parameters, everything is OK.
    DEV Environment: one InfoVIew FrontEnd server and one BO CMS server
    PROD Environment: one InfoView FrontEnd server and 2 BO clustered servers
    Regards
    Jay

    I think [this thread should get you going|SSO2DB / Use Database Credentials; about half way down I worte a response with links to setup the DB for kerberos.
    Regards,
    Tim

  • APEX-The manullay created column is not getting updated in the database

    Dear all
    I have a form on page, which is created along with a report using Form on a Table with Report option. From the form I have deleted one field and recreated manullay as set the property as database column. When I am calling from the report page (using defualt edit option) the value is showing there, but if I am 'Apply Changes' , the column value in database is get updated with null.
    Please help
    DJ.

    This is the SQL and PL/SQL forum.
    Please re-post this on the APEX forum.
    Oracle Application Express (APEX)

Maybe you are looking for

  • How to delete or disable a systemd timer?

    I don't need mandb to run everyday. Especially in my virtual machine. So I do this: sudo rm -fr /usr/lib/systemd/system/man-db.* sudo systemctl daemon-reload sudo systemctl disable man-db.timer but I still got this: systemctl list-timers --all NEXT L

  • Using Excel as  Datasource in Crystal Reports 8.5

    I have never used Excel as a source for Crystal data and I am having a bit of an issue I believe. I have an Excel file on my desktop that I am using as the datasource. Eventually it will be out on a network drive. I set up all my reports as blank rep

  • What are the differences between MBP 13" and MBP 15"?

    What is the different between those Hard Disk "rpm"...Explain in detail thanks... 750GB 5400-rpm hard drive and 750GB 7200-rpm hard drive, 500GB 5400-rpm hard drive and 1TB 5400-rpm hard drive... I don't really get it...can anyone help me clear my pi

  • Develop Module

    Develop Module is disabled message: Please renew your membership to reactivate the develop module. My membership is up to date...What should I do?

  • Links in filmstrip web gallery

    I am trying to add hyperlink to the image description in filmstrip image gallery crated in CS5 bridge. I can add simple link and it works but I would like to make it more visible / attractive. I am trying all different trick modifying <title> tag in