Viewing 15 posts - 1,216 through 1,230 (of 14,953 total)
seregak76 (7/19/2012)
GSquared (7/16/2012)
July 19, 2012 at 6:53 am
Jeff Moden (7/17/2012)
GSquared (7/17/2012)
He was talking about the last solution I posted. That's a while-loop version.
First, apologies for not responding sooner. I've actually be working on a demonstration...
July 19, 2012 at 6:51 am
As already mentioned, you can't do Select Into cross-server. In order to do cross-server DDL (including table-creation), you need to make sure the credentials used have the right permissions,...
July 19, 2012 at 6:38 am
In that case, I'd say build what makes the most sense to you, document it clearly, and communicate it thoroughly, and then don't worry about it till some line-of-business person...
July 17, 2012 at 7:52 am
Andy Hyslop (7/16/2012)
Jeff Moden P.S. A While Loop will actually beat the rCTE for performance here. It's not substantial enough to necessarily warrent its use but I thought I'd...
July 17, 2012 at 7:49 am
PAF is the UK counterpart to US PAVE. Sounds like it's a looser standard, if I'm reading it correctly, which means you will get more offbeat variations within it.
I...
July 17, 2012 at 7:46 am
Lynn Pettis (7/16/2012)
GSquared (7/16/2012)
The Select Into syntax will create the target table. If it already exists, you'll get...
July 17, 2012 at 7:34 am
Select ... Into ... is VERY different from Insert ... Select ...
The Select Into syntax will create the target table. If it already exists, you'll get an error message....
July 16, 2012 at 1:50 pm
There isn't a direct equivalent.
If you want the number of months from one date to another, DateDiff will give the number of month-transitions in that span, but not precisely the...
July 16, 2012 at 1:14 pm
jfriedl (7/16/2012)
July 16, 2012 at 12:01 pm
Got it on the forward and backward bit. Seems like it would be easier to start at position 0 and query 2-character chunks for specific patterns.
As far as address...
July 16, 2012 at 11:59 am
If you're running into the recursion limit like that, you probably have an infinite loop going, as Jeff mentioned.
To get around that, without structural changes to the table (since you...
July 16, 2012 at 11:40 am
CELKO (7/16/2012)
Look at the [ROW | RANGE] option in the OVER() clause we now have in SQL Server 2012.
If this were the SQL 2012 forum, that would make sense.
July 16, 2012 at 11:33 am
First, why join up and down? Surely, if a character follows the same character, the one it follows also precedes it, and you don't need to detect both things.
Second,...
July 16, 2012 at 9:44 am
Start with an online search for "sql server wait states". You'll find a ton of information on the subject and can research it from there. It gets a...
July 16, 2012 at 9:39 am
Viewing 15 posts - 1,216 through 1,230 (of 14,953 total)