Viewing 4 posts - 1 through 4 (of 4 total)
I don't know if Grasshopper wants to only display the subprojects that aren't null or not create the report at all if any of the subprojects are null. If it's...
February 15, 2011 at 7:24 am
Thanks I'll try it out later.
February 14, 2011 at 8:23 am
Cursors are SLOW! Use a loop instead. Try something like this:
DECLARE @Count INT,
@LoopCount INT,
@MyField1 VARCHAR(50),
@MyField2 VARCHAR(50)
SELECT IDENTITY(INT,1,1) ID, MyField1, MyField2 INTO #Temp FROM MyTable
SELECT @Count = @@RowCount
SET...
February 14, 2011 at 8:09 am
Hi if your getting the following error your subquery contains more than one record:
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <,...
February 14, 2011 at 12:11 am
Viewing 4 posts - 1 through 4 (of 4 total)