Link to home
Start Free TrialLog in
Avatar of D B
D BFlag for United States of America

asked on

Using SQLXML Bulk Load on the Server - SQL Sever 2000, Windows 2003 Server

We are using the SQLXML bulk load object to load XML to a SQL Server 2000 database in a DTS package. The load occurs with no problems at all when a client executes the package, but when it is run on the server, I get the error: ActiveX component can't create object: 'SQLXMLBulkLoad.SQLXMLBulkLoad.4.0'


Can someone tell me what needs to be installed on the Windows 2003 server to allow the code to execute as a job on the server?

set objBL = CreateObject("SQLXMLBulkLoad.SQLXMLBulkLoad.4.0")
 
	objBL.ConnectionString = "provider=SQLOLEDB;data source=servername;database=user;integrated security=SSPI" 
 
	objBL.KeepIdentity = false
	objBL.ErrorLogFile = "c:\error.xml"
	objBL.Execute schemaFile, inputFile
	set objBL = Nothing

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of ludo_friend
ludo_friend
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of D B

ASKER

Will this work with SQL Server 2000?
I'm not sure dbbishop - have you got a dev server set up that you can test this on?

 a quick google search turned up this - http://social.msdn.microsoft.com/Forums/en-US/sqlxml/thread/c81d2007-6083-4c1d-a8bb-36ee0c816cb4

they didn't really answer the guys question, but they didn't say it wasn't compatible either. I'd test it on a dev box first :)
Avatar of D B

ASKER

Looks like it worked. Thanks.