Viewing 15 posts - 76 through 90 (of 7,165 total)
m.rajesh.uk (8/31/2016)
Hi All,I have the same issue.
Can any suggest how to resolve this issue.
Agent is not running.
Please post your logs.
August 31, 2016 at 5:30 am
Here is a starting point with some basics included for you:
IF EXISTS ( SELECT *
FROM ...
August 25, 2016 at 9:28 pm
Eric M Russell (8/22/2016)
August 22, 2016 at 6:47 am
+1 SQL Prompt
It would be pricey if it were only providing code formatting but it is much much more than that. It is worth every penny in my opinion.
August 21, 2016 at 7:23 am
+1 for SQL Prompt
Recently rolled out copies to entire dev team including standard formatting styles to promote consistency across entire codebase.
August 21, 2016 at 7:21 am
Try this out...ended up using DENSE_RANK instead of ROW_NUMBER in order to address dupe Styles:
with cte as (
select DENSE_RANK() over (partition by Brand, Model order by Style) as brand_model_style_ordinal,
*...
August 10, 2016 at 12:47 am
Looks like you've got the pivot working to get to the colors into columns. To get to the Style try introducing a ROW_NUMBER into the mix and using that to...
August 9, 2016 at 8:18 pm
smiF (8/9/2016)
August 9, 2016 at 8:11 pm
Any chance you could post your data as a CREATE TABLE followed by a series of INSERT statements so I can setup a sandbox on my side?
Your expected results per...
August 9, 2016 at 8:00 pm
joe 92217 (8/9/2016)
I'm trying to debug a problem that occurred in our application that involved a query that ran causing some unexpected updates.
The event occurred about a week...
August 9, 2016 at 7:56 pm
PJ_SQL (5/19/2016)
SLVER CREEK DR
3RD ST
S OAK GATE LN
ABCSDGFDG LN
Turtle WnhhkjT
E Royal Street
Values that need to be in
ColA : S,E
ColB : SILVER CREEK, 3rd, OAK GATE,ABCSDGFDG...
May 19, 2016 at 8:27 pm
Thank you for the reply.
My requirement changed a bit:
I have one column:
SLVER CREEK DR
3RD ST
S OAK GATE LN
ABCSDGFDG LN
Turtle WnhhkjT
I need the above data split into three columns:
ColA ...
May 19, 2016 at 8:05 pm
re: "and more", PolyBase and R analytics integration are very exciting features to me personally that will expand the data platform and its reach within enterprise environments.
May 14, 2016 at 1:02 pm
bpowers (5/2/2016)
Attached is the new sample data and SSIS project I mimicked using your example. I appreciate all the help on this!
Luckily it was a minor issue. When you select...
May 7, 2016 at 11:54 am
tom.groszko (5/2/2016)
I have been unable to find any facet that looks at code.
The facet Multipart Name only looks at the...
May 2, 2016 at 8:03 pm
Viewing 15 posts - 76 through 90 (of 7,165 total)