Viewing 8 posts - 1 through 8 (of 8 total)
Thanks so much guys..
This is really good advice and so far it has helped me!
May 8, 2003 at 11:18 am
The table still contains thousands of records, but I just wanted to know if part of those records could have been deleted. From what you've said, its an all...
April 16, 2003 at 10:37 am
Hmmm. I didnt know you could do that type of thing with Query Analyzer. What version of Query Analyzer do you have, becasue I would like to get...
March 26, 2003 at 12:54 pm
I thought I would just add some input from a funny problem I ran into. I accidently updated several columns as:
UPDATE tblItem
SET ItemStatus = 'NULL'
instead of
UPDATE tblItem
SET ItemStatus...
March 26, 2003 at 7:06 am
The stored proc is about 400 lines and it is not too complex. There are several SELECTS and some logic done in there. The sp never changes the...
March 25, 2003 at 7:16 am
The Update trigger should get fired off 1000 times if I update 1000 rows at the same time.
In each instance of the trigger, it executes the stored proc for a...
March 24, 2003 at 3:37 pm
Hi Chris,
We do the updates all at once. For example UPDATE tblItem
SET ItemStatus = 'Complete'
WHERE ItemID IN (
'4322342',
'3453433',
.
.
.
)
The trigger checks to see if the items meet a few criteria...
March 22, 2003 at 12:56 pm
Viewing 8 posts - 1 through 8 (of 8 total)