Viewing 7 posts - 2,611 through 2,617 (of 2,617 total)
donnelcyril (11/9/2008)
I am having problems with my queries which I definitely think is because of null values. This is what I want to do:
Find out a list of phone numbers...
November 9, 2008 at 4:54 pm
Akash Agarwal (8/13/2008)
CROSS APPLY sys.dm_exec_sql_text(qs.plan_handle) qt
while creating the Proc
The error is
Msg 102, Level 15, State 1, Procedure dba_QueryTimeDelta1, Line 49
Incorrect syntax...
August 13, 2008 at 1:16 pm
I've added a NullIf function to prevent the divide by zero error:-------------------------------------------------------------------------- ----------------------------------------------------------------------------------
-- Purpose: Identify queries that are running slower than normal,
-- when taking into account...
August 9, 2008 at 7:52 am
Here's one with divide by zero error removed and indentation:
------------------------------------------------------------------------
-- Purpose: Identify queries that are running slower than normal,
-- when taking...
August 7, 2008 at 6:26 am
I realy like this stored procedure. I have a system that uses UPSERTs where first you try to update a row using the primary key and if it the...
February 27, 2008 at 8:13 am
Whenever you compare NULL you should always use 'IS NULL' rather than '= NULL'
e.g.
[font="Courier New"]SET ANSI_NULLS ON
DECLARE @val CHAR(4)
SET @val = NULL
SET ANSI_NULLS ON
January 25, 2008 at 5:16 am
I agree, I've gone to the effort of writing a Word macro template to document SQL-Server databases. You just select an ODBC data-source for a SQL server database and it...
January 2, 2008 at 9:11 am
Viewing 7 posts - 2,611 through 2,617 (of 2,617 total)