Viewing 15 posts - 961 through 975 (of 2,635 total)
Lots of scripts listed here: http://www.sqlservercentral.com/Scripts/Security/. Take your pick. I've used versions of several of them.
Greg
June 12, 2008 at 9:41 am
Can you open them in a remote connection to the server? It could be a problem with the client installation on your PC.
Greg
June 12, 2008 at 9:31 am
Sorry, I can't see the complete thread title. Could you put you question in the body of your post, please?
If you want to transfer jobs between instances,...
Greg
June 12, 2008 at 9:29 am
Can you tell us which of the error messages you got? If you got the one referring to DTS Designer components, did you install them?
Greg
June 12, 2008 at 9:26 am
Try granting EXECUTE permission on sp_help_job and maybe sp_get_composite_job_info in msdb.
Greg
June 12, 2008 at 9:21 am
Everyone using the same login(SQL Server login?) makes it difficult. I think this would be recorded in the SQL Server error log, but if nobody connects using a Windows...
Greg
June 12, 2008 at 8:52 am
Interesting. I was able to provide the password in my job...
Greg
June 12, 2008 at 8:41 am
If you set the job step type to "SQL Server Integration Services Package" instead of "CmdExec" and use a proxy account, you could reduce the permissions required to run the...
Greg
June 11, 2008 at 9:38 am
Have you looked at the SQL Server Agent fixed database roles in msdb? Although I haven't tried it, it sounds like the SQLAgentOperatorRole would fit your needs if you...
Greg
June 11, 2008 at 9:25 am
DTS is used to import and export data to and from databases. It has been replaced by SQL Server Integration Services in SQL 2005.
Replication is used to keep the...
Greg
June 10, 2008 at 9:01 am
Use IF...ELSE instead of CASE for conditional logic outside a SELECT statement.
Greg
June 10, 2008 at 8:47 am
I think you'll have to either do them manually in Enterprise Manager or script them out of sysmembers in TSQL.
Greg
June 9, 2008 at 4:10 pm
You probably saved the package with the default protection level EncryptAllWithUserKey. That means that only the user who created the package can load and execute the package. When...
Greg
June 9, 2008 at 3:54 pm
The only way I've been able to do it is to drop the role and recreate it.
Greg
June 9, 2008 at 10:26 am
You could use a query like this that checks sysjobhistory:
select distinct j.Name as "Job Name", h.run_date as LastStatusDate,
case h.run_status
when 0 then 'Failed'
when 1 then 'Successful'
when 3...
Greg
June 9, 2008 at 10:21 am
Viewing 15 posts - 961 through 975 (of 2,635 total)