Viewing 11 posts - 1 through 11 (of 11 total)
I am most grateful for your response Kenneth.
I think in hindsight it is probably best to leave this system the way it is. However, I would very much like to...
December 5, 2005 at 5:24 am
Perhaps you could comment on these SP's?
Create Procedure WorkType_Upd
@WorkTypeCode varchar(5),
@WorkTypeDesc varchar(50),
@ChangeStamp timestamp
AS
Update WorkType Set WorkTypeDesc = @WorkTypeDesc
Where ChangeStamp = @ChangeStamp and
WorkTypeCode = @WorkTypeCode
GO
Create Procedure WorkType_Del
@WorkTypeCode varchar(5),
@ChangeStamp timestamp
AS
Delete from WorkType
where WorkTypeCode...
December 5, 2005 at 4:46 am
I've discovered that if I create an untyped dataset in code (ie not use a designer) then it works!
I wonder if there is a way, using Add -> New Item......
November 28, 2005 at 3:38 am
OK, I have a number of SP's that return an entire lookup table each (they are only ever going to be a handful of records long) so I guess I...
November 28, 2005 at 2:41 am
OK, thanks for that.
Perhaps my next question requires posting elsewhere but here goes.
Can I retrieve these two resultsets directly into an ADO.NET 2.0 dataset into the proper DataTables each with...
November 27, 2005 at 2:15 am
Thank you for that.
What's the precise effect of using SET NOCOUNT ON?
Regards
July 28, 2005 at 9:14 am
Yes, that makes sense.
Thank you both for your responses
Gary
July 26, 2005 at 10:31 am
If a Computed column is more efficient then that's what I want to do. You'll notice I'm new to SQL Server....
Could you tell me what the syntax for a computed...
July 8, 2005 at 4:01 am
In fact it doesn't even work for single row insertions/updates because it always sets the value of the ClassTreeKey field on ALL records in the table to the value obtained...
July 8, 2005 at 2:58 am
Again this makes sense. The table can end up with ~20,000 rows which will certainly benefit from an indexed computed column.
Thanks
July 5, 2005 at 2:24 pm
I think this is a *much* better way of achieving the same result!
I'm going to implement this and see how the dev likes it!
Many Thanks
July 5, 2005 at 11:50 am
Viewing 11 posts - 1 through 11 (of 11 total)