Viewing 15 posts - 1 through 15 (of 23 total)
Alan.B (3/20/2016)
quagmired (3/20/2016)
March 21, 2016 at 10:55 pm
Alan.B (3/20/2016)
quagmired (3/20/2016)
March 21, 2016 at 10:19 pm
Alan.B (3/20/2016)
quagmired (3/20/2016)
March 21, 2016 at 9:48 pm
Alan.B (3/20/2016)
quagmired (3/20/2016)
March 21, 2016 at 1:44 am
Alan.B (3/20/2016)
quagmired (3/20/2016)
March 21, 2016 at 1:08 am
Alan.B (3/20/2016)
USE tempdb -- safe place to test
GO
-- There's a...
March 20, 2016 at 8:51 pm
Jeff Moden (3/19/2016)
quagmired (3/19/2016)
Jeff Moden (3/19/2016)
I'm a big fan of using the right tool to the job (even when others don't think it's the right tool). With that in...
March 20, 2016 at 2:24 pm
Jeff Moden (3/19/2016)
I'm a big fan of using the right tool to the job (even when others don't think it's the right tool). With that in mind, what I'd...
March 19, 2016 at 2:45 pm
Jeff Moden (3/18/2016)
quagmired (3/18/2016)
Jeff Moden (3/18/2016)
quagmired (3/17/2016)
Parting thought: how would you match a 1 followed by an arbitrary number of 0s followed by a 1 with T-SQL?
Starting thought.... Have you...
March 19, 2016 at 12:05 am
Jeff Moden (3/18/2016)
quagmired (3/17/2016)
Parting thought: how would you match a 1 followed by an arbitrary number of 0s followed by a 1 with T-SQL?
Starting thought.... Have you ever actually had...
March 18, 2016 at 7:40 pm
Jeff Moden (3/17/2016)
quagmired (3/17/2016)
My personal favorite is, given the same accuracy, which ever is the fastest and least resource intensive. That's usually not REGEX as called from SQL SERVER...
March 17, 2016 at 3:31 pm
My personal favorite is, given the same accuracy, which ever is the fastest and least resource intensive. That's usually not REGEX as called from SQL SERVER even when using...
March 17, 2016 at 10:31 am
This article is just another example of why lack of native "modern" regex support is holding back MS SQL.
replicate('_',fixedLength) ?
.{fixedLength}
.{min,max} ?
... like replicate('_',...) or ... like replicate ('_',...) or ......
October 1, 2015 at 8:11 pm
Steve Jones - SSC Editor (7/6/2015)...
I'd agree with this. If you find SSIS difficult, use something else. However I also think MS should be improving things that are broken, like...
July 6, 2015 at 9:10 pm
Eric M Russell (7/6/2015)
Where I work, we use TAB delimited files, so that's why I'm not familiar with the annoywances regarding the CSV file format and embedded commas.
What about embedded...
July 6, 2015 at 9:00 pm
Viewing 15 posts - 1 through 15 (of 23 total)