Viewing 15 posts - 91 through 105 (of 2,635 total)
Use Darren Green's DTSBackup 2000 to save all the packages. It's free and works well. Get it here: http://www.sqldts.com/242.aspx
December 14, 2010 at 9:43 am
Like a lot of people, what I listen to depends on what I'm doing.
I alternate between no headphones, listening to NPR, and listening to music (alt rock & blues).
Because I...
December 3, 2010 at 10:14 am
Try the method I mention in this link:
http://www.sqlservercentral.com/Forums/Topic607599-19-1.aspx
November 17, 2010 at 9:20 am
Not that I've ever noticed. I've had packages log to SQL Server and to text files and never noticed a significant performance difference between that and no logging.
November 1, 2010 at 10:19 am
bothaellen (10/27/2010)
October 27, 2010 at 9:25 am
Unlike a sequence, which is a database object, identity is a column property which can't be shared among tables.
You could could do what you want by creating a table with...
October 13, 2010 at 10:28 am
I usually generate a TRUNCATE script outside the Wizard and run it right before copying data.
select 'truncate table ' + name
from sys.sysobjects
...
October 12, 2010 at 5:27 pm
No. Only a log backup truncates the transaction log.
September 29, 2010 at 9:25 am
Have you considered the SQLAgent roles, SQLAgentOperatorRole SQLAgentReaderRole, SQLAgentUserRole, in msdb?
Look at their definitions in BOL and see if one of them fits what you want the user to be...
August 30, 2010 at 9:47 am
Could you use a script that executes sp_add_job, sp_add_jobstep, sp_add_jobschedule, and sp_add_jobserver? I don't know what kind of database checks you include, but you can put DBCC
commands in a...
August 4, 2010 at 10:33 am
Try Restore Headeronly.
RESTORE HEADERONLY FROM <backup device>
July 29, 2010 at 9:55 am
From what I gather by searching this site and Google, Autosys is a job scheduling product from Computer Associates. I don't have any experience with it, but there are...
July 21, 2010 at 9:01 am
Being a member of the db_owner role isn't the same as being dbo as far as object ownership goes. The owner of the object will default to the user's...
July 15, 2010 at 11:37 am
You can save a DTS package as a Visual Basic file by opening it with DTS Designer, expand Package, Save As..., make the location "Visual Basic File". You can...
June 11, 2010 at 9:35 am
You can't create a single role that works in multiple databases because database roles only exist in the database where they're created.
If your aim is to allow a...
June 7, 2010 at 9:16 am
Viewing 15 posts - 91 through 105 (of 2,635 total)