Viewing 15 posts - 2,701 through 2,715 (of 14,953 total)
CELKO (12/1/2011)
SELECT X.*
FROM (VALUES (CAST...
December 1, 2011 at 11:24 am
Of course, the other option would be to put a first step in those jobs that would check the time/date, and cause the job to abort if run during the...
December 1, 2011 at 11:22 am
If the temp table is created in the dynamic SQL command, it will only exist in that scope. That means it goes away as soon as that command finishes...
December 1, 2011 at 11:11 am
Welsh Corgi (12/1/2011)
GSquared (12/1/2011)
Welsh Corgi (12/1/2011)
@GSquared, I just created the Triggers & Table in T-SQL.Thanks.
What are the connection settings you're using when you issue the create table command?
There are no...
December 1, 2011 at 11:07 am
Dev (12/1/2011)
Wishes!!!CONGRATULATIONS TO YOU BOTH
+
Signature
If everything seems to be going well, you have obviously overlooked something.
= Hilarious :hehe:
I have to admit, I too laugh at some of...
December 1, 2011 at 11:04 am
Most of the time, deadlocks can be avoided by writing code to take locks in the same sequence. If you can't ensure that, then deadlock priority low should do...
December 1, 2011 at 10:59 am
GilaMonster (12/1/2011)
December 1, 2011 at 9:54 am
You can actually change the zero date at a server-level, so test it before you count on that. Won't matter if it's being used to strip parts off of...
December 1, 2011 at 9:44 am
I guess I'm not sure exactly what you're testing here.
On a server that's not in use yet, I'd use performance stats from the server it's replacing, if there is one,...
December 1, 2011 at 9:20 am
Guras (12/1/2011)
Here is my sp
CREATE PROCEDURE [dbo].[PROC_SQLJOBS_ENABLE_DISABLE]...
December 1, 2011 at 9:17 am
Dev (12/1/2011)
GSquared (12/1/2011)
December 1, 2011 at 9:16 am
My wife and I are celebrating our 21st anniversary today. As part of that, I'm taking next week off of work (my third vacation since 1988), and probably won't...
December 1, 2011 at 9:12 am
Welsh Corgi (12/1/2011)
@GSquared, I just created the Triggers & Table in T-SQL.Thanks.
What are the connection settings you're using when you issue the create table command?
December 1, 2011 at 8:06 am
Any reason not to just turn off the SQL Agent service during that window? That'll turn off all jobs in one command. You can turn that off and...
December 1, 2011 at 8:04 am
Because it's using an XML data type in the trigger, it has to have the correct settings for ANSI NULLs, ARITHABORT, and a few others. They're the ones applicable...
December 1, 2011 at 7:40 am
Viewing 15 posts - 2,701 through 2,715 (of 14,953 total)