Viewing 15 posts - 361 through 375 (of 1,033 total)
blandry (5/3/2012)
I read the link below your signature with Jeff's recommendations - thats not going to work. First, we are not talking about 1 table - I would have...
May 3, 2012 at 7:42 am
Hugo Kornelis (5/3/2012)
May 3, 2012 at 7:16 am
cderosier 16389 (3/22/2012)
May 2, 2012 at 2:16 pm
Near as I can tell PADL seems to be right justifying an nvarchar column.
Essentially it adds a number of characters to the left side of the field and then stick...
May 2, 2012 at 12:41 pm
sknox (5/1/2012)
The problem comes in when you specify some values but leave others at default, as in this scenario, or when you haven't used a feature for a while, and...
May 1, 2012 at 12:50 pm
The Dixie Flatline (3/15/2012)
May 1, 2012 at 10:46 am
That's pretty cool.... if you write an article about it... try to cover linked servers to this stuff to... Not 100% sure you can do that.... since each file is...
May 1, 2012 at 10:42 am
Toreador (5/1/2012)
May 1, 2012 at 9:22 am
marlon.seton (5/1/2012)
May 1, 2012 at 9:19 am
Jeff Moden (4/28/2012)
April 30, 2012 at 3:00 pm
The same question applies. If the quantity determines the number of INSERTs you could cross join to a tally table and insert the values from the first table a...
April 27, 2012 at 9:47 am
Is this what you're looking for?
Most of this I stole from Jeff's 0 based splitter...
DECLARE @pstring VARCHAR(8000) = '23,24,25,26'
DECLARE @pdelimiter VARCHAR(1)=','
;WITH E1(N) AS (
...
April 27, 2012 at 9:10 am
Thanks for the question, I learned something.... was confused because I hit the same google link that others above did and figured Triple DES was the trick.
April 27, 2012 at 7:47 am
Jeff Moden (4/26/2012)
April 27, 2012 at 7:40 am
Ultimately to sort data, the best solution is still to return it unsorted to the client, and let the client sort it rather than force the database to sort it...
April 26, 2012 at 2:52 pm
Viewing 15 posts - 361 through 375 (of 1,033 total)