Viewing 15 posts - 136 through 150 (of 213 total)
I think you might be able to take what's in this article and modify it to suit your needs:
August 15, 2007 at 5:58 pm
Do you have the proper permissions to execute xp_cmdshell?
I added this line to an Execute SQL task and it worked:
EXEC master.dbo.xp_cmdshell 'START c:\test.bat'
Make sure the last command in your batch...
August 15, 2007 at 5:36 pm
Can you reach these FTP sites and see files with your web browser, a command prompt, or some FTP software like Filezilla? If not, the problem isn't with the http://FTP...
August 15, 2007 at 5:10 pm
Set the global variable = Nothing at the end of your Active X Script task.
DTSGlobalVariables("Name of var").Value = Nothing
You'll be able to save the package.
June 25, 2007 at 7:29 pm
Execute a CREATE TABLE statement to create a "permanent" version of your temp table, insert records into it, then execute a DROP TABLE statement when you're done.
June 25, 2007 at 7:25 pm
Yes, there are a few ways to do this.
One way would be to add an Active X script task after your import task that uses the FileSystemObject to delete the...
May 21, 2007 at 4:18 pm
You'll never guess the answer.
Excel_Application.ActiveSheet.Unprotect "enter password"
May 17, 2007 at 12:19 pm
Add the following line just before "Excel_WorkBook.Save"
Excel_Application.ActiveSheet.Protect "enter password"
May 16, 2007 at 11:19 am
Not sure what's going on, but one way to get some more information would be to go to the Options tab of your data transformation's properties, entering a path for...
May 1, 2007 at 5:29 pm
This is the "Security Accounts Manager" service. Look at the services on your computer and verify that you see the service in the list. If it's disabled, try to restart...
May 1, 2007 at 5:24 pm
I don't think you can hide the command window while using osql. You can hide it if you use WScript.Shell in an Active x script task.
April 2, 2007 at 1:56 pm
When a DTS package is scheduled as part of a SQL job, it runs under the same account that runs the SQL Server Agent unless you specifically set the username...
April 2, 2007 at 1:53 pm
Open up your DTS package and select the Properties/Disconnected Edit menu.
In the window that appears, expand the "Steps" section. Select one of the steps in your package. Double-click on the...
April 2, 2007 at 1:43 pm
I don't know about SSIS, but in DTS you could store the results of your query in Global Variables, then use an Active x script task to open the .xls...
April 2, 2007 at 1:15 pm
Viewing 15 posts - 136 through 150 (of 213 total)