Viewing 15 posts - 946 through 960 (of 2,636 total)
I guess I should pay attention to which forum I'm in. Sorry about that.
June 24, 2008 at 2:03 pm
What happened when you tried:
Grant ALTER on storedprocedure to user?
June 24, 2008 at 10:18 am
In a practical sense, Mani Singh is right. The Dynamic Management Views replace the system tables you're used to seeing in SQL 2000. In a strict sense, system...
June 24, 2008 at 8:54 am
Specifically, it would be
sp_start_job @job_name='your jobname', @step_name = 'your stepname'
June 23, 2008 at 5:13 pm
The green flag indicates the starting step i.e. the first step that will run when the job starts.
June 23, 2008 at 5:08 pm
I don't see any way to prevent a sysadmin member from restoring a backup. You can minimize the risk by having a minimal number of responsible people as sysadmins.
June 23, 2008 at 5:05 pm
By "sequence", do you mean a column with the Identity property? If so, it's a mistake to be concerned with either the order of rows or gaps in identity...
June 23, 2008 at 9:09 am
Use msdb.dbo.sysschedules.
June 19, 2008 at 2:48 pm
Yes. See "context switching" in BOL.
June 18, 2008 at 9:45 am
Try using WITH EXECUTE AS 'dbo' in the stored procedure to switch context to an user that can do TRUNCATE and DBCC CHECKIDENT. Then you just grant the user...
June 18, 2008 at 9:39 am
Rather than granting SELECT on sysdtspackages, you could try granting EXECUTE on sp_enum_dtspackages and sp_get_dtspackage in msdb.
June 18, 2008 at 8:41 am
When you right-click on the job and select 'Start Job', you'll be able to choose the step you want to start, if it's a multi-step job.
Note that the job will...
June 17, 2008 at 10:19 am
Importing DTS packages and running them as legacy packages is a good choice if you want to take your time migrating them to SSIS. That's the route we've chosen...
June 17, 2008 at 9:52 am
I'm not familiar with Protection Level as it relates to DTS packages. I've only used it with SSIS packages.
June 16, 2008 at 9:00 am
Deepak is correct. Make the job step type Operating system(CmdExec) and use DTSRun just like you did in SQL 2000 jobs.
June 16, 2008 at 8:56 am
Viewing 15 posts - 946 through 960 (of 2,636 total)