Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DTS - Invalid Class String Error

Status
Not open for further replies.

osjohnm

Technical User
Apr 4, 2002
473
ZA
Hi all

One of our developers is busy creating DTS packages that copies a table from another database and then renames the previous table instead of overwriting it if it already exists like so:

HMJ_RAS
HMJ_RAS_01a
HMJ_RAS_01b

On one package this works fine without any problems but the others which were saved from the working one and then he added the rename tasks. The table is created but not data is populated.

This is the error:

EXEC master.dbo.xp_cmdshell 'DTSRUN /S ipsserver03 /U sa /P password/N FETCH_HMJ_RAS'
DTSRun: Loading...
DTSRun: Executing...
DTSRun OnStart: DTSStep_DTSExecuteSQLTask_1
DTSRun OnFinish: DTSStep_DTSExecuteSQLTask_1
DTSRun OnStart: Create Table [iRSDevData].[dbo].[HMJ_RAS] Step
DTSRun OnFinish: Create Table [iRSDevData].[dbo].[HMJ_RAS] Step
DTSRun OnStart: Copy Data from HMJ_RAS to [iRSDevData].[dbo].[HMJ_RAS] Step
DTSRun OnError: Copy Data from HMJ_RAS to [iRSDevData].[dbo].[HMJ_RAS] Step, Error = -2147221005 (800401F3)
Error string: Invalid class string

Error source: Microsoft Data Transformation Services (DTS) Package
Help file: sqldts80.hlp
Help context: 1100

Error Detail Records:

Error: -2147221005 (800401F3); Provider Error: 0 (0)
Error string: Invalid class string

Error source: Microsoft Data Transformation Services (DTS) Package
Help file: sqldts80.hlp
Help context: 1100


Error: -2147221005 (800401F3); Provider Error: 0 (0)
Error string: Invalid class string

Error source: Microsoft Data Transformation Services (DTS) Package
Help file: sqldts80.hlp
Help context: 4700

DTSRun OnFinish: Copy Data from HMJ_RAS to [iRSDevData].[dbo].[HMJ_RAS] Step
DTSRun: Package execution complete.

I've searched microsoft and google and what I've found hasn't answered my question

I appreciate any help

Thanks

John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top