Viewing 15 posts - 8,911 through 8,925 (of 14,953 total)
What if you're having to locally manage the server and need to look something up in MSDN (for example)?
July 29, 2009 at 3:26 pm
It's a proc SQL Agent uses to refresh the jobs cache. So, it matters.
Not sure why you'd have a user-created version, unless some DBA built a custom version of...
July 29, 2009 at 3:24 pm
Don't use three-part-names for the columns. SQL 2005 doesn't support that. Use the table and column name only.
July 29, 2009 at 3:20 pm
They do have uses. Few and far between, but valid uses.
The usual reason to tell people to "just don't use them", is an overreaction to overuse.
July 29, 2009 at 3:18 pm
sjsubscribe (7/29/2009)
Lynn Pettis (7/29/2009)
Yes, my rights do include freedom from something -- your pronouncements.
Please, show me where in the Constitution you are protected from my Freedom of Speech?
You must try...
July 29, 2009 at 11:46 am
Jack Corbett (7/29/2009)
Anyone else want to tell this guy NOT to shrink his databases?
Looks to me like he got the point.
July 29, 2009 at 10:57 am
Take a look at "Common Table Expression" in Books Online (or MSDN). There's a section on recursive CTEs, and it has a solution for what you're looking for here....
July 29, 2009 at 8:35 am
sarvesh singh (7/29/2009)
I've got snapshot_isolation on and read_committed_snapshot on. Will delaying the trigger still block the tables. ...
Yes.
July 29, 2009 at 8:31 am
Jan Van der Eecken (7/29/2009)
Lynn Pettis (7/28/2009)
July 29, 2009 at 8:24 am
Jack Corbett (7/28/2009)
July 29, 2009 at 8:18 am
A delay in the trigger won't do what you need. It'll just hold the transaction up and probably cause the Java to time out.
Better to have the audit process...
July 29, 2009 at 8:14 am
You could set the recursion level as an input parameter that the function passes to itself. You could set maxrecursion (see Books Online for details), but it should stop...
July 29, 2009 at 8:13 am
While the trigger is waiting, the transaction is incomplete, and locks will be held in the table. In almost every situation I can think of, this would be a...
July 29, 2009 at 8:06 am
The way I buy a chair is by going to a store that sells them, and sitting for a few minutes in every one of them that looks even vaguely...
July 29, 2009 at 7:33 am
If you query a list of the files, it would be very easy to not use the last one in the list. That's why I suggested that.
July 29, 2009 at 7:22 am
Viewing 15 posts - 8,911 through 8,925 (of 14,953 total)