Viewing 3 posts - 1 through 3 (of 3 total)
Hi,
With SQL 2012 (11.3.3128), you only need to declare "WITH" if you are using FORCESEEK.
Artur
April 30, 2013 at 4:23 am
#1611161
Hi Jeff,
Thanks for your reply.
You're right... this can be used as an example of RBAR.
But if we consider that this specific operation is limited to 8000 characters, its a very...
March 5, 2011 at 10:20 am
#1295007
Hi guys,
why dont we keep it simple?
CREATE TABLE #test (id INT NULL, NAME NVARCHAR(20) NULL)
INSERT INTO #test ( id, name )
VALUES ( 101, 'Apple' ),
...
March 4, 2011 at 3:17 pm
#1294906