Viewing 15 posts - 1,051 through 1,065 (of 2,458 total)
First, sorry for falling off the radar - I personally get annoyed when people post a question then vanish. That said I have been looking at and playing around with...
January 8, 2016 at 9:41 am
jaime.simancas 27970 (1/7/2016)
Alan.B (1/7/2016)
erics44 (1/7/2016)
Lynn Pettis (1/7/2016)
January 7, 2016 at 8:58 pm
Lynn Pettis (1/7/2016)
Sergiy (1/7/2016)
Alan.B (1/7/2016)
...
Huge, Huge improvement!!! Irrefutable evidence of the usefulness of...
January 7, 2016 at 4:53 pm
erics44 (1/7/2016)
Lynn Pettis (1/7/2016)
I don't...
January 7, 2016 at 9:54 am
.... and DelimitedSplit8K_LEAD
DECLARE
@pString varchar(8000) = 'xxx,yyy,zzz',
@delimiter char(1) = ',';
SELECT
ItemNumber = ROW_NUMBER() OVER (ORDER BY (SELECT NULL)),
...
January 6, 2016 at 6:54 pm
Eh, I decided to join in the fun and got beat to it (I realized what I posted earlier had CTEs in it)
Using delimitedsplit8K logic... here's one that's not limited...
January 6, 2016 at 6:43 pm
Sergiy (1/6/2016)
DECLARE @pString VARCHAR(8000), @pDelimiter CHAR(1)
SET @pString = 'aaaa,,ccc,d,'
SET @pDelimiter = ','
SELECT ItemNumber = ROW_NUMBER() OVER(ORDER BY cteLen.N1),
...
January 6, 2016 at 6:08 pm
Sergiy (1/6/2016)
Lynn Pettis (1/6/2016)
January 6, 2016 at 4:46 pm
Luis Cazares (1/6/2016)
I believe that over use of CTEs is as bad as the lack of CTEs. I'd rather...
January 6, 2016 at 3:20 pm
erics44 (1/6/2016)
Alan.B (1/6/2016)
erics44 (1/6/2016)
Alan.B (1/6/2016)
This is just silly. Every MVP and Certified Master whose article and/or book I have read uses CTEs. And I use them and I know how...
January 6, 2016 at 3:01 pm
erics44 (1/6/2016)
Alan.B (1/6/2016)
This is just silly. Every MVP and Certified Master whose article and/or book I have read uses CTEs. And I use them and I know how to design...
January 6, 2016 at 2:40 pm
Jeff Moden (1/6/2016)
Alan.B (1/5/2016)
SQLBill (1/5/2016)
Lynn Pettis (1/4/2016)
SQLBill (1/4/2016)
Lynn Pettis (1/4/2016)
SQLBill (1/4/2016)
January 6, 2016 at 12:33 pm
Sergiy (1/5/2016)
Alan.B (1/5/2016)[hrWhat I was demonstrating was in response to the OP's original question and is why someone would use a CTE instead of doing a direct update... especially when...
January 6, 2016 at 11:41 am
SQLBill (1/5/2016)
Lynn Pettis (1/4/2016)
SQLBill (1/4/2016)
Lynn Pettis (1/4/2016)
SQLBill (1/4/2016)
January 5, 2016 at 11:15 am
Viewing 15 posts - 1,051 through 1,065 (of 2,458 total)