Viewing 8 posts - 1 through 8 (of 8 total)
quote:
Declaring it as inputoutput should work. Have you verified that your proc is working by adding a print after the set? Also,...
July 16, 2002 at 10:40 pm
quote:
Why not just set you PK field to non-autogenerated and since PK's are unique the value comming in from Oracles PK should...
April 24, 2002 at 12:48 am
What they mean by Dynamic SQL is that ,
Decide what Ideally your SQL should look like.
I think there is still some haziness over there.
Then decide what is dymanic in that...
November 22, 2001 at 3:13 am
Hi,
I am quite late in the discussion.
But the problem with your query is that it needs a select rather than a Set.
___________________________________
CREATE TRIGGER photo_numbers
ON mls_photo
FOR INSERT , UPDATE
as
declare @PhotoState...
November 13, 2001 at 11:53 am
Hi,
I was avoiding Dynamic SQL for Performance benefit of the compiled Query Plan.
One more reason for this is that I expect this function to be called the most in my...
November 12, 2001 at 7:15 am
Hello ,
I ultimately implemented what Steve suggested.
I realised that
1) My Trigger option has a Rollback Overhead
2) The SP otion has a performance overhead.
The reason I was not happy...
November 2, 2001 at 9:25 pm
Hello,
I did not answer Andy Warren's Question.
Why do I need to have informative Server Side Error Messages if I am already doing client side validation?
The "Enable Javascript" is a...
October 29, 2001 at 8:04 pm
Hello,
The SQL Server version is 7.0
I am using ASP.
Yes, I would like the Error Message to be Informative to the max possible extent.
Hence this effort to push the...
October 29, 2001 at 7:54 pm
Viewing 8 posts - 1 through 8 (of 8 total)