Viewing 3 posts - 1 through 4 (of 4 total)
Brilliant! This works, exactly the result I wanted.
Are there any cons to returning the data this way? I can't see any, really. I'll be returning 3000 nodes which have...
August 25, 2011 at 3:21 pm
Okay, here's the CREATE
CREATE TABLE [dbo].[tbltest](
[id] [int] NULL,
[name] [varchar](50) NULL,
[value] [varchar](50) NULL
) ON [PRIMARY]
GO
Here's some data
DECLARE @count INT
SET @count = 0
WHILE (@count < 100)
BEGIN
INSERT INTO tbltest (id,...
August 25, 2011 at 2:32 pm
Hey guys. Thanks for replying. Fair point about the details. I'm away from the computer at the moment but I shall upload an example as soon as. Please bear with...
August 25, 2011 at 12:42 pm
Viewing 3 posts - 1 through 4 (of 4 total)