Viewing 7 posts - 1 through 7 (of 7 total)
I think I understand your reasoning. By using an SP I can also allow for parameters to be passed giving the user more flexibilty. In addition, the SP...
March 12, 2003 at 9:53 pm
In this particular instance use of the View is for reporting only. For integrity purposes, many of my tables columns store identity keys to actual data records in...
March 12, 2003 at 3:05 pm
I'll check that. What I am trying to figure out is how is the ERR.Description being built. Consider the following:
UPDATE statement conflicted with COLUMN CHECK constraint 'CK_Region'. The...
October 29, 2002 at 7:26 am
Are you kidding? That would make sense 😉
Expediancy is the primary reason I haven't gone this route as yet. My current routines are already debugged and working so...
February 5, 2002 at 2:12 pm
Hi,
Here is the SP. Again, all I want the SP to do is set the identity property off to allow a subsequent ADO .AddNew method to insert a record...
February 5, 2002 at 12:03 pm
Hi,
Thanks, that got me moving forward. I'm now using it in my VB code. In this instance, I'm using the VB data Environment and the Command Object point...
February 4, 2002 at 4:47 pm
Hi,
I'm missing something... Here is my SP.
CREATE PROCEDURE [Set_Fran_Id]
AS
SELECT *
FROM [Catv2].[dbo].[NewFranchise]
GO
SET IDENTITY_INSERT [Catv2].[dbo].[NewFranchise]
GO
The syntax checks but after I save it the Set statement is dropped from the...
February 4, 2002 at 3:43 pm
Viewing 7 posts - 1 through 7 (of 7 total)