Viewing 15 posts - 4,216 through 4,230 (of 7,191 total)
So there are other triggers on the table? Please will you post the definitions for them?
John
December 17, 2012 at 1:59 am
Have a look at this page. Your trigger is INSTEAD OF UPDATE, but you're doing an INSERT.
John
December 17, 2012 at 1:52 am
When you use xp_cmdshell, the command runs in the context of the SQL Server service account. There are two things you could try: make sure that the folder that...
December 17, 2012 at 1:46 am
Do what I did and type "cluster command line" into your favourite search engine.
Or just guess - the command line utility is actually called "cluster". But you'll still need...
December 13, 2012 at 6:59 am
Tables don't perform - queries do. But make sure you have the correct indexes and statistics set up on the tables, and that those indexes are maintained and statistics...
December 12, 2012 at 3:43 am
That's interesting. What was your answer?
John
December 11, 2012 at 7:48 am
OK, I think what I'm about to say is right, but you may want to check it. When you run a job as a login that's a member of...
December 11, 2012 at 6:52 am
Sorry, but I'm lost now. Are we talking about sysadmin on ssisadmin (never heard of that)? What do you mean by "it leaves the network drive"? Could...
December 11, 2012 at 5:35 am
No, the table names won't display. If you do SELECT * FROM MyTable, that shows you everything in the table, but it doesn't return the name of the table....
December 11, 2012 at 3:42 am
You need to monitor the SQL Server Agent service at OS level using something like SCOM.
John
December 11, 2012 at 3:33 am
No. The query that you posted above, run it every five minutes and insert the results into your audit table. Bear in mind that if a database is...
December 11, 2012 at 2:59 am
Lokesh
Try dumping the results of your query into an audit table every five minutes. You'll want to test and plan carefully so that you don't end up using lots...
December 11, 2012 at 2:47 am
[font="Courier New"]SELECT name FROM sys.databases[/font] will solve the problem you describe, although I can't help suspecting that your requirement is somewhat more complex than that. You can use a...
December 11, 2012 at 2:42 am
I don't know what's going on, then. Try running a Profiler trace to see what's happening in the background when you modify the job.
John
December 11, 2012 at 2:27 am
What happens if you create a new login and make it a member of SQLAgentOperatorRole in msdb?
John
December 11, 2012 at 1:52 am
Viewing 15 posts - 4,216 through 4,230 (of 7,191 total)