I am trying to make an archive copy of a database using Transfer Database Task in SSIS.
I created a blank SSIS project, added and configured the "Transfer Database Task". My source is a network SQL Server and I am part of sysadmin server role.
I am trying to move database A on Server A to database B on Server B, but database A reference database Z (on Server A). database Z does not exist on Server B. So I am getting an error when a procedure on database A references database Z. Here is the Error...
Error: The Execute method on the task returned error code 0x80131500 (ERROR :
errorCode=-1073548784 description=Executing the query "CREATE VIEW dbo.sc_SpecificOffering_lov
AS
SELEC..." failed with the following error: "Invalid object name 'z.dbo.usm_rate_definition'.".
Possible failure reasons: Problems with the query, "ResultSet" property not set correctly,
parameters not set correctly, or connection not established correctly.
The Execute method must succeed, and indicate the result using an "out" parameter.
Is there a setting that would allow this database and its objects to be created? With out validateing every procedure and object?
Is the Transfer Database Task All or nothing?
Thanks,
Mike