Viewing 15 posts - 931 through 945 (of 2,647 total)
Try this:
USE ReportServer
GO
SELECT u.UserName, s.*
FROM subscriptions s
INNER JOIN Users u
ON s.OwnerID = u.UserId
AND u.UserName = 'Jared'
May 15, 2012 at 2:18 pm
Sean Lange (5/15/2012)
SQLKnowItAll (5/15/2012)
Why do you violate ISO-11179 rules?
Hehehe... Because nobody learns them or cares to. I'll tell you a question I have never been asked at an interview... "Are...
May 15, 2012 at 2:03 pm
Why do you violate ISO-11179 rules?
Hehehe... Because nobody learns them or cares to. I'll tell you a question I have never been asked at an interview... "Are you familiar with...
May 15, 2012 at 1:59 pm
So...
SELECT AgencyID, AgencyName,AgencyType, COUNT(AgencyID)
FROM Agencies
WHERE (Grade = 'D' AND PeriodFinishDate > GETDATE() - (365 * 3))
OR
(YEAR(ReportReceivedDate) > YEAR(ReportDueDate) - 3)
OR
(Other= -1 AND OtherReason='High Profile' AND ReportDueDate > GETDATE() - (365...
May 15, 2012 at 1:48 pm
I'm super confused. Please reference the article in my signature by Jeff Moden, otherwise you are going to get 20 responses that all do something different and none of them...
May 15, 2012 at 1:28 pm
jralston88 (5/11/2012)
Taking this one step further -...
May 15, 2012 at 1:22 pm
I don't think anybody's mad. We want to help and, probably more importantly, learn. We just couldn't do much with the error except for take it at its word. Let...
May 15, 2012 at 1:17 pm
Welsh Corgi (5/15/2012)
The MERGE statement attempted to UPDATE or DELETE the same row more than once. This happens when a target row matches ore than one...
May 15, 2012 at 12:47 pm
sqlvogel (5/15/2012)
SQLKnowItAll (5/15/2012)
May 15, 2012 at 10:59 am
Lynn's answer is indeed the only prudent one: it depends. Microsoft has a lot to answer for in making the primary key default to a clustered index.
Well, of course it...
May 15, 2012 at 9:32 am
Its kind of like asking what's the difference between a salad and a fruit. A salad can be made of fruit or vegetables, and a fruit can be in...
May 15, 2012 at 8:38 am
Lynn Pettis (5/15/2012)
Eugene Elutin (5/15/2012)
...
Now, for whatever reason, Microsoft by default makes it the clustered index. This is 99% of the time wrong.
The clustered index should be on a...
May 15, 2012 at 8:25 am
Eugene Elutin (5/15/2012)
...
Now, for whatever reason, Microsoft by default makes it the clustered index. This is 99% of the time wrong.
The clustered index should be on a better choice,...
May 15, 2012 at 8:13 am
dan-572483 (5/14/2012)
For confirmed errors & corrections see KB968609
Yes, and as I said there is no mention of these 2 pages. So, if it IS correct I would like someone with...
May 14, 2012 at 8:20 pm
Viewing 15 posts - 931 through 945 (of 2,647 total)