Viewing 15 posts - 76 through 90 (of 231 total)
Another thing to point out is that a job is based on the underlying DTS, and the properties of the DTS might specify that it "fail on first error".
See: Package|Properties|Logging
October 21, 2004 at 9:04 am
Yes, you may want to look at...
sp_helpuser
sp_helplogins
October 14, 2004 at 11:57 am
exec sp_MSforeachdb @command1 = '?..sp_helprotect'
October 14, 2004 at 9:04 am
Make sure that you're using the full UNC path -- it may not be mapped on the server.
For example:
//servername/path/filename.ext
October 12, 2004 at 9:30 am
If you're migrating to a new server and use DSNs, make sure that they are updated with the new server name, or if the connection string is hard-coded, then change...
October 12, 2004 at 9:08 am
Make sure that the path has not changed by your LAN guys. This sometimes happens to us without any kind of notification from them. Not sure why they do this...
October 12, 2004 at 9:06 am
Is it possible to set up a trace through Profiler to record the error and additional information desired?
October 11, 2004 at 12:37 pm
I have found the following books to be very helpful...
Microsoft SQL Server 2000 Administrator's Pocket Consultant (Microsoft Press)
The...
October 5, 2004 at 9:36 am
I agree. We have nightly extracts that pull from DB2 and the time necessary to extract the same data really varies. Some nights it can take as little as 1.5...
October 1, 2004 at 9:40 am
Don't forget to put the database in single user mode first.
And run "update statistics" after you're finished.
Do something like...
exec sp_dboption 'your_database_name', 'single user', true
exec sp_detach_db 'your_database_name'
-------------------------------------------------------------
-- MANUALLY COPY/PASTE .MDF/.LDF FILES...
October 1, 2004 at 9:31 am
I've noticed that at times, if I right-click on the DTS package and choose "Schedule", I have to hit the refresh button after I navigate to the Jobs section to...
October 1, 2004 at 9:24 am
We're on IBM and it seems that every time a new fixpak is installed, a new bug is introduced, or an old bug resurfaces. Kinda frustrating!!!
September 30, 2004 at 12:15 pm
I agree with David. If you're going to convert the Access queries to be SQL Server specific to allow for pass-thru queries, you might as well simply take this SQL...
September 30, 2004 at 9:25 am
That's what we use with the IBM DB2 client components installed on the server. Seems like I did have a problem using the "IBM DB2 ODBC Driver", but when I...
September 29, 2004 at 4:07 pm
Quote from http://www.sqldts.com/default.aspx?208
... one drawback to using Visual Basic is that it is apartment threaded and DTS is free threaded. This can cause exception access violations. The simple way...
September 29, 2004 at 10:48 am
Viewing 15 posts - 76 through 90 (of 231 total)