Viewing 7 posts - 16 through 22 (of 22 total)
I'm not sure if this is what you are looking for, but query analyzer has the option to debug a sproc. Right click on the sproc name, choose debug...
November 24, 2005 at 12:03 pm
I know this is an old thread but this is a subject which I will soon have to get into.
I actually don't like either solution. The multi-column table is...
October 10, 2005 at 7:20 pm
A cleaner solution and an introduction to a very useful function if you've never used it.
CREATE FUNCTION dbo.LIST_OF_VALUES (@ColumnId as int)
RETURNS varchar(8000)
AS
BEGIN
DECLARE @Items as varchar(8000)
SELECT
@Items = COALESCE(@Items + ','...
October 4, 2005 at 4:06 pm
and don't forget db_datareader.
October 4, 2005 at 3:39 pm
I'm having a similar problem. Much smaller tables, about 6 columns, 140000 rows. Looking at the query plan, the read from the inserted table is by far the most expensive...
April 12, 2005 at 7:49 pm
Amit,
I apologize for insulting your intelligence and questioning your knowledge of sql terms. However, based on you test data and the original question that you asked, it appears that you...
April 30, 2004 at 7:50 am
Amit,
For future reference this is called a CORRELATED SUBQUERY. I find them to be a rather abstract thought process at first, but the only way that I know of to...
April 30, 2004 at 6:23 am
Viewing 7 posts - 16 through 22 (of 22 total)