Viewing 15 posts - 1,681 through 1,695 (of 2,486 total)
So do you want the offices to run your DTS package on their server, or do you want your DTS package to send just the output to each office?
If it's...
September 22, 2004 at 5:48 pm
Can't tell much from that one line. Maybe you could post the entire script?
September 22, 2004 at 4:24 pm
Are you using the same ODBC datasource, or the same destination tables? It could be that the second package is waiting for locks to be released from the first package.
September 19, 2004 at 5:01 pm
Scheduled subscriptions are just SQL Agent jobs. You could just change the time on the jobs, but that may have other consequences within the RS database.
Another option would be to...
September 16, 2004 at 4:44 pm
Returning any rows in Enterprise Manager is a drag. Before it displays any data, it has to format it into the grid.
Best to use Query Analyzer to return the data...
September 15, 2004 at 5:41 pm
Also, it should be noted that Active/Active doesn't work if you're thinking of running the same application on each node. As noted above, each node should have it's own resources,...
September 15, 2004 at 5:36 pm
The one big failure of using Outlook for sending alert messages is that if the Exchange server is unavailable, Outlook loses its connection.
Once that happens you can try using...
September 15, 2004 at 5:31 pm
Take a look at my script here,
http://www.sqlservercentral.com/memberservices/updatescript.asp?Approve=y&scriptid=606
This removes old versions of packages and their related logs. You can modify this to just remove the logs if you like. There is...
September 14, 2004 at 5:32 pm
First, make sure you have enabled DTS Package Logging on the Package Properties page.
If you log to SQL Server, then the log information can be found in sysdtspackagelog, sysdtssteplog and...
September 14, 2004 at 5:29 pm
Even better, use something similar to the earlier script to wipe out the packageID altogether. This ensures the package is loaded by name only. In which case the latest version...
September 8, 2004 at 4:55 am
Matt
You can assign your stored procedure output in a global variable rowset.
For more info on the rowset take a look at this article
September 8, 2004 at 4:52 am
The DTS Import Wizard will try and create the database in the default directory.
The only way you can locate it elsewhere is to do as Greg suggested and create the...
September 8, 2004 at 4:47 am
The file will be located in the C:\Program Files...SQL Server\binn directory. That is where the DTS files are located.
Have you tried using the DTS FTP task?
September 8, 2004 at 4:37 am
I've achieved something similar to this using a table variable, sp_makewebtask and xp_smtp_sendmail.
The table variable holds the list of departments which are passed one at a time to sp_makewebtask which...
September 8, 2004 at 4:32 am
Viewing 15 posts - 1,681 through 1,695 (of 2,486 total)