Viewing 15 posts - 5,296 through 5,310 (of 8,731 total)
The primary key is usually the same as the clustered index but that's not a rule. They're both independent as the process to define them is different. The primary key...
January 27, 2015 at 1:39 pm
MMartin1 (1/27/2015)
Luis Cazares (1/27/2015)
SELECT columns_to_return
FROM dbo.XYZ
WHERE date_column > REPLACE(...
January 27, 2015 at 1:21 pm
If it's a string column with underscores between each part of the date. This could be an option.
SELECT columns_to_return
FROM dbo.XYZ
WHERE date_column > REPLACE( CONVERT( char(10), DATEADD(YY,...
January 27, 2015 at 12:59 pm
No, you're confusing primary keys with the PRIMARY filegroup.
Primary Keys need to be unique. PK_AIMS_Preop index is the index that supports your PRIMARY KEY constraint that should be shown in...
January 27, 2015 at 12:49 pm
What I mean is that your ReportColumns column violates the first normal form that indicates:
A relation is in first normal form if the domain of each attribute contains only...
January 27, 2015 at 12:40 pm
What stops you from normalizing the ReportDefinition table?
January 27, 2015 at 11:32 am
I'm not sure that it doesn't matter as I discovered when testing a function in this thread:
http://www.sqlservercentral.com/Forums/FindPost1531822.aspx
The best option that you have is to test both approaches. I'd do it...
January 27, 2015 at 11:27 am
Carlo Romagnano (1/27/2015)
Raghavendra Mudugal (1/27/2015)
Carlo Romagnano (1/27/2015)
Strange, but the version with PIVOT is a bit slower than that with GROUP BY. See execution plan!...
actually I was doing the same...
January 27, 2015 at 8:40 am
Why do you believe that you need to use DISTINCT? You already have a GROUP BY.
Are you seeing the same date 3 times? If so, that's normal because you're "concatenating"...
January 26, 2015 at 12:56 pm
I've never used Mulesoft. After I read your post, I googled it and it seems interesting. However, I can't give a suggestion based on experience.
January 23, 2015 at 12:14 pm
Steve Jones - SSC Editor (1/23/2015)
Jack Corbett (1/23/2015)
Steve Jones - SSC Editor (1/21/2015)
What's the superhero costume of choice here? SQL Bits is a month+ away, with the theme...
January 23, 2015 at 11:34 am
I'll say that this would be slower because you're still using a single transaction and you're using several queries. This is a guess and I might be wrong.
January 23, 2015 at 10:18 am
I believe that you don't need PIVOT, you need UNPIVOT. And you might want to use UNION ALL instead of UNION.
There's a third alternative which is explained in here by...
January 23, 2015 at 9:15 am
Could you post your sample data as insert statements? I tried to help you but I'm missing columns that you used in your query for which you didn't supply any...
January 22, 2015 at 4:07 pm
mw112009 (1/22/2015)
That's not what I really want. ...
January 22, 2015 at 1:20 pm
Viewing 15 posts - 5,296 through 5,310 (of 8,731 total)