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