Can anyone provide some information on how to run an integration services package, on an SQL server 2005 instance, from Visual Basic 6?
Any help at all is much appreciated.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to have
xp_cmdshellenabled, if it’s not, execute:sp_configure 'xp_cmdshell', '1'in SSMS on your server.Create a store procedure, and put the following code in it:
Then, call the stored procedure from VB6, via an ADODB.Command.
You have examples here:
I hope it helps.