Viewing 15 posts - 226 through 240 (of 283 total)
You could just write a script to update the msdb.dbo.sysjobs table (enabled column) and set it for each job you want disabled when this s.n.a.f.u occurs.
A.J.
DBA with an attitude
September 27, 2005 at 12:38 pm
I wasn't aware that you were connecting as sysadmin. sa has permissions already (obviously). You may want to review the link in the previous post for further suggestions.
A.J.
DBA with an attitude
September 26, 2005 at 1:44 pm
In the master db on the server.
A.J.
DBA with an attitude
September 26, 2005 at 1:38 pm
Grant permissions to the sp_sdidebug stored procedure.
http://msdn.microsoft.com/library/?url=/library/en-us/trblsql/tr_servtools_5cfm.asp
A.J.
DBA with an attitude
September 26, 2005 at 1:32 pm
What's the fragmentation of the indexes on these tables look like? Run DBCC SHOWCONTIG if the scan density is < 80% I would either run DBCC DBREINDEX or DBCC INDEXDEFRAG...
A.J.
DBA with an attitude
September 26, 2005 at 12:00 pm
How many rows does this query return?
A.J.
DBA with an attitude
September 26, 2005 at 11:57 am
Have you tried running a profiler trace to determine the batches / procedures that are utilizing the most CPU time? This may give you a starting point of troubleshooting to...
A.J.
DBA with an attitude
September 26, 2005 at 11:54 am
Why not just change your statement
SELECT * FROM [AnyTable] where IDC = 878
to
SELECT column1, Column2 FROM [AnyTable] where IDC = 878
And, dude - don't used cursors they suck for performance.
A.J.
DBA with an attitude
September 21, 2005 at 3:39 pm
That's pretty good. Then give then eleven questions and tell them to rank themselve 1 - 100 Haha ... ![]()
A.J.
DBA with an attitude
September 19, 2005 at 11:25 am
What a joke. People who can't handle brutal honest feedback are generally suckers trying to hide their lack of intellgence. Being (PC) Politically Correct is for the chumps. I applaud...
A.J.
DBA with an attitude
September 19, 2005 at 10:45 am
A Man without a woman is just not being suckered into paying her bills, listening to her bull shit lies, and that man will be happier without her bitch-ass anyhow.
A.J.
DBA with an attitude
July 19, 2005 at 9:40 am
Don't you guys (and evil women) have jobs?
A.J.
DBA with an attitude
July 18, 2005 at 2:33 pm
SELECT @Output will return a recordset
You want to do everything that Remi said to do but instead:
Print @Output
A.J.
DBA with an attitude
June 13, 2005 at 1:49 pm
You can only have a "trusted connection" by not using OPENROWSET - instead you'd have to create a linked server.
To check/edit the service account just go to properties in Enterprise...
A.J.
DBA with an attitude
June 7, 2005 at 1:00 pm
You can only have a "trusted connection" by not using OPENROWSET - instead you'd have to create a linked server.
To check/edit the service account just go to properties in Enterprise...
A.J.
DBA with an attitude
June 7, 2005 at 12:25 pm
Viewing 15 posts - 226 through 240 (of 283 total)