Viewing 8 posts - 1 through 8 (of 8 total)
I wish I could do that but because of the third party software architecture, I have to make the call in the From clause. Looks like the only issue is...
July 18, 2006 at 10:11 am
If there is another way to put a stored procedure call in a From clause, I'd love to know. Having this call in a From clause would be useful in...
July 18, 2006 at 9:25 am
The temp table, in this case, would be used inside the stored procedure to consolidate all the record sets, then pass back one record set that would be feed into...
July 18, 2006 at 8:51 am
The overall goal is to use the stored procedure in a SQL statement, for example:
SELECT * FROM OPENQUERY(SERVER, 'EXEC SP_CALL')
The while loop grabs each record of a table. Each record...
July 18, 2006 at 8:21 am
The DBCC CHECKDB is not happening every night, nor at the same time of day but the times that the table lock occurred, yes, the DBCC CHECKDB ran around those...
February 8, 2006 at 8:15 am
Error 50001 falls outside the reserved system errors, it is user defined and nothing else should be calling it. The Microsoft documentation suggests using RAISERROR inside triggers instead of the xp_logevent:
"When...
April 18, 2005 at 2:33 pm
I'm not sure I know what you mean. The count happens when I use the RAISERROR function in the trigger.
Here is some other info in the alert:
Type - SQL Server...
April 18, 2005 at 11:26 am
CREATE TRIGGER TRG_GOAL ON DBO.GOAL
FOR INSERT, UPDATE, DELETE
AS
INSERT INTO IPGOALS.DBO.PROCESS_CONTROL_GOAL(TRIGGER_LOAD) VALUES (GETDATE())
RAISERROR(50001,10,1)
April 18, 2005 at 10:20 am
Viewing 8 posts - 1 through 8 (of 8 total)