Viewing 15 posts - 856 through 870 (of 2,458 total)
You could also do this:
REPLACE(value, char(88), '/')
April 6, 2016 at 8:30 pm
tarr94 (4/6/2016)
Jacob, you're right, I missed something when pasting my sample data. I've corrected it in the original post.
Lynn, I may end up doing exactly that....
April 6, 2016 at 10:17 am
Steve Jones - SSC Editor (4/5/2016)
April 6, 2016 at 9:42 am
Greg Edwards-268690 (4/6/2016)
Brandie Tarvin (4/6/2016)
What are we having for breakfast today?
Mine was oatmeal with purple honey (from North Carolina) and assorted fruit. But for some reason I have...
April 6, 2016 at 7:24 am
Luis Cazares (4/6/2016)
Ed Wagner (4/6/2016)
Iwas Bornready (4/6/2016)
This is great. I didn't know this simple trick.This is a QOTD that's 3 1/2 years old.
And this functionality is no longer guaranteed to...
April 6, 2016 at 7:17 am
DesNorton (4/5/2016)
Alan.B (4/5/2016)
Quick question what are the Partnumber column always going to be 6 characters long or less?
Also (and I...
April 5, 2016 at 8:49 pm
Phil Parkin (4/5/2016)
Gail and I are gamely persevering with this one. I think my pressure limit has been reached now, though.
April 5, 2016 at 5:10 pm
Interesting dilemma and great work with the sample data/ddl!
Quick question what are the Partnumber column always going to be 6 characters long or less?
Also (and I expect the...
April 5, 2016 at 8:51 am
swansonm (4/5/2016)
April 5, 2016 at 8:40 am
Indexing is a complex topic indeed. I huge part of the game is understanding how your server is using them. I always develop SQL with "Include actual Execution Plan" turned...
April 5, 2016 at 8:06 am
It will increase performance if the index is used by the optimizer for SELECT statements. Say the column name is C1 and you execute: SELECT C1 FROM youratable......
April 5, 2016 at 6:14 am
Using GetNumsAB[/url], this may be better:
WITH base AS
(
SELECT rn, d = DATEADD(DAY,n2,mn), mn = DATEADD(DAY,rn,mn), mx = DATEADD(DAY,n1,mn)
FROM
(
SELECT...
April 4, 2016 at 8:38 pm
If you had 2012 this would be much easier. I have to think about this a little; the most straight-forward solution is a "triangular join" that looks like this:
WITH...
April 4, 2016 at 8:04 pm
WhiteLotus (4/4/2016)
I am about to migrate some databases consist of user databases and also Report server and Report server TempDB from 1 server to another server
Question :
The destination server...
April 4, 2016 at 7:27 pm
Viewing 15 posts - 856 through 870 (of 2,458 total)