Start extract msext:  OGG-00551  Database operation failed

Hi all,
GG Sqlserver2008 to Oracle11gR2.
I have configured the above setup.
Initial LOAD was successful, using the following prms
Source:(inext.prm)
=====
SOURCEISTABLE
SOURCEDB HR, userid sa, password sa
RMTHOST dtc-pc, MGRPORT 7809
RMTFILE d:\GGora\dirdat\ex
TABLE hrschema.emp;
Target: (inload.prm)
=====
SPECIALRUN
END RUNTIME
USERID gg_user, PASSWORD welcome1
EXTFILE d:\ggora\dirdat\ex
SOURCEDEFS d:\ggora\dirdef\emp.def
MAP hrschema.emp, TARGET gg_user.emp;
Then I proceed to LIVE DATA CAPTURE. But my extract process got error? maybe the  prm is not correct?
Source: (msext.prm)
===============
EXTRACT MSEXT
TRANLOGOPTIONS MANAGESECONDARYTRUNCATIONPOINT
SOURCEDB HR, userid sa, password sa
RMTHOST dtc-pc, MGRPORT 7809
RMTTRAIL d:\ggora\dirdat\ms
TABLE HRSCHEMA.EMP;
Target: (msrep.prm)
==============
REPLICAT MSREP
USERID gg_user, PASSWORD welcome1
SOURCEDEFS d:\ggora\dirdef\emp.def
MAP hrschema.emp, TARGET gg_user.emp;
I got error on the source EXTRACT MSEXT
2013-06-21 23:35:01  ERROR   OGG-00551  Database operation failed: Couldn't connect to HR. ODBC error: SQLSTATE 37000 native database error 4060. [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot open database "emp" requested by the login. The login failed.
2013-06-21 23:35:01  ERROR   OGG-01668  PROCESS ABENDING.
ggserr.log
=======
2013-06-21 23:31:18  INFO    OGG-00983  Oracle GoldenGate Manager for SQL Server, mgr.prm:  Manager started (port 7808).
2013-06-21 23:32:37  INFO    OGG-00987  Oracle GoldenGate Command Interpreter for SQL Server:  GGSCI command (DTC): start manager.
2013-06-21 23:35:00  INFO    OGG-00987  Oracle GoldenGate Command Interpreter for SQL Server:  GGSCI command (DTC): start extract msext.
2013-06-21 23:35:00  INFO    OGG-00963  Oracle GoldenGate Manager for SQL Server, mgr.prm:  Command received from GGSCI on host DTC-PC.domain:51376 (START EXTRACT MSEXT ).
2013-06-21 23:35:00  INFO    OGG-00975  Oracle GoldenGate Manager for SQL Server, mgr.prm:  EXTRACT MSEXT starting.
2013-06-21 23:35:01  INFO    OGG-00992  Oracle GoldenGate Capture for SQL Server, MSEXT.prm:  EXTRACT MSEXT starting.
2013-06-21 23:35:01  INFO    OGG-03035  Oracle GoldenGate Capture for SQL Server, MSEXT.prm:  Operating system character set identified as windows-1252. Locale: en_PH, LC_ALL:.
2013-06-21 23:35:01  ERROR   OGG-00551  Oracle GoldenGate Capture for SQL Server, MSEXT.prm:  Database operation failed: Couldn't connect to HR. ODBC error: SQLSTATE 37000 native database error 4060. [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot open database "emp" requested by the login. The login failed.
2013-06-21 23:35:01  ERROR   OGG-01668  Oracle GoldenGate Capture for SQL Server, MSEXT.prm:  PROCESS ABENDING.
=========
I can login to HR using ggsci
=====================
GGSCI (DTC-PC) 8> dblogin sourcedb hr, userid sa, password sa
2013-06-22 00:23:26  INFO    OGG-03036  Database character set identified as windows-1252. Locale: en_US.
2013-06-22 00:23:26  INFO    OGG-03037  Session character set identified as windows-1252.
Successfully logged into database.
Please help...
Thanks a lot,
zxy

Hi all,
For the succeeding LIVE CAPTURE LOADING:
I resolved my issue by using the ODBC System DSN  "Sqlserver native client" driver.
It failed if I use the ODBC System DSN "Sqlserver" driver
On the other hand the INITIAL LOAD, is good with the reverse.
It is ok with the DSN "Sqlserver" driver only and not the native client driver.
Thanks a lot,

Similar Messages

  • Ogg-00552 database operation failed

    Please help!!!!
    I’m getting the below error:
    GGSCI (WIN-EG6QL92CF51) 1> dblogin sourcedb HR
    Successfully logged into database.
    GGSCI (WIN-EG6QL92CF51) 2> add trandata dbo.emp1
    2012-03-11 21:00:44 WARNING OGG-00552 Database operation failed: SQLExecDirect
    error: EXECUTE sys.sp_cdc_enable_db
    if 0 = (select st.is_tracked_by_cdc from sys.tables as st where st.object_id = o
    bject_id('dbo.emp1'))
    AND 0 = (select st.is_replicated from sys.tables as st where st.object_id = o
    bject_id('dbo.emp1'))
    BEGIN
    DECLARE @capture_instance sysname = N'OracleGG_' + cast(object_id('dbo.emp1') as
    sysname)
    CREATE TABLE #ggsTabKeys (db sysname, name sysname, owner sysname, column_name s
    ysname, key_seq int, pk_name sysname)
    INSERT INTO #ggsTabKeys EXEC sp_pkeys 'emp1', 'dbo'
    IF 0 = (SELECT COUNT(*) FROM #ggsTabKeys)
    BEGIN
    INSERT INTO #ggsTabKeys
    SELECT TOP (1) DB_NAME(), '', '', name, 1, '' FROM sys.columns sc
    WHERE sc.object_id = OBJECT_ID('dbo.emp1')
    AND is_computed = 0
    AND max_length > 0
    ORDER BY max_length
    END
    IF 0 = (select COUNT(*) from #ggsTabKeys)
    BEGIN
    INSERT INTO #ggsTabKeys
    SELECT TOP (1) DB_NAME(), '', '', name, 1, '' FROM sys.columns sc
    WHERE sc.object_id = OBJECT_ID('dbo.emp1')
    AND is_computed = 0
    AND max_length > 0
    ORDER BY max_length
    END
    DECLARE @cols NVARCHAR(max)
    SELECT @cols = STUFF(( SELECT
    ',' + QUOTENAME( t.column_name)
    FROM #ggsTabKeys AS t
    FOR XML PATH('')
    ), 1, 1, '')
    execute sys.sp_cdc_enable_table
    @source_schema = N'dbo'
    , @source_name = N'emp1'
    , @role_name = NULL
    , @captured_column_list = @cols
    , @capture_instance = @capture_instance
    IF EXISTS(SELECT OBJECT_ID('tempdb..#ggsTabKeys'))
    BEGIN
    DROP TABLE #ggsTabKeys
    END
    end
    . ODBC error: SQLSTATE 37000 native database error 22988. [Microsoft][ODBC SQL S
    erver Driver][SQL Server]This instance of SQL Server is the Express Edition with
    Advanced Services (64-bit). Change data capture is only available in the Enterp
    rise, Developer, and Enterprise Evaluation editions.
    2012-03-11 21:00:44 WARNING OGG-00782 Error in changing transaction logging fo
    r table: 'dbo.emp1'.
    ERROR: ODBC Error occurred. See event log for details..
    GGSCI (WIN-EG6QL92CF51) 3>
    Caused?
    I use sql server not express edition
    Edited by: 891982 on 11 มี.ค. 2555, 8:09 น.

    thank you
    At present:I install Developer Edition
    but
    GGSCI (WIN-EG6QL92CF51) 2> add trandata emp
    2012-03-14 15:19:28 WARNING OGG-00552 Database operation failed: SQLExecDirect
    error: if not exists ( SELECT * FROM master.dbo.sysdatabases WHERE
    name = N'HR' collate database_default AND (category & 1) = 1)begin exe
    c master..sp_replicationdboption @dbname = N'HR' , @optname = N'publish' ,
    @value = N'true'
    end
    if not exists (select * from syspublications where name = N'GoldenGate HR Publis
    her')
    begin
    exec sp_addpublication @publication = N'GoldenGate HR Publisher', @description =
    N'GoldenGate Publisher for [HR] Database', @sync_method = N'native', @retention
    = 0, @allow_push = N'true', @allow_pull = N'true', @allow_anonymous = N'false',
    @enabled_for_internet = N'false', @snapshot_in_defaultfolder = N'true', @compre
    ss_snapshot = N'false', @ftp_port = 21, @ftp_login = N'anonymous', @allow_subscr
    iption_copy = N'false', @add_to_active_directory = N'false', @repl_freq = N'cont
    inuous', @status = N'active', @independent_agent = N'true', @immediate_sync = N'
    false', @allow_sync_tran = N'false', @autogen_sync_procs = N'false', @allow_queu
    ed_tran = N'false', @allow_dts = N'false', @replicate_ddl = 1, @allow_initialize
    frombackup = N'true', @enabled_for_p2p = N'false', @enabled_for_het_sub = N'fa
    lse'
    end. ODBC error: SQLSTATE 37000 native database error 20028. [Microsoft][ODBC SQ
    L Server Driver][SQL Server]The Distributor has not been installed correctly. Co
    uld not enable database for publishing.
    2012-03-14 15:19:28 WARNING OGG-00782 Error in changing transaction logging fo
    r table: 'dbo.emp'.
    ERROR: ODBC Error occurred. See event log for details..
    GGSCI (WIN-EG6QL92CF51) 3>
    I don't know about?
    I suspect about Control Panel -> Administrative Tools -> Data Sources (ODBC)  select ?
    I select Name: HR and select Server:(local) select Finish
    thankyou stevencallan
    use sql server 2005 Developer Edition in window server 2008 R2
    but edit error in the at present: OGG-00987 Oracle GoldenGate Command Interpreter for ODBC: GGSCI command (Administrator): add trandata emp.
    Edited by: 891982 on 14 มี.ค. 2555, 0:54 น.
    Edited by: 891982 on 14 มี.ค. 2555, 1:20 น.
    Edited by: 891982 on 14 มี.ค. 2555, 2:34 น.

  • "Verify operation failed" dialogue nuisance

    Acrobat 10.1.7 on Mac OS X 10.7.5.  I just started getting a dialogue saying "Verify operation failed" every time I open Acrobat, with or without a document.  This began happening in the last day or so.  I would like to know what it means, but more importantly, how to get rid of the nuisance.  My package is CS6. Since I am a newbie to this online comunity,I prefer contact by email ([email protected]).

    im on macpro running 10.8.4 - had same issue over the last week as well after i updated my acrobat pro app. i believe as another post mentioned that adobe have added a 'verification process' to the update to ensure your software matches their records for whatever reason. i checked my adobe ID and they didnt exactly match. street name and number was slightly different. i rekeyed all my details so they matched 'exactly' to what i sent when i originally registered my adobe cs6. shut down mac at end of day - gave it 24hrs for my details to process through their system and this morning all good! - have opened and closed acrobat a number of times and not seen error message once. hopes this helps - you may have check back when you originally registered your product which could be back a few versions of the software.

  • Cannot start EXTRACT - OGG-01742 is reported

    Hi,
    I've configured, added and registered EXTRACT process, but when I try to start it i receive an error:
    GGSCI (TEST-SRV1) 6> START EXTRACT extr
    Sending START request to MANAGER ('GGSMGR') ...
    ERROR: Cannot create process 'extract'. Child process is no longer alive
    2013-01-22 15:56:22 WARNING OGG-01742 Command sent to MGR MGR returned with an
    ERROR response.
    When i try
    GGSCI (TEST-SRV1) 8> view report extr
    ERROR: REPORT file EXTR does not exist.
    GGSCI (TEST-SRV1) 9>
    The mgr report contains the following:
    2013-01-22 15:53:59 INFO OGG-00983 Manager started (port 7809).
    2013-01-22 15:56:17 INFO OGG-00963 Command received from GGSCI on host TEST
    -SRV1 (START EXTRACT EXTR ).
    2013-01-22 15:56:22 INFO OGG-00975 client_start_er_prog failed.
    What could be the cause of the problem? I cannot find anything relevant both at support.oracle.com and google
    The extract process was successfully added with the command
    ADD EXTRACT extr , INTEGRATED TRANLOG, BEGIN NOW
    Then it was successfully registered:
    GGSCI (TEST-SRV1) 5> REGISTER EXTRACT extr DATABASE
    2013-01-22 15:55:48 INFO OGG-02003 Extract EXTR successfully registered wit
    h database at SCN 1004025.
    The exttrail was also created successfully
    ADD EXTTRAIL C:\Goldengate\dirdat\t*, EXTRACT extr
    The parameter file for extract is:
    EXTRACT extr
    USERID GGEXTRACT,
    PASSWORD AACAAAAAAAAAAAEANJEILEYAOIUJKDTA &
    BLOWFISH, ENCRYPTKEY GGKEY
    ENCRYPTTRAIL BLOWFISH, KEYNAME GGKEY
    EXTTRAIL C:\Goldengate\dirdat\t*
    DDL INCLUDE ALL
    TABLE DEPO.*;
    TABLE DEPO_ARCH.*;
    TABLE DEPO_RPT.*;
    TABLEEXCLUDE DEPO.TMP*;
    TABLEEXCLUDE DEPO.*_D;
    TABLEEXCLUDE DEPO.SQL*;
    SEQUENCE DEPO.VID;
    SEQUENCE DEPO.LOG_SEQ;

    Thank you for your help. I've corrected those issues
    Now the EXTRACT is added like this:
    ADD EXTRACT extr , INTEGRATED TRANLOG, BEGIN NOW
    EXTRACT added.
    GGSCI (TEST-SRV1) 23> ADD EXTTRAIL C:\Goldengate\dirdat\ts, EXTRACT extr
    EXTTRAIL added.
    GGSCI (TEST-SRV1) 29> REGISTER EXTRACT extr DATABASE
    2013-01-23 12:26:44 INFO OGG-02003 Extract EXTR successfully registered wit
    h database at SCN 1061811.
    The parameters file for extr is the following:EXTRACT extr
    USERID GGEXTRACT,
    PASSWORD AACAAAAAAAAAAAEANJEILEYAOIUJKDTA &
    BLOWFISH, ENCRYPTKEY GGKEY
    ENCRYPTTRAIL BLOWFISH, KEYNAME GGKEY
    EXTTRAIL C:\Goldengate\dirdat\ts
    DDL INCLUDE ALL
    TABLEEXCLUDE DEPO.TMP*;
    TABLEEXCLUDE DEPO.*_D;
    TABLEEXCLUDE DEPO.SQL*;
    TABLE DEPO.*;
    TABLE DEPO_ARCH.*;
    TABLE DEPO_RPT.*;
    SEQUENCE DEPO.VID;
    SEQUENCE DEPO.LOG_SEQ;
    The result is however the same:
    GGSCI (TEST-SRV1) 36> start extract extr
    Sending START request to MANAGER ('GGSMGR') ...
    ERROR: Cannot create process 'extract'. Child process is no longer alive
    2013-01-23 12:32:23 WARNING OGG-01742 Command sent to MGR MGR returned with an
    ERROR response.
    and in the mgr report:
    2013-01-23 12:34:34 INFO OGG-00983 Manager started (port 7809).
    2013-01-23 12:35:00 INFO OGG-00963 Command received from GGSCI on host TEST
    -SRV1 (START EXTRACT EXTR ).
    2013-01-23 12:35:05 INFO OGG-00975 client_start_er_prog failed.
    And still no report for extr as if it even didn't try to start
    Any ideas?

  • Error: OGG-00146 - error 600 - Failed to connect to mysql database

    Dear All,
    I am replicating Data from MySQL to Oracle.
    Version of my MySQL is Server version: 5.5.19 MySQL Enterprise Server - Advanced Edition
    Version of Oracle is : Oracle 11gR2
    My extract is giving the following error and I am unable to identify the problem:
    *2012-12-25 14:18:48 ERROR OGG-00146 Oracle GoldenGate Capture for MySQL, netfors.prm: VAM function VAMInitialize returned unexpected result:*
    error 600 - VAM Client Report <CAUSE OF FAILURE : Failed to connect to mysql database WHEN FAILED : While initializing mysql context WHERE FAILED :
    MySQLBinLog Reader Module CONTEXT OF FAILURE : No Information Available!>
    Following are the contents of my /etc/odbc.ini file
    *[netfors]*
    Driver = /usr/lib/libmyodbc3.so
    Description = Connector/ODBC 3.51 Driver DSN
    Server = 10.168.20.226
    Port = 6629
    User = replication
    Password = ******
    Database = netfors
    Option = 3
    Socket = /tmp/mysql_sandbox5519.sock
    When i isql -v netfors replication ***** *
    it say Connected!
    This is my extract:
    EXTRACT NETFORS
    DBOPTIONS HOST 10.168.20.226, CONNECTIONPORT 6629
    SOURCEDB [email protected]:6629, USERID replication, PASSWORD ******
    RMTHOST 10.168.20.31, MGRPORT 7809
    RMTTRAIL /u01/app/oracle/oradata/GG/dirdat/n1
    TRANLOGOPTIONS ALTLOGDEST /root/sandboxes/msb_5_5_19/data/mysql-bin.index
    TABLE netfors.syslog;
    Extract gets ABENDED
    Kindly help on this.
    Regards, Imran

    Got it solved some how, golden gate was trying to connect with default socket file.
    */tmp/mysql.sock*
    while my socket file was
    */tmp/mysql_sandbox5519.sock*
    I changed it to default and got rid of the error.
    Thanks for the help.
    Regards, Imran

  • J2EE Engine start error: Database initialization failed!

    My J2EE engine now fails to start - jcontrol stays yellow.  I've followed Troubleshooting pages from help.sap.com Admin manual topic "starting J2EE Engine".
    Background:
    I was running through JDI Scenario 2+ on a fresh installed WebAS 6.40 at SP9.  Using NWDevStudio2.09, I attempted to load a DC, but servers stopped responding.  So I downed everything (in MMC) including offlining the DB, then put DB back online and restart the J2E engine, and now jcontrol stays yellow. 
    I find this in the file log_bootstrap_ID0014430.0.log:
    Apr 7, 2005 3:10:23 PM  ] Bootstrap MODE:
    [Apr 7, 2005 3:10:23 PM  ] <INSTANCE GLOBALS>
    [Apr 7, 2005 3:10:23 PM  ]  determined by parameter [ID0014430].
    [Apr 7, 2005 3:10:23 PM  ] -
    [Apr 7, 2005 3:10:26 PM  ] Exception occured:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:422)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:813)
    .........a few lines cut out here..........
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:344)
    ............ a few lines cut out here..........
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: com.sap.dbtech.jdbc.exceptions.JDBCDriverException: SAP DBTech JDBC: Cannot connect to jdbc:sapdb://PHI21811/J2E [Cannot connect to host PHI21811 [Connection refused: connect], -813.].
         at com.sap.dbtech.jdbc.DriverSapDB.connect(DriverSapDB.java:183)
         at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:219)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.createPooledConnection(OpenSQLDataSourceImpl.java:570)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.getPooledConnection(OpenSQLDataSourceImpl.java:263)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:294)
         ... 14 more
    [Apr 7, 2005 3:10:26 PM  ] [Bootstrap module]> Problem occured while performing synchronization.
    [Apr 7, 2005 3:22:24 PM  ] -
    ANYONE HAVE ANY SUGGESTIONS?????

    Using the Database Administration section of the help.sap.com library, I found the location of SAPDB/MySQL log files.  They are in C:\sapdb\data\wrk\J2E.  In 'knldiag' I found entries complaining of Log files being full and tasks put in suspension.
    So I figured out to do a full back up of the DB and/or backup the log files.  The log file bar (in MMC) still showed 100% full, but I figured out to refresh the view and voila it was empty (so one of the backups emptied it, not sure which one).
    After that the DB comes up fine and now my J2E WebAS goes all green.
    Message was edited by: Michael W Rains

  • Failed to mount database "General Users". Error: An Active Manager operation failed

    Failed to mount database "General Users". Error: An Active Manager operation failed. Error: The database action failed. Error: Database 'General Users' on server 'EX02' cannot be mounted due to a previous error: At '12/3/2014
    3:52:17 PM' the Exchange store database 'General Users' copy on this server appears to be inconsistent with the active database copy or is corrupted. For more details about the failure, consult the Event log on the server for other storage and "ExchangeStoreDb"
    events. A successful failover restored service. If you have addressed the underlying problem, or if you have decided to attempt to mount the database despite this error, the mount operation may be attempted by using the '-Force' parameter of the Mount-Database
    cmdlet. [Database: General Users, Server: EX02.domain.com]
    Md. Ramin Hossain

    Hi,
    From your description, it is recommended to suspend the failed database copy at first using the cmdlet below.
    Suspend-MailboxDatabaseCopy -Identity "xxx"
    And then reseed the database with a new copy using Update-MailboxDatabaseCopy -Identity "xxx" -DeleteExistingFiles cmdlet.
    What's more, here is a helpful thread for your reference.
    Update-MailboxDatabaseCopy
    http://technet.microsoft.com/en-us/library/dd335201(v=exchg.150).aspx
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • CiscoWorks 3.2 ANI database engine failed to start

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman";
    mso-ansi-language:#0400;
    mso-fareast-language:#0400;
    mso-bidi-language:#0400;}
    CiscoWorks ANI database engine failed to start ...
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman";
    mso-ansi-language:#0400;
    mso-fareast-language:#0400;
    mso-bidi-language:#0400;}
    We suppose we have found following bug. This is output from one discussion on Netpro https://supportforums.cisco.com/message/665869#665869 .
    CSCsb52873
    ANI Server fails to start
    This problem occurs when you:
    Start ANI Server, the server is up for sometime and shuts down with RC as -2 and Info as ANI Server failed to load from the database.
    Workaround:
    Stop the Daemon Manager. Re-initialize ANI database and start the daemons.
    Enter the following command to reinitialize ANI database:
    /opt/CSCOpx/bin/perl /opt/CSCOpx/bin/dbRestoreOrig.pl dsn=ani dmprefix=ANI
    You should not be using this interface to start any CiscoWorks services.  Your statup parameters look okay.  Either your ANI database is corrupt, or your transaction log is corrupt.
    First, set the CiscoWorks Daemon Manager service to Manual, and reboot the server.  When the server reboots, delete NMSROOT\databases\ani\ani.log if it exists.  Then run:
    NMSROOT\objects\db\win32\dbsrv9 -f NMSROOT\databases\ani\ani.db
    After that, set the Daemon Manager service back to Automatic, and reboot again.  See if the ANI database engine starts.  If not, you will need to reinitialize your ANI database with the command:
    NMSROOT\bin\perl NMSROOT\bin\dbRestoreOrig.pl dsn=ani dmprefix=ANI
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman";
    mso-ansi-language:#0400;
    mso-fareast-language:#0400;
    mso-bidi-language:#0400;}
    We have done reinitializing:
    1. Delete NMSROOT\databases\ani\ani.log
    NMSROOT\objects\db\win32\dbsrv10 -f NMSROOT\databases\ani\ani.db
    After that done
    NMSROOT\bin\perl NMSROOT\bin\dbRestoreOrig.pl dsn=ani dmprefix=ANI
    After reinitializing ANI database took 1 hour to start, output of  pdshow command was
    INFO: Daemon manager is processing other tasks in the queue. Please try again later.
    In RME there is another problem:
    JRM Service could be down. Check whether JRM services are running .
    Tried to resolve by reinitializingRME
    NMSROOT\bin\perl.exe NMSROOT\bin\dbRestoreOrig.pl dsn=rmeng dmprefix=RME
    But did not help.
    We are attaching some log files...
    Thanks in advance...

    You are most likely seeing a port conflict between LMS and the Windows RM service.  You can either shutdown the Windows Remote Management service, then restart Daemon Manager, or do the following:
    * Shutdown Daemon Manager
    * Remove ctmregistry* from NMSROOT/MDC/tomcat/webapps/rme/WEB-INF/lib.
    * With Windows Remote Management still running, restart Daemon Manager, and EssentialsDM should skip tcp/47001 because it is already in use.

  • 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.

  • SQL Server - Extract Error - OGG-00868  Supplemental logging is disabled

    Hello,
    We are trying to replicate from a SQL Server 2008 database to Oracle database, but when trying to start the extract process we are getting the following error message:
    OGG-00868 Supplemental logging is disabled for database 'GoldenGate'. To enable logging, perform the following: 1) Set 'trunc. log on chkpt.' to false. 2) Create a full backup of the database. Please refer to the "Oracle GoldenGate For Windows and UNIX Administration Guide" for details.
    I have read that for enabling the supplemental logging is enough to "add trandata table_name", and this is done, and the extract process we are using is the following:
    EXTRACT cap_or4
    SOURCEDB GoldenGate
    TRANLOGOPTIONS MANAGESECONDARYTRUNCATIONPOINT
    EXTTRAIL c:\GoldenGate\V28983-01-GG-111112-SQLServer-Windows-x64\dirdat\C4
    TABLE GoldenGate.dbo.DES_T1;
    And the 'trunc.log on chkpt' is set to false.
    We don’t know what else to do, or to check... does anyone have any idea?!
    Thank you very much, best regards,
    Araitz.-

    Have you followed all the process for installing as per the guide? clearly you missed something
    Please follow below steps.
    Installation & Configuration of Oracle GoldenGate for MS SQL Server:
    Pre-requisites:
    1.Change Data Capture (CDC) must be enabled for Oracle GoldenGate and will be enabled by Oracle GoldenGate by means of the ADD TRANDATA command.
    2.SQL Server source database must be set to use the full recovery model.
    3.Oracle GoldenGate does not support system databases.
    4.After the source database is set to full recovery, a full database backup must be taken.
    5.SQL Server 2008 ODBC/OLE DB: SQL Server Native Client 10.0 driver
    6.Oracle GoldenGate processes can use either Windows Authentication or SQL Server Authentication to connect to a database.
    7.Before installing Oracle GoldenGate on a Windows system, install and configure the Microsoft Visual C ++ 2005 SP1 Redistributable Package. Make certain it
    is the SP1 version of this package, and make certain to get the correct bit version for your server. This package installs runtime components of Visual C++
    Libraries. For more information, and to download this package, go to http://www.microsoft.com.
    Privileges:
    1.Required SQL Server privileges for Manager when using Windows authentication
    Extract(source system)
    BUILTIN\Administrators account must be a member of the SQL Server fixed server role System Administrators.
    Account must be a member of the SQL Server fixed server role System Administrators
    Replicat (target system)
    BUILTIN\Administrators account must be at least a member of the db_owner fixed database role of the target database.
    Account must be at least a member of the db_owner fixed database role of the target database.
    2.Required SQL Server privileges for Extract and Replicat when using SQL Server authentication
    Extract - Member of the SQL Server fixed server role System Administrators.
    Replicat - At least a member of the db_owner fixed database role of the target database.
    Downloading Oracle GoldenGate
    Download the appropriate Oracle GoldenGate build to each system that will be part of the Oracle GoldenGate configuration.
    1. Navigate to http://edelivery.oracle.com.
    2. On the Welcome page:
    --Select your language.
    --Click Continue.
    3. On the Export Validation page:
    --Enter your identification information.
    --Accept the Trial License Agreement (even if you have a permanent license).
    --Accept the Export Restrictions.
    --Click Continue.
    4. On the Media Pack Search page:
    --Select the Oracle Fusion Middleware Product Pack.
    --Select the platform on which you will be installing the software.
    --Click Go.
    5. In the Results List:
    --Select the Oracle GoldenGate Media Pack that you want.
    --Click Continue.
    6. On the Download page:
    --Click Download for each component that you want. Follow the automatic download
    process to transfer the mediapack.zip file to your system.
    Installing the Oracle GoldenGate files
    1. Unzip the downloaded file(s) by using WinZip or an equivalent compression product.
    2. Move the files in binary mode to a folder on the drive where you want to install Oracle GoldenGate. Do not install Oracle GoldenGate into a folder that contains spaces in its name, even if the path is in quotes. For example:
    C:\“Oracle GoldenGate” is not valid.
    C:\Oracle_GoldenGate is valid.
    3. From the Oracle GoldenGate folder, run the GGSCI program.
    4. In GGSCI, issue the following command to create the Oracle GoldenGate working
    directories.
    CREATE SUBDIRS
    a.Create the necessary working directories for GG.
    Source DB:
    GGSCI>create subdirs
    Target DB:
    GGSCI>create subdirs
    Install the GoldenGate Manager process
    1.Create a GLOBALS parameter file
    --Execute the following commands from the <install location>.
    GGSCI> EDIT PARAMS ./GLOBALS
    --In the text editor, type the following:
    MGRSERVNAME <mgr service>
    Using a GLOBALS file in each GoldenGate instance allows you to run multiple Managers as services on Windows. When the service is installed, the Manager name
    is referenced in GLOBALS, and this name will appear in the Windows Services control panel.
    Note! Check to ensure that the GLOBALS file has been added in the GoldenGate installation directory and that it does not have an extension.
    --Execute the following command to exit GGSCI.
    GGSCI> EXIT
    2. Install the Manager service
    Execute the following command to run GoldenGate’s INSTALL.EXE . This executable installs Manager as a Windows service and adds GoldenGate events to the
    Windows Event Viewer.
    Shell> INSTALL ADDSERVICE ADDEVENTS
    Note: Adding the Manager as a service is an optional step used when there are multiple environments on the same system or when you want to control the name
    of the manager for any reason.
    Configuring an ODBC connection
    A DSN stores information about how to connect to a SQL Server database through ODBC (Open Database Connectivity). Create a DSN on each SQL Server source
    and target system.
    NOTE: Replicat will always use ODBC to query the target database for metadata.
    To create a SQL Server DSN
    1. Run one of the following ODBC clients:
    --If using a 32-bit version of Oracle GoldenGate on a 64-bit system, create the DSN by running the ODBCAD32.EXE client from the %SystemRoot%\SysWOW64
    folder.
    --If using a 64-bit version of Oracle GoldenGate on a 64-bit system, create a DSN by running the default ODBCAD32.EXE client in Control Panel>Administrative
    Tools>Data Sources (ODBC).
    --If using a version of Oracle GoldenGate other than the preceding, use the default ODBC client in Control Panel>Administrative Tools>Data Sources (ODBC).
    2. In the ODBC Data Source Administrator dialog box of the ODBC client, select the System DSN tab, and then click Add.
    3. Under Create New Data Source, select the correct SQL Server driver as follows:
    --SQL Server 2000: SQL Server driver
    --SQL Server 2005: SQL Native Client driver
    --SQL Server 2008: SQL Server Native Client 10.0 driver
    4. Click Finish. The Create a New Data Source to SQL Server wizard is displayed.
    5. Supply the following:
    --Name: Can be of your choosing. In a Windows cluster, use one name across all nodes in the cluster.
    --Server: Select the SQL Server instance name.
    6. Click Next.
    7. For login authentication, select With Windows NT authentication using the network login ID for Oracle GoldenGate to use Windows authentication, or select
    With SQL Server authentication using a login ID and password entered by the user for Oracle GoldenGate to use database credentials. Supply login information
    if selecting SQL Server authentication.
    8. Click Next.
    9. If the default database is not set to the one that Oracle GoldenGate will connect to,
    click Change the default database to, and then select the correct name. Set the other
    settings to use ANSI.
    10. Click Next.
    11. Leave the next page set to the defaults.
    12. Click Finish.
    13. Click Test Data Source to test the connection.
    14. Close the confirmation box and the Create a New Data Source box.
    15. Repeat this procedure from step 1 on each SQL Server source and target system.
    Setting the database to full recovery model
    Oracle GoldenGate requires a SQL Server source database to be set to the full recovery model.
    To verify or set the recovery model
    1. Connect to the SQL Server instance with either Enterprise Manager for SQL Server 2000 or SQL Server Management Studio for SQL Server 2005 and 2008.
    2. Expand the Databases folder.
    3. Right-click the source database, and then select Properties.
    4. Select the Options tab.
    5. Under Recovery, set Model to Full if not already.
    6. If the database was in Simple recovery or never had a Full database backup, take a Fulldatabase backup before starting Extract.
    7. Click OK.
    Enabling supplemental logging
    These instructions apply to new installations of Oracle GoldenGate for all supported SQL Server versions. You will enable supplemental logging with the ADD
    TRANDATA command so that Extract can capture the information that is required to reconstruct SQL operations on the target. This is more information than
    what SQL Server logs by default.
    --SQL Server 2005 updated to CU6 for SP2 or later: ADD TRANDATA calls the sys.sp_extended_logging stored procedure.
    --SQL Server 2005 pre-CU6 for SP2: ADD TRANDATA creates the following:
    A replication publication named [<source database name>]: GoldenGate<source database name> Publisher. To view this publication, look under Replication>Local
    Publications in SQL Server Management Studio. This procedure adds the specified table to the publication as an article.
    A SQL Server Log Reader Agent job for the publication. This job cannot run concurrently with an Extract process in this configuration.
    --SQL Server 2008: ADD TRANDATA enables Change Data Capture (CDC) and creates a minimal Change Data Capture on the specified table.
    a.Oracle GoldenGate does not use the CDC tables other than as necessary to enablesupplemental logging.
    b.As part of enabling CDC, SQL Server creates two jobs per database: <dbname>_capture and <dbname>_cleanup. The <dbname>_capture job adjusts the secondary
    truncation point and captures data from the log to store in the CDC
    tables. The <dbname>_cleanup job ages and deletes data captured by CDC.
    c.Using the TRANLOGOPTIONS parameter with the MANAGESECONDARYTRUNCATIONPOINT option for Extract removes the <dbname_capture> job, preventing the overhead of
    the job loading the CDC tables.
    d.The alternative (using TRANLOGOPTIONS with NOMANAGESECONDARYTRUNCATIONPOINT) requires the SQL Server Agent to be running and requires the <dbname>_capture and <dbname>_cleanup jobs to be retained. You will probably need to adjust the <dbname>_cleanup data retention period if the default of three days is not acceptable for storage concerns.
    To enable supplemental logging
    1. On the source system, run GGSCI.
    2. Log into the database from GGSCI.
    DBLOGIN SOURCEDB <DSN>[, USERID <user>, PASSWORD <password>]
    Where:
    -- SOURCEDB <DSN> is the name of the SQL Server data source.
    -- USERID <user> is the Extract login and PASSWORD <password> is the password that is required if Extract uses SQL Server authentication.
    3. In GGSCI, issue the following command for each table that is, or will be, in the Extract configuration. You can use a wildcard to specify multiple table
    names, but not owner names.
    ADD TRANDATA <owner>.<table>
    NOTE:The Log Reader Agent job cannot run concurrently with the GoldenGate Extract process.
    4.Configuration
    a.Create and start manager on the source and the destination.
    Source DB:
    shell>ggsci
    GGSCI> edit params mgr
    PORT 7809
    DYNAMICPORTLIST 7900-7950
    DYNAMICPORTREASSIGNDELAY 5
    AUTOSTART ER *
    AUTORESTART ER *, RETRIES 3, WAITMINUTES 5, RESETMINUTES 30
    LAGCRITICALMINUTES 60
    LAGREPORTMINUTES 30
    PURGEOLDEXTRACTS c:\ogg\dirdat\T*, USECHECKPOINTS, MINKEEPFILES 10
    GGSCI> start manager
    GGSCI>info all
    b. Create the extract group on the source side:
    GGSCI> edit params EXT1
    Add the following lines to the new parameter file
    EXTRACT EXT1
    SOURCEDB <DSN>, USERID ogg, PASSWORD ogg@321!
    TRANLOGOPTIONS MANAGESECONDARYTRUNCATIONPOINT
    EXTTRAIL c:\ogg\dirdat\T1
    DISCARDFILE c:\ogg\dirrpt\EXT1.DSC, PURGE, MEGABYTES 100
    TABLE dbo.TCUSTMER;
    TABLE dbo.TCUSTORD;
    GGSCI>ADD EXTRACT EXT1, TRANLOG, BEGIN NOW
    GGSCI>ADD EXTTRAIL c:\ogg\dirdat\T1, EXTRACT EXT1, MEGABYTES 100
    GGSCI> edit params PMP1
    Add the following lines to the new parameter file
    EXTRACT PMP1
    SOURCEDB <DSN>, USERID ogg, PASSWORD ogg@321!
    PASSTHRU
    RMTHOST dr, MGRPORT 7810
    RMTTRAIL c:\ogg\dirdat\P1
    TABLE dbo.TCUSTMER;
    TABLE dbo.TCUSTORD;
    GGSCI> ADD EXTRACT PMP1, EXTTRAILSOURCE c:\ogg\dirdat\T1
    GGSCI> ADD EXTTRAIL c:\ogg\dirdat\P1, EXTRACT PMP1, MEGABYTES 100
    Target DB:
    ===========
    shell>ggsci
    GGSCI> edit params mgr
    PORT 7810
    AUTOSTART ER *
    AUTORESTART ER *, RETRIES 3, WAITMINUTES 5, RESETMINUTES 30
    LAGCRITICALMINUTES 60
    LAGREPORTMINUTES 30
    PURGEOLDEXTRACTS c:\ogg\dirdat\P*, USECHECKPOINTS, MINKEEPFILES 10
    GGSCI> start manager
    GGSCI>info all
    Create parameter file for replicat:
    GGSCI> edit params REP1
    REPLICAT REP1
    ASSUMETARGETDEFS
    TARGETDB <dsn>, USERID ogg@DR, PASSWORD ogg@321!
    DISCARDFILE c:\ogg\dirrpt\REP1.DSC, append, megabytes 100
    HANDLECOLLISIONS
    ASSUMETARGETDEFS
    MAP dbo.TCUSTMER, TARGET dbo.TCUSTMER;
    MAP dbo.TCUSTORD, TARGET dbo.TCUSTORD;
    GGSCI>ADD REPLICAT REP1, RMTTRAIL c:\ogg\dirdat\P1, nodbcheckpoint
    # Start extract and replicat:
    Source:
    GGSCI> start er *
    Destination:
    GGSCI> start er *Greetings,
    N K

  • Script level upgrade for database 'master' failed because upgrade step 'msdb110_upgrade.sql' encountered error 537, state 3, severity 16

    Hello,
    I've encountered issue during installation of SP1 to SQL Server 2012. After upgrade I'm getting this error in Event Log:
    Script level upgrade for database 'master' failed because upgrade step 'msdb110_upgrade.sql' encountered error 537, state 3, severity 16. This is a serious error condition which might interfere with regular operation and the database will be taken offline.
    If the error happened during upgrade of the 'master' database, it will prevent the entire SQL Server instance from starting. Examine the previous errorlog entries for errors, take the appropriate corrective actions and re-start the database so that the script
    upgrade steps run to completion.
    Can someone point me direction how I can fix it? This is a production server and currently only way to make it working is to use T902 flag in SQL Server startup params. I've found some suggestions to check Data path if it exists but it does so this is not
    the issue here. Any ideas?
    I've found also here
    http://www.sqlservercentral.com/Forums/Topic1377073-1550-1.aspx#bm1378279
    suggestions for similar issue with SQL Server 2008 which that I should do:
    Via ssms:
    From msdb:
    Delete:
    dc_admin role
    Dc_operator role
    Dc_proxy role
    UlitityCMRReader role
    UtilityIMRReader role
    UtilityIMRWriter role
    but for not I didn't tried it yet. This is standalone SQL Server instance.
    Any help really appreciated.
    Regards

    Script returns the same error.
    System databases:
    1    1    760    -1    10    1048578    0    1    master        C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\master.mdf
    2    0    12768    -1    10    1048642    0    1    mastlog        C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\mastlog.ldf
    1    1    1024    -1    10    1048578    0    2    tempdev        C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\tempdb.mdf
    2    0    64    -1    10    1048642    0    2    templog        C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\templog.ldf
    1    1    288    -1    128    2    0    3    modeldev    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\model.mdf
    2    0    4464    -1    10    1048642    0    3    modellog    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\modellog.ldf
    1    1    28936    -1    10    1048578    0    4    MSDBData    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\MSDBData.mdf
    2    0    3352    268435456    10    1048642    0    4    MSDBLog    C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA\MSDBLog.ldf
    are all in place where path shows.
    Before sending my message I've searched update script for "FROM master.sys.master_files" and I found script which you are showing me. I've made some digging and when I runned:
           SELECT physical_name
           FROM master.sys.master_files
           WHERE (name = N'master')
    it returned also path to one my customers database name which has filename set correctly but it's Logical DB name is master and mastlog. I'm running shared hosting company and I allow my customers to restore their DBs from .bak files but I have no idea why
    this customers logical name is set to master and mastlog. Probably when I change this names update script will work as it should. On the other hand in my opinion there should be some kind of fail safe mechanism for situations like this one.
    EDIT: After changing logical name for DB and log for mentioned DB your script runned fine so probably now when I remove T902 flag and restart my SQL Server update will run correctly. Big thanks for resolving this issue.

  • 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

  • SQL 2012 Copy Database Wizard fails

    I am trying to use the Copy Database Wizard in SQL Server 2012
    The host is running SQL Server 2000 (8.00.2066 (SP4)) on a Windows 2003 server
    The destination is SQL Server 2012 running on Windows Server 2012 Standard.
    Its gets to Execute SQL Server Agent Job and fails with this error:
    The job failed. Check the event log on the destination server for details
    Fails at – Execute SQL Server Agent Job
    I've looked at the application log and not sure which errors are relevant. Here are two of them:
    the first is an error, the second a warning.
    Log Name:      Application
    Source:        SQLISPackage110
    Date:          1/9/2015 11:39:24 AM
    Event ID:      12291
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          NT SERVICE\SQLSERVERAGENT
    Computer:      SQL2013
    Description:
    Package "CDW_SQL_SQL2013_7" failed.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLISPackage110" />
        <EventID Qualifiers="16385">12291</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2015-01-09T16:39:24.000000000Z" />
        <EventRecordID>456924</EventRecordID>
        <Channel>Application</Channel>
        <Computer>SQL2013</Computer>
        <Security UserID="S-1-5-80-344959196-2060754871-2302487193-2804545603-1466107430" />
      </System>
      <EventData>
        <Data>CDW_SQL_SQL2013_7</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          1/9/2015 11:39:26 AM
    Event ID:      208
    Task Category: Job Engine
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      SQL2013
    Description:
    SQL Server Scheduled Job 'CDW_SQL_SQL2013_7_1' (0xDFA5EEDDB2D53A4FB3C7CED04563896E) - Status: Failed - Invoked on: 2015-01-09 11:39:18 - Message: The job failed.  The Job was invoked by User VGBtR3r0WgKjvthk.  The last step to run was step 1 (CDW_SQL_SQL2013_7_1_Step).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">208</EventID>
        <Level>3</Level>
        <Task>3</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2015-01-09T16:39:26.000000000Z" />
        <EventRecordID>456927</EventRecordID>
        <Channel>Application</Channel>
        <Computer>SQL2013</Computer>
        <Security />
      </System>
      <EventData>
        <Data>CDW_SQL_SQL2013_7_1</Data>
        <Data>0xDFA5EEDDB2D53A4FB3C7CED04563896E</Data>
        <Data>Failed</Data>
        <Data>2015-01-09 11:39:18</Data>
        <Data>The job failed.  The Job was invoked by User VGBtR3r0WgKjvthk.  The last step to run was step 1 (CDW_SQL_SQL2013_7_1_Step).</Data>
      </EventData>
    </Event>
    Any ideas would be appreciated. I'm anxious to retire this old SQL 2000 server!
    Mike

    Thanks David.
    is this the log you are looking for:
    Date  1/9/2015 11:39:18 AM
    Log  Job History (CDW_SQL_SQL2013_7_1)
    Step ID  1
    Server  SQL2013
    Job Name  CDW_SQL_SQL2013_7_1
    Step Name  CDW_SQL_SQL2013_7_1_Step
    Duration  00:00:08
    Sql Severity 0
    Sql Message ID 0
    Operator Emailed 
    Operator Net sent 
    Operator Paged 
    Retries Attempted 0
    Message
    Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 64-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  11:39:18 AM  Progress:
    2015-01-09 11:39:18.61     Source: sql_SQL2013_Transfer Objects Task      Task just started the execution.: 0% complete  End Progress  Error: 2015-01-09 11:39:24.50     Code: 0x00000000    
    Source: sql_SQL2013_Transfer Objects Task      Description: An error occurred while transferring data. See the inner exception for details.  StackTrace:    at Microsoft.SqlServer.Management.Smo.Transfer.TransferData()    
    at Microsoft.SqlServer.Dts.Tasks.TransferObjectsTask.TransferObjectsTask.TransferExtraObjectsViaSmoTransfer()  InnerException-->The specified schema name "INFORMATION_SCHEMA" either does not exist or you do not have permission to use it. 
    StackTrace:    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)     at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject
    stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)     at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject
    stateObj, Boolean& dataReady)     at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout, Boolean asyncWrite)     at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1
    completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)     at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()     at Microsoft.SqlServer.Management.Smo.Transfer.ExecuteStatements(SqlConnection
    destinationConnection, IEnumerable`1 statements, SqlTransaction transaction)     at Microsoft.SqlServer.Management.Smo.Transfer.TransferData()  End Error  Progress: 2015-01-09 11:39:24.50     Source: sql_SQL2013_Transfer
    Objects Task      Database transfer failed for one or more extra objects.: 0% complete  End Progress  Progress: 2015-01-09 11:39:24.50     Source: sql_SQL2013_Transfer Objects Task     
    Transfer objects finished execution.: 100% complete  End Progress  Warning: 2015-01-09 11:39:24.52     Code: 0x80019002     Source: CDW_SQL_SQL2013_7      Description: SSIS Warning
    Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution method succeeded, but the number of errors raised (1) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. Change
    the MaximumErrorCount or fix the errors.  End Warning  DTExec: The package execution returned DTSER_FAILURE (1).  Started:  11:39:18 AM  Finished: 11:39:24 AM  Elapsed:  6.062 seconds.  The package execution failed. 
    The step failed.
    I will also look into backup/restore. Will that work between 2000 and 2012?

  • CR XI R2 "Database Login Failed" Recycled application pool and now it works

    Hello,
    I have a web application using CR XI R2 that has several reports which are pushed a dataset.  These reports have been runing fine until today when I received an error stating "Database login failed."  "Object reference not set to an instance of an object" in the report viewer control. 
    I recycled the application pool and the reports started working again. 
    My questions are:
    What could be the cause of this and how can it be avoided?
    Why does recycling the application pool correct the problem?
    Regards.

    Hi Tom,
    Recycling keeps problematic applications running smoothly, especially when it is not feasible to modify the application code. Recycling helps ensure that problematic applications do not cause other applications to fail, and that system resources can be recovered from unhealthy applications.
    Recycling an application pool causes the WWW service to shut down all running worker processes that are serving the application pool, and then start new worker processes. Whether the WWW service starts the new worker processes before it stops the existing one depends on the DisallowOverlappingRotation property in the metabase. Recycling an application pool does not alter any state in HTTP.sys or change any configuration in the metabase.
    Note:
    When an application pool is serviced by more than one worker process, the recycle operation is staggered in some scenarios. Only when a worker process is recycled on demand or when all of the worker processes hit their memory limits at the same time would they be restarted simultaneously.
    For more info regarding this have a look to this [article|http://blogs.msdn.com/david.wang/archive/2006/01/26/Thoughts-on-Application-Pool-Recycling-and-Application-Availability.aspx]
    Regards,
    Shweta

  • Error 'no local web solution for html engine installed. operation failed'

    Hi all
    I am trying to install JD Edwards EnterpriseOne.
    I have done the installation in one machine according to this queue:
    1) Installed the Oracle DB 11g
    2) Installed the Enterprise and Database Server
    3) Installed the Deployment Server and the installation finished successfully
    But when i try to navigate to the EntepriseOne menu I have the following message:
    "no local web solution for html engine installed. operation failed". Can you please suggest for any solution for this?
    I also did not install the html web server yet. Is this mandatory? Is this error related with this?
    Thank you and best regards

    Hi Bruno
    During installation I didn't enter any port, so could you please tell me if there is any default port for this isntallation.
    I red on the internet that port 6010 is the default port for EnterpriseOne so I entered the url: http://192.168.223.167:6010/jde/E1Menu.maf
    where this(192.168.223.167) is the IP of my server but still the page did not open.
    Do I have to start any service or something. Please help me to solve this issue.
    Thank you and best regards

Maybe you are looking for