Unable to start Extract and Replicate process?

Hi,
I have setup GG b/w two 10.2 databases in two different server(RHEL 5) . But unable to start the extract and replicate process
Source
GGSCI (prod.naveed.com) 1> info all
Program     Status      Group       Lag at Chkpt  Time Since Chkpt
MANAGER     STOPPED                                          
EXTRACT     STOPPED     EXT1        00:00:00      00:43:42   
GGSCI (prod.naveed.com) 2> start mgr
Manager started.
GGSCI (prod.naveed.com) 3> info all
Program     Status      Group       Lag at Chkpt  Time Since Chkpt
MANAGER     RUNNING                                          
EXTRACT     STOPPED     EXT1        00:00:00      00:43:48   
GGSCI (prod.naveed.com) 4> start extract ext1
Sending START request to MANAGER ...
EXTRACT EXT1 starting
GGSCI (prod.naveed.com) 5> info all
Program     Status      Group       Lag at Chkpt  Time Since Chkpt
MANAGER     RUNNING                                          
EXTRACT     STOPPED     EXT1        00:00:00      00:43:56   
GGSCI (prod.naveed.com) 6> view params mgr
PORT 7809
USERID GG_ADMIN, PASSWORD GG_ADMIN
PURGEOLDEXTRACTS /home/oracle/golden_gate/dirdat/ex, USECHECKPOINTS
GGSCI (prod.naveed.com) 7> view params ext1
–extract group–
extract ext1
–connection to database–
userid GG_ADMIN, password GG_ADMIN
–hostname and port for trail–
rmthost 172.168.1.11, mgrport 7809
–path and name for trail–
rmttrail /home/oracle/golden_gate/dirdat/lt
–DDL support
DDL INCLUDE ALL
ddl include mapped objname NAVEED.*;
–DML
table NAVEED.*;
GGSCI (prod.naveed.com) 8> exitTarget
[oracle@Test golden_gate]$ ./ggsci
Oracle GoldenGate Command Interpreter for Oracle
Version 11.2.1.0.1 OGGCORE_11.2.1.0.1_PLATFORMS_120423.0230_FBO
Linux, x86, 32bit (optimized), Oracle 10g on Apr 23 2012 07:06:02
Copyright (C) 1995, 2012, Oracle and/or its affiliates. All rights reserved.
GGSCI (Test.naveed.com) 1> info all
Program     Status      Group       Lag at Chkpt  Time Since Chkpt
MANAGER     RUNNING                                          
REPLICAT    STOPPED     REP1        00:00:00      00:35:39   
GGSCI (Test.naveed.com) 3> start replicat rep1
Sending START request to MANAGER ...
REPLICAT REP1 starting
GGSCI (Test.naveed.com) 4> info all
Program     Status      Group       Lag at Chkpt  Time Since Chkpt
MANAGER     RUNNING                                          
REPLICAT    STOPPED     REP1        00:00:00      00:36:06   
GGSCI (Test.naveed.com) 5> view params mgr
PORT 7810
USERID GG_ADMIN, PASSWORD GG_ADMIN
PURGEOLDEXTRACTS /home/oracle/golden_gate/dirdat/ex, USECHECKPOINTS
GGSCI (Test.naveed.com) 6> view params rep1
-Replicat group-
replicat rep1
–target database login –
USERID GG_ADMIN, PASSWORD GG_ADMIN
–file for dicarded transaction –
discardfile /home/oracle/golden_gate/discard/rep1_discard.txt, append, megabytes 10
–ddl support
DDL INCLUDE ALL
DDLERROR DEFAULT IGNORE RETRYOP
–Specify table mapping —
MAP NAVEED.*,       TARGET NAVEED.*;
GGSCI (Test.naveed.com) 7>

Thanks it worked, I m able to start both extract and replicate process.
But when i create a new table and do some DML it is not getting replicated in the TARGET DB?
Source
GGSCI (prod.naveed.com) 1> info all
Program     Status      Group       Lag at Chkpt  Time Since Chkpt
MANAGER     RUNNING                                          
EXTRACT     RUNNING     EXT1        00:30:52      00:00:10   
GGSCI (prod.naveed.com) 2> view mgr
ERROR: Invalid command.
GGSCI (prod.naveed.com) 3> view params mgr
PORT 7809
USERID GG_ADMIN, PASSWORD GG_ADMIN
PURGEOLDEXTRACTS /home/oracle/golden_gate/dirdat/ex, USECHECKPOINTS
GGSCI (prod.naveed.com) 4> view params ext1
--extract group
extract ext1
--connection to database
userid GG_ADMIN, password GG_ADMIN
--hostname and port for trail
rmthost prod.naveed.com, mgrport 7809
--path and name for trail
rmttrail /home/oracle/golden_gate/dirdat/lt
--DDL support
ddl include mapped objname NAVEED.*;
--DML
table NAVEED.*;Target
GGSCI (Test.naveed.com) 3> info all
Program     Status      Group       Lag at Chkpt  Time Since Chkpt
MANAGER     RUNNING                                          
REPLICAT    RUNNING     REP1        00:00:00      00:00:02   
GGSCI (Test.naveed.com) 4> view params mgr
PORT 7810
USERID GG_ADMIN, PASSWORD GG_ADMIN
PURGEOLDEXTRACTS /home/oracle/golden_gate/dirdat/ex, USECHECKPOINTS
GGSCI (Test.naveed.com) 5> view params rep1
--Replicat group
replicat rep1
--target database login –
USERID GG_ADMIN, PASSWORD GG_ADMIN
--file for dicarded transaction –
discardfile /home/oracle/golden_gate/discard/rep1_discard.txt, append, megabytes 10
--ddl support
DDL INCLUDE ALL
--Specify table mapping
MAP NAVEED.*, TARGET NAVEED.*;Source
SQL> conn NAVEED/NAVEED
Connected.
SQL> create table tab_1 (id number,rnd_str varchar2(12));
SQL> insert into tab_1 values (1,'test_1');
SQL>commit;
SQL> select * from tab_1;
        ID RND_STR
         1 test_1Target database:
SQL> conn NAVEED/NAVEED
Connected.
SQL> select * from tab_1;
select * from tab_1
ERROR at line 1:
ORA-00942: table or view does not exist

Similar Messages

  • Golden gate extract and replicate process are not running.

    All,
    I am trying replicate data between two oracle databases using golden gate.
    I am trying this scenario in a single machine(two databases and golden gate are on same windows machine)
    1. I have two databases PROD, UAT both are running on 11.2 oracle home.
    2. Created the ggate user both the databases, and enabled supplemental logging.
    3. Ran the following scripts in both databases.
    SQL> @marker_setup.sql
    SQL> @ddl_setup.sql
    SQL> @role_setup.sql
    SQL> grant GGS_GGSUSER_ROLE to ggate;
    SQL> @ddl_enable.sql
    4. Connected the source database (PROD) in ggsci prompt
    GGSCI (home-c07402bbc5) 79> add extract ext1, tranlog, begin now
    add exttrail C:\app\Bhanu\Goldengate\lt, extract ext1
    edit params ext1
    EXTRACT ext1
    USERID ggate@PROD, PASSWORD 123456
    RMTHOST home-c07402bbc5, MGRPORT 7840
    rmttrail C:\app\Bhanu\Goldengate\lt
    ddl include mapped objname bhanu.* // bhanu is a schema in PROD database.
    TABLE bhanu.*;
    5. Connected the target database(UAT) in ggsci prompt
    add checkpointtable ggate.checkpoint
    edit params ./GLOBALS
    GGSCHEMA ggate
    CHECKPOINTTABLE ggate.checkpoint
    add replicat rep1, exttrail C:\app\Bhanu\Goldengate\Mt,checkpointtable ggate.checkpoint
    edit params rep1
    replicat rep1
    ASSUMETARGETDEFS
    userid ggate@UAT, password 123456
    discardfile C:\app\Bhanu\Goldengate\rep1_discard.txt, append, megabytes 10
    map bhanu.*, target kiran.*;
    After that started the extract, replicat using
    start extract ext1, start replicate rep1
    Now the status.
    GGSCI (home-c07402bbc5) 103> info all
    Program Status Group Lag Time Since Chkpt
    MANAGER RUNNING
    EXTRACT STOPPED EXT1 00:00:00 00:11:43
    REPLICAT STOPPED REP1 00:00:00 00:21:16
    Can you please help me what is wrong in my setup and why extract and replicate process are not running.
    Edited by: user12178861 on Nov 19, 2011 11:22 AM

    Thanks for your quick reply.
    I have done few changes but extract, replicate process not running.
    couple of points I would like to share with you regarding my setup.
    1. I am using single golden date instance to replicate the data between PROD and UAT databases.
    2. GGSCI (home-c07402bbc5) 1> dblogin userid ggate@PROD,PASSWORD 123456
    Successfully logged into database.
    GGSCI (home-c07402bbc5) 2> info all
    Program Status Group Lag Time Since Chkpt
    MANAGER RUNNING
    EXTRACT STOPPED EXT1 00:00:00 01:23:29
    REPLICAT STOPPED REP1 00:00:00 01:33:02
    GGSCI (home-c07402bbc5) 3> VIEW REPORT EXT1
    ERROR: REPORT file EXT1 does not exist.
    GGSCI (home-c07402bbc5) 4> start er *
    Sending START request to MANAGER ...
    EXTRACT EXT1 starting
    Sending START request to MANAGER ...
    REPLICAT REP1 starting
    GGSCI (home-c07402bbc5) 5> VIEW REPORT EXT1
    ERROR: REPORT file EXT1 does not exist.
    GGSCI (home-c07402bbc5) 6> info all
    Program Status Group Lag Time Since Chkpt
    MANAGER RUNNING
    EXTRACT STOPPED EXT1 00:00:00 01:24:10
    REPLICAT STOPPED REP1 00:00:00 01:33:44
    Target :
    GGSCI (home-c07402bbc5) 1> dblogin ggate@UAT,PASSWORD 123456
    ERROR: Unrecognized parameter (GGATE@UAT), expected USERID.
    GGSCI (home-c07402bbc5) 2> dblogin userid ggate@UAT,PASSWORD 123456
    Successfully logged into database.
    GGSCI (home-c07402bbc5) 5> add replicat rep1, exttrail C:\app\Bhanu\Goldengate/lt,checkpointtable ggate.checkpoint
    ERROR: REPLICAT REP1 already exists.
    GGSCI (home-c07402bbc5) 6> delete replicat rep1
    Deleted REPLICAT REP1.
    GGSCI (home-c07402bbc5) 7> add replicat rep1, exttrail C:\app\Bhanu\Goldengate/lt,checkpointtable ggate.checkpoint
    REPLICAT added.
    GGSCI (home-c07402bbc5) 8> edit params rep1
    GGSCI (home-c07402bbc5) 9> start er *
    Sending START request to MANAGER ...
    EXTRACT EXT1 starting
    Sending START request to MANAGER ...
    REPLICAT REP1 starting
    GGSCI (home-c07402bbc5) 10> info all
    Program Status Group Lag Time Since Chkpt
    MANAGER RUNNING
    EXTRACT STOPPED EXT1 00:00:00 01:29:46
    REPLICAT STOPPED REP1 00:00:00 00:00:48
    3. Is mandatory that I need two golden gate instances running each side ?
    Thanks for spending your time on this problem.

  • ERROR   ORA-12514: TNS: unable to start extract process

    Hi Experts,
    I have installed Oracle Golden Gate in the below environment.But unable to start extract process
    Primary site (source): This is production DB and up and running.
    RAC 2 nodes
    Oracle RAC 11.2.0.1.0
    ASM
    Oracle GoldenGate 11g Release 1 (11.1.1.0.0)
    Enterprise Linux Server release 5.5 (Carthage)
    Processor Type x64
    OS 64 bit
    target Site (destination):
    Standalone single server - Non RAC
    Oracle version 11.2.0.1.0
    ASM
    Oracle GoldenGate 11g Release 1 (11.1.1.0.0)
    Enterprise Linux Server release 5.5 (Carthage)
    Processor Type x64
    OS 64 bit
    Getting below error in logs while starting extract process:
    RECOVERY: reset to initial or altered checkpoint.
    2012-08-05 10:34:10  ERROR   OGG-00868  Oracle GoldenGate Capture for Oracle, aaa.prm:  Attaching to
    ASM server asm: (12514) ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor.
    2012-08-05 10:34:10  ERROR   OGG-01668  Oracle GoldenGate Capture for Oracle, aaa.prm:  PROCESS
    ABENDING.[oracle@ ggate]$
    Getting below error while connecting with asm instance directly:
    [oracle@ admin]$ sqlplus sys@asm as sysasm
    SQL*Plus: Release 11.2.0.1.0 Production on Sun Aug 5 11:16:11 2012
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Enter password:
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    [oracle@ ~]$ tnsping asm TNS Ping Utility for Linux: Version 11.2.0.1.0 - Production on 05-AUG-2012 11:55
    :42
    Copyright (c) 1997, 2009, Oracle. All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = xxx-
    scan)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = ASM) (I
    NSTANCE_NAME = +ASM1)))
    OK (0 msec) Any help Please ?
    Regards
    LazyDBA
    Edited by: LazyDBA11g on Aug 5, 2012 12:14 AM
    Edited by: LazyDBA11g on Aug 5, 2012 11:25 PM
    Edited by: LazyDBA11g on Aug 12, 2012 4:36 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hello JK,
    Thanks a lot for specific response.
    SQL> select INST_ID, NAME, VALUE from gv$parameter where name like '%_listener%';
    INST_ID NAME VALUE
    1 local_listener (DESCRIPTION=(ADDRESS_LIST=(AD
    DRESS=(PROTOCOL=TCP)(HOST=xxx_
    data1-vip)(PORT=1521))))
    1 remote_listener xxxdata-scan:1521
    2 local_listener (DESCRIPTION=(ADDRESS_LIST=(AD
    DRESS=(PROTOCOL=TCP)(HOST=xxx_
    data2-vip)(PORT=1521))))
    2 remote_listener xxxdata-scan:1521
    If I  add REMOTE_LISTENER pointing to SCAN ip address, Does it require DB bounce ? (Its production DB)
    Regards,
    LazyDBA
    Edited by: LazyDBA11g on Aug 10, 2012 12:01 PM
    Edited by: LazyDBA11g on Aug 12, 2012 4:48 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Unable to start extract(pump)

    Hi all,
    Iam unable to start extract. It failed with following error:
    'Database login information not specified in parameter file'.
    Configuration of extract is as follows:
    GGSCI (rhel) 33> view params e1tab1
    EXTRACT e1tab1
    USERID ggadmin@rhel, PASSWORD ggadmin
    EXTTRAIL ./dirdat/e1tab1
    TABLE SANDY.TAB1;
    GGSCI (rhel) 34> view params e1tab11
    EXTRACT e1tab11
    NOPASSTHRU
    RMTHOST rhel1, MGRPORT 7809
    RMTTRAIL ./dirdat/r1tab11.dat
    TABLE SANDY.TAB1;
    I specified database login credentials in e1tab1. And it started sucessfully. But e1tab11 is failed to start.
    Please help.
    Thanks,
    Sandy

    I don't understand the problem you have with the requirements to have the database connection specified in the parameter file. It's not a matter of debate. Write your own replication program/application if you don't like having to do this.
    Include the following parameters plus any others that apply to your database environment.
    -- Identify the data pump group:
    EXTRACT <pump>
    -- Specify database login information as needed for the database:
    [SOURCEDB <dsn_1>,][USERID <user>[, PASSWORD <pw>]]
    -- Specify the name or IP address of the target system:
    RMTHOST <target>, MGRPORT <portnumber>
    -- Specify the remote trail on the target system:
    RMTTRAIL <remote_trail>
    -- Allow mapping, filtering, conversion or pass data through as-is:
    [PASSTHRU | NOPASSTHRU]
    -- Specify tables to be captured:
    TABLE <owner>.<table>;

  • TS5376 Every time I try to install Itunes I get an error message saying it is unable to start services and to verify that I have sufficient privileges.  I am the administrator.  I have tried everything I can think of.

    Every time I try to install Itunes I get an error message saying it is unable to start services and to verify that I have sufficient privileges.  I am the administrator.  I have tried everything I can think of.  When I click the ingore option it doesn't install corectly and I get a message saying MSVCR80.dll file is missing.

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Unable to start Hyperion EPM Architect - Process Manager after upgrade

    Hi All,
    I'm unable to start Hyperion EPM Architect - Process Manager after upgrading from EPMA 11.1.1.3.0 to 11.1.1.3.03. I get the following error in the Event Viewer.
    Service cannot be started. Hyperion.DimensionServer.ProcessManager.Interface.ProcessManagerException: Cannot initialize the Session Manager. ---> Hyperion.DataAccessLayerCore.DataAccessLayerException: Database version mismatch:  Hyperion.SessionManager schema version is 9.5.0.0.0.10,  database schema version is 9.5.0.0.9.1.
    at Hyperion.DataAccessLayerCore.DataAccessLayer..ctor(NameValueCollection settings, String tablePrefix, String baseNamespace, String schemaVersion)
    at Hyperion.SessionManager.DAO.SessionManagerDataAccessLayer..ctor(NameValueCollection settings)
    at Hyperion.DimensionServer.SessionManager.SessionStoreRdbms.Initialize(String rdbmsVendor, String rdbmsConnParams, Int32 rdbmsCommandTimeout)
    at Hyperion.DimensionServer.SessionManager.SessionManager.Initialize(String jvmPath, String classPath, String ctgLibPath, String cssConnInfo, String hubHost, String hubPort, Boolean enableNestedGroups, String rdbmsVendor, String rdbmsConnParams, Int32 rdbmsCommandTimeout, Boolean restorePastInstanceSessions, Boolean ...
    I've run through all the steps of patching EPMA ran the Oracle_Upgrade 9.5.0.0.0.10 to 9.5.0.0.9.1.sql script per the patch readme. But can't figure out where it's pulling the schema version number from. Any ideas?
    Thanks,
    Chuck

    Hi,
    you forgot to update the EPMA database. Last step in patching is:
    Now, you must run the database upgrade script before starting the process manager.
    Run the single database upgrade script that corresponds to your database vendor.
    Oracle_Upgrade 9.5.0.0.0.10 to 9.5.0.0.9.1.sql
    SQL_Server_Upgrade 9.5.0.0.0.10 to 9.5.0.0.9.1.sql
    DB2_Upgrade 9.5.0.0.0.10 to 9.5.0.0.9.1.sql
    The scripts are located in the following directory:
    %HYPERION_HOME%\OPatch\EPMA_11_1_1_3_01\files\products\Foundation\BPMA\Server\conf\
    hope that helps.

  • Failure - Unable to start App and Service SRA001_PCAPPROVAL failed. Contact your system administrator

    Hi,
    We are getting "Failure - Unable to start App" and "Service SRA001_PCAPPROVAL failed. Contact your system administrator" error.
    we have already activated the service and assigned the required role to User.
    Regards,
    Trilochan
    Tags edited by: Michael Appleby

    Hi Masa,
    we are able to see these services:
    but we are not able to find service SRA001_PCAPPROVAL in
    Activate and Maintain services (/IWFND/MAINT_SERVICE) .
    Could you please guide us how we can get those Odate services for application ,what are the activities we have to perform.
    Regards,
    Trilochan

  • Unable to Start Extract Process

    hi,
    I am just start the extract process command & then i see the status. then the process is in STOP mode. i can't understand that why.
    I have also check the ggerror file. in which i can the extract process is runnig.
    but whn i run the command
    1.START EXTRACT EOLTP1
    starting...
    stats EOLTP01
    ERROR: EXTRACT EOLTP1 not currently running.
    2. GGSCI (s34klj69) 22> info extract EOLTP1
    EXTRACT EOLTP1 Initialized 2013-01-23 11:29 Status STOPPED
    Checkpoint Lag 00:00:00 (updated 52:16:51 ago)
    Log Read Checkpoint Oracle Redo Logs
    2013-01-23 11:29:21 Thread 1, Seqno 0, RBA 0
    waiting...thanks,AMSII
    Edited by: AMSI on Jan 24, 2013 11:48 PM

    Thanks Kamal,
    I have followed your instruction & just get the logs. Kindly will you like to tell me where is problem. because there is only one warning??? wht you suggest??
    Machine: 9000/800
    soft limit hard limit
    Address Space Size : unlimited unlimited
    Heap Size : 17179869184 17179869184
    File Size : unlimited unlimited
    CPU Time : unlimited unlimited
    Process id: 4400
    Description:
    ** Running with the following parameters **
    EXTRACT EOLTP1
    EXTTRAIL ./dirdat/sa
    ---SETENV (ORACLE_SID=SID_T)
    USERID OGG, PASSWORD *******
    DBOPTIONS ALLOWUNUSEDCOLUMN
    TABLE crispadm.TEST_OGG;
    CACHEMGR virtual memory values (may have been adjusted)
    CACHEBUFFERSIZE: 64K
    CACHESIZE: 8G
    CACHEBUFFERSIZE (soft max): 4M
    CACHEPAGEOUTSIZE (normal): 4M
    PROCESS VM AVAIL FROM OS (min): 15.74G
    CACHESIZEMAX (strict force to disk): 13.79G
    Database Version:
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production
    PL/SQL Release 9.2.0.7.0 - Production
    CORE     9.2.0.7.0     Production
    TNS for HPUX: Version 9.2.0.7.0 - Production
    NLSRTL Version 9.2.0.7.0 - Production
    Database Language and Character Set:
    NLS_LANG environment variable not set, using default value AMERICAN_AMERICA.US7ASCII.
    NLS_LANGUAGE = "AMERICAN"
    NLS_TERRITORY = "AMERICA"
    NLS_CHARACTERSET = "WE8ISO8859P1"
    Warning: NLS_LANG is not set. Please refer to user manual for more information.
    Regards,
    AMSII

  • Unable to start extract for Mysql DB on windows

    Hi,
    I have installed Mysql database on windows machine, also installed GoldenGate
    and i have edited the my.cnf (C:\Program Files\MySQL\MySQL Server 5.5) file with below entries,
    log-bin="C:\Program Files\MySQL\MySQL Server 5.5\test-bin.log"
    max_binlog_size=4096
    binlog_format=row
    and restarted the mysql service then add the mgr prm and created extract process.
    while trying to connect the mysql db from ggsci getting below error message
    GGSCI (PC) 29> dblogin sourcedb test, userid root
    Password:
    2012-12-04 15:05:04 WARNING OGG-00769 MySQL Login failed: . SQL error (2003).
    Can't connect to MySQL server on 'localhost' (10061).
    ERROR: Failed to connect to MySQL database engine for HOST localhost, DATABASE t
    est, USER root, PORT 3306.
    also Unable to start the extract process
    edit params exta
    extract exta
    dboptions host localhost, connectionport 3306
    sourcedb test, userid root, password *****
    exttrail E:\ogg_mysql\dirdat\ea
    table test.*;
    tried with exact hostname and localhost also but no luck.
    but i can able to connect the mysql through command prompt
    C:\Users\>mysql -u root test -p
    Enter password: ******
    Welcome to the MySQL monitor. Commands end with ; or \g.
    Your MySQL connection id is 2
    Server version: 5.5.28-log MySQL Community Server (GPL)
    Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    mysql>
    Edited by: 899920 on Dec 4, 2012 1:44 AM

    Hi ...
    Please check if the mysql_home variable is ok:
    MYSQL_HOME=<MySQL bin location>
    To locate the configuration file, Extract checks the MYSQL_HOME environment variable: If MYSQL_HOME is set, Extract uses the configuration file in the specified directory. If MYSQL_HOME is not set, Extract queries the information_schema.global_variables table to determine the MySQL installation directory.
    More details: http://docs.oracle.com/cd/E35209_01/doc.1121/e27289.pdf
    Try it and put here your experiences.

  • Unable to Start Soa_Server and BAM_SERVER in Web Logic Admin console

    Hi,
    I am new to this whole thing of SOA and web logic and trying to install SOA and web logic on my machine to learn SOA components.
    Appreciate your inputs on the error i am at now.
    I am trying to install SOA Suite 11.1.1.1 and in the process have installed web logic server as well.
    I am unable to start both the Bam_server and the SOA_SERVER and the error message, I get, when i try to start the server;
    ======================================================================
    For server bam_server1, the Node Manager associated with machine LocalMachine is not reachable.
    All of the servers selected are currently in a state which is incompatible with this operation or are not associated with a running Node Manager or you are not authorized to perform the action requested. No action will be performed.
    ======================================================================
    When i try to start , Node manager using start menu, i see a error as below :
    =============================================================
    May 18, 2012 6:12:56 PM weblogic.nodemanager.server.NMServer main
    SEVERE: Fatal error in node manager server
    java.net.BindException: Address already in use: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:383)
    at java.net.ServerSocket.bind(ServerSocket.java:328)
    at javax.net.ssl.impl.SSLServerSocketImpl.bind(Unknown Source)
    at java.net.ServerSocket.<init>(ServerSocket.java:194)
    at java.net.ServerSocket.<init>(ServerSocket.java:150)
    at javax.net.ssl.SSLServerSocket.<init>(SSLServerSocket.java:84)
    at javax.net.ssl.impl.SSLServerSocketImpl.<init>(Unknown Source)
    at javax.net.ssl.impl.SSLServerSocketFactoryImpl.createServerSocket(Unkn
    own Source)
    at weblogic.nodemanager.server.SSLListener.init(SSLListener.java:76)
    at weblogic.nodemanager.server.NMServer.start(NMServer.java:206)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:377)
    at weblogic.NodeManager.main(NodeManager.java:31)
    =============================================================
    Regards:
    Nagaraj.s

    First of all, I think this is a wrong forum. You had better use WebLogic Application Server forum - WebLogic Server - Upgrade / Install / Environment / Migration
    From the error: Address already in use: JVM_Bind one can guess that some config of your Node Manager is wrong.
    Note that you don't necessarily need the Node Manager to start WebLogic apps - it is necessary only if you want to use the Weblogic Console.
    The link to docs on WLS: http://www.oracle.com/technetwork/middleware/weblogic/documentation/index.html

  • Unable to start extract

    Hi all,
    Iam a newbie in Goldengate replication.
    When iam trying to start EXTRACT process it failed with following error:
    GGS ERROR 500 Could not open checkpoint file /oracle/10.4/dirchk/ELOAD01.cpe, mode 1 (error 2, No such file or directory).
    GGS ERROR 190 PROCESS ABENDING.
    Please help.
    Thanks,
    Sandy

    user12941120 wrote:
    When iam trying to start EXTRACT process it failed with following error:
    GGS ERROR 500 Could not open checkpoint file /oracle/10.4/dirchk/ELOAD01.cpe, mode 1 (error 2, No such file or directory).
    GGS ERROR 190 PROCESS ABENDING.Just after installing GG (i.e., after unzipping it), there's a single command that has to be run to "finish" the installation in ggsci: "create subdirs". Was this command run? That command creates the required subdirectories "dirprm", "dirchk", "dirdat", "dirdef", ...etc.
    After that, you have to create the prm file (ggsci => edit param eload01), then "add" the extract (ggsci => add extract eload01 ....). The "edit param" command creates a file eload01.prm inside dirprm, the command "add extract eload01" creates a file "eload01.cpe" inside of dirchk. Then, when you start the process (ggsci => start eload01), the prm file will be read to determine what should be done, and the checkpoint file (dirchk/eload01.cpe) will be periodically updated with the progress of the process; upon restart, the process will use the files in dirchk to start from where the process left off...
    Hope it helps,
    -Mike

  • Update failure resulted in being unable to start up and unrecognizable iPhone when connected to PC

    Hi Community!
    I have an iPhone 4S iOS 7.0.1
    Today I finally took my time to update it to 7.0.4 since I have post-noted it for a long time.
    As I later on arrived to see how the process was doing, my phone is only showing the apple logo (No loading bar underneath).
    Something have happened.
    As it is now the phone is still showing the Apple logo, unable to start up.
    What I have tried;
    - Pressed the Start button and Home button simultainously, the results varied depending on being connected or not.
       1. Being connected to charger or computer: The device turns itself off, then restarts and get stuck into the same phase (that being, showing the apple logo)
       2. When being not connected to charger or computer: The device shuts down, not restarting itself at all.
    - Connected it to the computer, the result being: I am not notified that any recognizable or unrecognizable device have been connected. Therefor iTunes is not able to reboot the device.
    I have run out of ideas how to solve this by myself. Is there anything else I can try by myself before turning it into an Apple service?
    Kind regards
    Anton L

    Hi Ant0n95,
    If you had an issue with an update and now your iPhone isn't responding, you may find the following articles helpful:
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/ts3281
    If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    Regards,
    - Brenden

  • Unable to start IB and IR XI 3.0 Unix

    I attempt to run Repository and get the following error when starting Java Web start...the following is from Java Web start log: (run on unix)
    An error occurred while launching/running the application.
    Title: Integration Builder
    Vendor: SAP AG
    Category: Download Error
    Unable to load resource: (http://mako:50000/dir/start/lib/aii_ibdir_client.jar,
    Also get this in exception log:
    JNLPException[category: Download Error : Exception: java.net.UnknownHostException: mako : LaunchDesc: null ]
         at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
         at com.sun.javaws.cache.DownloadProtocol.getDownloadSize(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorA
    I check hosts file and it has the ip first and the hostname mako and then the FQD.
    What gives
    thanks
    John

    The start page resolves FQD fine:
    http://hostname:50000/rep/start/index.jsp.
    But the repository workbench and Landscape directory doesn't fully resolve to host name. When selecting it on the index page.
    When I do include FQD name on browser, the webstart attempt to start up and display IB however if fails with the following:
    "Requested http://short domain name:50000/rep/start/lib/aii_ibrep_client.jar
    Failed to load resource
    The wrapped exception log shows:
    java.net.UnknownHostException: velssu09
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at sun.net.NetworkClient.doConnect(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.openServer(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.<init>(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.http.HttpClient.New(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
         at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
         at com.sun.javaws.net.BasicNetworkLayer.doRequest(Unknown Source)
         at com.sun.javaws.net.BasicNetworkLayer.doHeadRequest(Unknown Source)
         at com.sun.javaws.cache.DownloadProtocol.doDownload(Unknown Source)
         at com.sun.javaws.cache.DownloadProtocol.getDownloadSize(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadJarFiles(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadEagerorAll(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Any ideas?
    Thanks
    John

  • Unable to start Oracle Application Server processes

    I am having the same problem that a number of people have
    mentioned concerning ORA-20214 Unable to start OAS processes ...
    The problem seems related to Windows NT 4.0 SP4. One developer
    mentioned a specific Oracle Bug #768386 that had something to do
    with the yt40.dll. Does anyone know how I can get this patch?
    Has anyone gotten OAS to work on SP4 without this patch? Thanks
    for any assistance you can provide.
    null

    Dear James, Anirudh,
    Right now I have installed this two syned version.
    Oracle Application Server SOA suite 10.1.3.1.0
    JDev 10.1.3.1.0
    Problem is, I have deployed complete Application server, But I am receiving the following errors.
    *No OC4J process up for AS instance identified by domain:
    opmn-orabpel+oc4j-anne-8888-default*
    1. Actually i gave instance name as --> orabpel
    username as --> oc4jadmin
    password --> welcome1
    But when I trying to connect server with mentioned instance name, I am not able to connect. Is there any specification to set instance name in SOA suite 10.1.3.1.0. Also please suggest how to start my Application server.
    2. My doubt is while creating Application server connection from JDEV what we have to select
    1. Standalone OC4J 10g 10.1.3
    2. Oracle Application Server 10g 10.1.3
    3. From the beginning itself my application server status was down. I cant able to understand the under laying issues.
    Please suggest me..
    Thanks,
    Rajesh

  • Unable to start Hyperion EPM Architect-Process Manager

    I cannot start my process manager services.
    It throws the following error:
    Service cannot be started. Hyperion.DimensionServer.ProcessManager.Interface.ProcessManagerException: Dimension Server started but failed to initialize on machine LORRAINEL. Check the error log on that machine.
    at Hyperion.DimensionServer.ProcessManager.EngineManager.StartEngine(Machine machine, EngineType engineType)
    at Hyperion.DimensionServer.ProcessManager.EngineManager.InitializeReadWriteEngine()
    at Hyperion.DimensionServer.ProcessManager.EngineManager.Load()
    at Hyperion.DimensionServer.ProcessManager.ProcessManager.Initialize()
    at Hyperion.DimensionServer.ProcessManager.Service.OnStart(String[] args)
    at System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object state)
    Please help. Thanks in advance
    Hanson

    hi john,
    yes it has worked before. I just reconfigure my shared services and restart my computer.
    After that incident my shared services work properly but my process manager didnt start up. Theres no anytihng extra on the logs.
    in the windows event viewer it says.
    Service cannot be started. Hyperion.DimensionServer.ProcessManager.Interface.ProcessManagerException: Dimension Server started but failed to initialize on machine LORRAINEL. Check the error log on that machine.
    at Hyperion.DimensionServer.ProcessManager.EngineManager.StartEngine(Machine machine, EngineType engineType)
    at Hyperion.DimensionServer.ProcessManager.EngineManager.InitializeReadWriteEngine()
    at Hyperion.DimensionServer.ProcessManager.EngineManager.Load()
    at Hyperion.DimensionServer.ProcessManager.ProcessManager.Initialize()
    at Hyperion.DimensionServer.ProcessManager.Service.OnStart(String[] args)
    at System.ServiceProcess.ServiceBase.ServiceQueuedMainCallback(Object state)
    Thanks so much,
    Hanson

Maybe you are looking for