Viewing 5 posts - 1 through 5 (of 5 total)
I had to put this task down for awhile, but now I'm back at it. I'm trying to execute the script in Query Analyzer while being connected to the destination...
April 30, 2007 at 2:01 pm
Karen,
Thanks for the kind response. I think I must not have phrased my original question properly. The database I'm developing is definitely an RDBMS system. What...
February 16, 2005 at 6:17 pm
I never asked for an assessment of my skill level. I'll readily admit that I am by no means a certified DBA, but I am certainly past having to read...
February 16, 2005 at 2:58 pm
Well, I figured that it was something simple that I missed and it was. It was a clustered index issue and I simply made the primary key columns non clustered since the tables...
February 15, 2005 at 10:36 am
Certainly. Here it is.
CREATE PROCEDURE dbo.spStatusReviewInsert
(--Pramater List 35 or so fields)
AS
DECLARE @errorcode int
BEGIN TRAN
INSERT INTO StatusReview(--Fields)
VALUES(--Values)
--Execution stops here after completion of trigger. @@ERROR may be zero anyway, but...
October 14, 2004 at 7:20 am
Viewing 5 posts - 1 through 5 (of 5 total)