Viewing 15 posts - 436 through 450 (of 2,635 total)
With that many packages, I'd suggest you look at DTS xChange from Pragmaticworks. I've looked at it, but haven't tried it yet. http://www.pragmaticworks.com/
Greg
April 7, 2009 at 3:14 pm
Hi bruce,
Despite it's name, db_dtsoperator (and the other dts roles in msdb) only works for SSIS packages. The best way I've found is to grant EXECUTE permission to...
Greg
April 7, 2009 at 3:13 pm
I don't recall an option during SQL 2005 installation that let's you install DTS Designer components. I've had to download and install them after the SQL installation.
Greg
March 31, 2009 at 2:07 pm
nroberson (3/31/2009)
Greg
March 31, 2009 at 10:23 am
I know you can grant CREATE PROCEDURE permission to a user or role, which would allow it to create stored procedures, but you have to grant ALTER permission individually to...
Greg
March 31, 2009 at 10:16 am
Try granting EXECUTE permission on these stored procedures in msdb: sp_help_job, sp_help_jobstep, sp_help_jobschedule, and sp_help_jobhistory.
I would probably create a role in msdb and grant EXECUTE on the stored...
Greg
March 31, 2009 at 9:42 am
Does he only need to see the jobs or does he need more extensive permissions?
Greg
March 30, 2009 at 3:33 pm
You could use undocumented sp_MSforeachdb.
sp_MSforeachdb
'use ?
--exclude system databases
if DB_ID(''?'') > 4
EXEC sp_addrolemember N''db_backupoperator'', N''LoginName''
'
Greg
March 26, 2009 at 12:16 pm
Since you're apparently not storing DTS packages in Meta Data Services, you don't have to do anything. The Upgrad Advisor gives me the same results when I run it...
Greg
March 25, 2009 at 2:26 pm
The backup device you see in Enterprise Manager is merely a logical name for a file where backups are stored. It has nothing to do with a backup schedule....
Greg
March 25, 2009 at 10:58 am
Actually, if you're using the view to get a list of databases, you WILL need to change the stored procedures. The compatibility level of your databases makes no difference....
Greg
March 25, 2009 at 10:46 am
Since sp_start_job runs asynchronously, it won't wait for the job to finish without you doing some work in the stored procedure. There's a post in this thread that gives...
Greg
March 24, 2009 at 12:25 pm
You can also disable the schedule by opening the job, going to the Schedules tab, editing the schedule and unchecking the "Enabled" box.
Greg
March 24, 2009 at 9:41 am
Yep. Everything that goes into production gets reviewed and implemented by a DBA in our shop.
Greg
March 24, 2009 at 9:16 am
I don't understand how you could have taken a differential backup of the database without first taking a full backup. You could try restoring the full backup again then...
Greg
March 23, 2009 at 5:16 pm
Viewing 15 posts - 436 through 450 (of 2,635 total)