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

Similar Messages

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

  • 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

  • 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

  • Error while saving BPM Project to MDS: BPM-70801 : Metadata operation failed

    Dear All,
    I am working on BPM 11g.
    I installed the following products for BPM 11g
    OS: Windows 7 SP1 Professional Edition all with 32 bit
    Installed s/w:
        JDeveloper 11.1.1.6.0 Generic Version
        OracleXE 11.2 Win32
        ofm soa generic 11.1.1.6.0
        wls 10.3.5
        RCU 11.1.1.6 for schemas dev_soainfra, dev_sdpm and dev_mds  - Utility run successfully.
    Overall Installation is successful wth no issues.
    Configuration of Weblogic server for domain is ok with admin server, soa_server1 and bam_server1 with test connections is ok.
    I am using browser as Internet Explorer 9
    In Jdeveloper 11.1.1.6.0 after creating application, project and process
    From BPM MDS Navigator I configured the connection for Database 11g XE as well using
    Override Application Server user/password
    For SOA MDS I included the dev_mds user with MDS partition as obpm
    tested connections all ok (weblogic and soa_server1 up and running)
    In Jdeveloper I am able to export the BPM successfully.
    In the BPM Project Navigator when I use the Project --> SalesQuote.jpr --> right clicking with
    option as  Save to BPM MDS the following error is occured as
    "Error while saving BPM Project to MDS: BPM-70801 : Metadata operation failed".
    If the error is resolved than I can see the project in BPM composer.
    My queries on this error are
    1) Has soa_server anything to do with this error
    2) Is dev_mds schema to be reviewed
    what can be the possibility to resolve the BPM-70801 error.
    Please provide the solution ASAP or send me the reply to my  [email protected]
    Regards
    Ajaz Ahmed

    Hello Ajaz,
    BPM-70801 is a very generic error that can have multiple causes. Please provide the error log from servers log file. From what I understand, you are using a separate soa_server1, so watch out /your_domain/servers/soa_server1/logs/soa_server1.log
    Regards
    km

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

  • How to "roll back" the model if a database update fails

    I'd like to know if there's a way to "roll back" the model (the values in the managed beans) if a service call to a database fails during the Invoke Application phase. My understanding of the JSF lifecycle is that the values in the model are updated before a service call to a database would happen. If the database update operation fails, it seems to me that the data in the model and the database would be inconsistent.
    For example, say I have a ridiculously simple application that updates a names database. The fields are id, last name, first name. The application has a simple view that allows the user to update a name in the database. The user updates the last name field for a particular record from "Doe" to "Smith" and clicks "submit". The request goes through the lifecycle, the model values are updated from the web form during the Update Model Values phase, then the call to update the database fails during the Invoke Applications phase (the database connection failed). When the Render Response phase completes, the UI would display an error message where I put <h:messages> but the last name value in the UI would show "Smith" instead of "Doe". Is there something I can do to roll the model value back to "Doe" if the database call fails?
    I know that I could redirect to a technical error page, but I'd like to avoid it unless it is the best thing to do.
    I'd appreciate any advice you can offer.
    Thanks.
    - Luke

    I'd like to know if there's a way to "roll back" the model (the values in the managed beans) if a service call to a database fails during the Invoke Application phase. My understanding of the JSF lifecycle is that the values in the model are updated before a service call to a database would happen. If the database update operation fails, it seems to me that the data in the model and the database would be inconsistent.
    For example, say I have a ridiculously simple application that updates a names database. The fields are id, last name, first name. The application has a simple view that allows the user to update a name in the database. The user updates the last name field for a particular record from "Doe" to "Smith" and clicks "submit". The request goes through the lifecycle, the model values are updated from the web form during the Update Model Values phase, then the call to update the database fails during the Invoke Applications phase (the database connection failed). When the Render Response phase completes, the UI would display an error message where I put <h:messages> but the last name value in the UI would show "Smith" instead of "Doe". Is there something I can do to roll the model value back to "Doe" if the database call fails?
    I know that I could redirect to a technical error page, but I'd like to avoid it unless it is the best thing to do.
    I'd appreciate any advice you can offer.
    Thanks.
    - Luke

  • Connect Operation Failed

    Good morning. I had created a form designed via LiveCycle, it was connected to a database. The location of our database was recently moved from one drive to another and while I re-pointed the form to this location and tested my connection with success, I receive the "Connection Operation Failed" pop-up error when trying to view the form via the tab: pdf preview. I can click through the error and it previews my form, but how can I eliminate the message even popping up in the first place?
    Please help, thanks.
    CG

    Have you checked that all connections have been repointed?
    It is acting like there might be one still pointed to the old location.
    Open the XML tab, and search for "<connectString>".
    Repeat finds will step you past all the connections in the form.
    Good Luck

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

  • Oracle BR0973W Database operation alert warning

    Hello experts,
    I hope you can help me with the following:
    In transaction DB13 the checkdb job reports the following errors:
    BR0973W Database operation alert - level: WARNING, operation: sdvgirhz.dbp, time: 2007-05-14 15.46.27, condition: Last 'dbp' operation failed with rc = 4
    BR0973W Database operation alert - level: WARNING, operation: sduxubpz.tse, time: 2007-03-30 08.58.27, condition: Last 'tse' operation failed with rc = 4
    BR0973W Database operation alert - level: WARNING, operation: sduxuaou.dfa, time: 2007-03-30 08.46.40, condition: Last 'dfa' operation failed with rc = 2
    I would like to get rid of these messages in dbcheck but can't figure out how to do it.
    I searched the notes database, google and this forum and still couldn't find an answer.
    Some data regarding oracle and sap versions:
    SAP_ABA     700     0009     SAPKA70009     Cross-Application Component
    SAP_BASIS     700     0009     SAPKB70009     SAP Basis Component
    PI_BASIS     2005_1_700     0006     SAPKIPYJ76     PI_BASIS 2005_1_700
    ST-PI     2005_1_700     0003     SAPKITLQI3     SAP Solution Tools Plug-In
    SAP_BW     700     0006     SAPKW70006     SAP NetWeaver BI 7.0
    SAP_AP     700     0003     SAPKNA7003     SAP Application Platform
    BBPCRM     500     0003     SAPKU50003     BBPCRM
    ST-A/PI     01I_CRM500     0000          -     Application Servicetools for CRM 500
    Database system      ORACLE   
    Release              10.2.0.2.0
    Thanks in advance for helping.
    Regards
    Dirk Visser

    the operations mentioned were not succesfully done...check the corresponding logfiles
    -> dbp = alter database parameter (brspace)
    -> tse = extend tablespace (brspace)
    -> dfa = alter data file (brspace)
    GreetZ, AH

  • 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

  • No way to publish a workflow, I get this error: System.InvalidOperationException: Operation failed with error Microsoft.Workflow.Client.ScopeInactiveException: Scope ... is not in an active state. Its current state is 'Unregistering'

    Hi,
    I'm using Project Server 2013 and I'm not able to publish a workflow in SharePoint Designer 2013, I get this error:
    System.InvalidOperationException: Operation failed with error Microsoft.Workflow.Client.ScopeInactiveException: Scope '/SharePoint/default/d7feb9ea-ccb2-4ec3-8f89-2a45b6cf3777' is not in an active state. Its current
    state is 'Unregistering'. HTTP headers received from the server - ActivityId: c47ef567-8c54-4ae0-9a1a-1e4fb51320d8. NodeId: TestServer. Scope: /SharePoint/default/d7feb9ea-ccb2-4ec3-8f89-2a45b6cf3777. Client ActivityId : c6e5979c-20f8-e042-1f9d-2cb2a25d7f9e.
    ---> System.Net.WebExceptio
    The thing is that I transferred the databases from a Prod.Env. to the Test Env. and from that moment on the Test Env. stopped working (only workflows), then I
    was thinking that maybe the workflow is not working in the Test Environment because when I transferred the databases from Prod Env to Test Env I didn’t transfer the databases related to workflow, I only transferred:
    WSS_Content
    PWA_ServiceDB
    But I didn’t transfer:
    SBGatewayDatabase
    SBManagementDB
    SBMessageContainer01
    WFInstanceManagementDB
    WFManagementDB
    WFResourceManagementDB
    I didn’t transfer them because, before, when I transferred DB’s in version 2010, these DB’s were not needed, as the workflows were done using another method.
    So, I tried to create a new workflow in the Test Env. but there is no way, I always get that error.
    I've tried to Register again the workflow, and the result looks ok, but it doesn't solve the problem:
    Register-SPWorkflowService
    –SPSite "http://whatever/PWA"
    –WorkflowHostUri "http://TestServer:12291"
    –AllowOAuthHttp -Force
    Do you know how to solve this issue or have an idea to give me some light?
    Thank you for your help and regards,
    José Espases

    Looks like you haven't defined the WF scope or the site where you are trying to deploy the workflow to isn't included in the scope
    Check this article
    http://fangdahai.blogspot.in/2013/04/on-premise-windows-workflow-server.html
    Thanks | epmXperts | http://epmxperts.wordpress.com

  • AIA FP 11.1.1.6.0 "Metadata transfer operation failed"

    Hi,
    I wonder if anyone can help. I am receiving the error below while performing a fresh install of AIA FP 11.1.1.6.0
    "Metadata transfer operation failed" MDS-00597 failure to open the archive file /tmp/archive4766411343835100171.jar
    Sure the above error points to a non-existent file but where do I get this file from? The directory is not write protected and the user performing the installation can write to that
    directory. Also, there is adequate memory so I don't think its a system resource issue.
    It is important to note that this error appears at the "Deploy Application Configurations" stage of the install.
    System Info
    Weblogic 10.3.6.0
    SOA 11.1.1.6.0
    OER 11.1.1.6.0
    Oracle Database XE 10.2.0.1.0
    [exec] soa_server1
    [exec] Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.
    [exec] For more help, use help(domainRuntime)
    [exec]
    [exec] Uploading metadata to server . . . . .
    [exec] Metadata tranfer operation failed
    [exec]
    [exec] This Exception occurred at .
    [exec] javax.management.MBeanException: MDS-00597: Failure to open the archive file /tmp/archive4766411343835100171.jar. Cannot create ArchiveMetadataStore for the archive file /tmp/archive4766411343835100171.jar.
    [exec] error in opening zip file
    [exec] Problem invoking WLST - Traceback (innermost last):
    [exec] File "/home/oracle/Oracle/Middleware/AIA/Infrastructure/Install/AID/lib/py/updateMetadata.py", line 53, in ?
    [exec] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    [exec] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    [exec] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    [exec] at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    [exec]
    [exec] java.lang.Exception: java.lang.Exception: Error!!! Import MetaData Failed !!
    [exec]
    BUILD FAILED
    /home/oracle/Oracle/Middleware/AIA/Infrastructure/Install/AID/AIAExecuteDriver.xml:222: The following error occurred while executing this line:
    /home/oracle/Oracle/Middleware/AIA/Infrastructure/Install/AID/AIAExecuteDriver.xml:65: The following error occurred while executing this line:
    /home/oracle/Oracle/Middleware/AIA/aia_instances/AIA/tmp/AIDExecuteDP_temp_1380328407.xml:94: The following error occurred while executing this line:
    /home/oracle/Oracle/Middleware/AIA/Infrastructure/Install/AID/lib/AIDConfigurationLibraryTasks.xml:845: exec returned: 1
    Total time: 5 minutes 27 seconds
    Deployment Command Return Value Configuration: 1

    You will face this issue when something goes wrong with SOA server.. your SOA server must be in running status..
    Edited by: 945735 on 09-Aug-2012 03:43

  • ORA-13516:AWR Operation failed:Catproc not valid

    HI
    I got the below error while installing Oracle 11.2.0.2.0 in linux server (2.6.18-262.el5)
    ORA-13516:AWR Operation failed:Catproc not valid
    ORA-06512: at 'SYS.DBMS_SWRF_INTERNAL",line 206
    ORA-06512: at 'SYS.DBMS_SWRF_INTERNAL",line 239
    ORA-06512: at line 1
    can u please help me to fix this issue.
    Thanking you

    skhastagir wrote:
    I did what you said and get the following. Seems like nothing happened?:
    C:\Users\Administrator>sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.1.0 Production on Fri Aug 9 14:17:23 2013
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> C:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\catproc.sql
    SP2-0024: Nothing to change.
    SQL> C:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\utlrp.sql
    SP2-0024: Nothing to change.
    [oracle@localhost ~]$ oerr sp2 24
    00024,0, "Nothing to change.\n"
    // *Cause:  There was nothing in the SQL buffer when using the CHANGE
    //          command.
    // *Action: Make sure the SQL buffer is not empty before using the
    //          CHANGE command.
    it should be done as below
    SQL> @C:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\catproc.sql
    you neglected to actually include the "AT SIGN" @ preceding the script name

Maybe you are looking for

  • OBIEE Query: Can I use the "IN" with two or more fields?

    Hi. I'm trying to do a simple query like this: Select "Tempo"."Anno" as anno, "Tempo"."Mese" as mese from "PRE" where ("Tempo"."Anno","Tempo"."Mese") IN (select "Tempo"."Anno", "Tempo"."Mese" from "PRE") but BI Publisher returns this error: java.io.I

  • Put retina display in old macbook

    hey guys i just wanted to know if you could put a retina display screen in a older mackbook. will it be compatiable?

  • InDesign 6: When exporting to PDF - error message fix a pixels/picas

    InDesign 6: When exporting to PDF - get error message to go into Preferences and fix a pixels/picas issue - I've been working in the same project for two days and exporting pages all along without this trouble - just started all of a sudden.  Haven't

  • QT exported to MP4 = No Audio . . . . . Any advice please?

    Exporting QT.mov to MP4 onto my new mobile phone. It Looks great and very clear but has no audio? I suspect it's due to not exporting a compatible AIFF audio file or something for MP4 to read? What do I need to do to export the Audio over to MP4 thro

  • IS Public Sector and IS U

    Hi Experts,   I want to you know if we can install IS-Utilities on the same ECC instance where IS Public sector is already running? Thanks, SB.