Viewing 15 posts - 1,381 through 1,395 (of 15,381 total)
Luis Cazares (7/21/2016)
SELECT DISTINCT STUFF(
(SELECT (ISNULL(', ' + t2.Name,''))
FROM #Temp t2
where t1.ID = t2.ID -- t1.DeliverableITEP = t2.DeliverableITEP AND t1.GeoMarket = t2.GeoMarket AND t1.Segment...
July 21, 2016 at 8:49 am
PSB (7/21/2016)
I need to remove the extra comma before the NameComma field if for the same ID we have a NULL or '' (blank value) as well as ResourceName .
CREATE...
July 21, 2016 at 8:47 am
Good question. It is the only logical order to process that statement for me. I guess my brain just works like that or something. I spent quite a bit of...
July 21, 2016 at 8:18 am
Eric M Russell (7/20/2016)
July 20, 2016 at 3:35 pm
Y.B. (7/20/2016)
Granted, I'm having a really bad day and could have responded better...on the other hand at least...
July 20, 2016 at 2:20 pm
Luis Cazares (7/20/2016)
The best solution you can have is to normalize your data.
+10000
It is also the only long term maintainable solution.
OP - when you cram multiple values like that...
July 20, 2016 at 1:39 pm
cbrammer1219 (7/20/2016)
CREATE TABLE #vb
(
[BoxOnPallet] [int] NULL CONSTRAINT [DF_Boxes_BoxOnPallet] DEFAULT (0),
[BuffID] [varchar](50) NOT NULL,
[DateTime] [datetime]...
July 20, 2016 at 1:30 pm
volodymyrlev228 (7/20/2016)
What about reverse the string, and then, reverse the string again? It finally helped me to
--URL REMOVED.
This sure looks a LOT like spam. Care to explain why...
July 20, 2016 at 10:28 am
ThomasRushton (7/20/2016)
Steve Jones - SSC Editor (7/19/2016)
jasona.work (7/19/2016)
Instead, who's going to see Star Trek this weekend!Star Trek is likely a couple weeks away for me.
I don't think that the reviewers...
July 20, 2016 at 9:42 am
There really is no way you can prevent somebody from viewing the code if they have access to the server. The ONLY way you can 100% prevent this is by...
July 20, 2016 at 7:39 am
Ray K (7/19/2016)
jasona.work (7/19/2016)
You know, this was probably not a good comment, so I'm dumping it...Instead, who's going to see Star Trek this weekend!
My wife is dying to see The...
July 19, 2016 at 12:54 pm
Firemander (7/15/2016)
Agree; but can't change it. vendor code.
Ahh. Did you grant EXECUTE on the scalar function to the user, or better yet the role they belong to? I have seen...
July 15, 2016 at 12:46 pm
Firemander (7/15/2016)
July 15, 2016 at 12:38 pm
SQLRNNR (7/14/2016)
Luis Cazares (7/14/2016)
Sean Lange (7/14/2016)
July 14, 2016 at 12:32 pm
Phil Parkin (7/14/2016)
Ray K (7/14/2016)
Brandie Tarvin (7/14/2016)
I'm in the last few days before Go Live on a major infrastructure upgrade. I'm lucky I can spell SEQUAL. @=)
I once had a...
July 14, 2016 at 10:50 am
Viewing 15 posts - 1,381 through 1,395 (of 15,381 total)