Viewing 15 posts - 2,626 through 2,640 (of 10,143 total)
TomThomson (2/16/2015)
...
Stop digging, Tom! For goodness' sake, you're coming across as a cranky old fella with a short fuse. This is not what we are used to seeing from you.
February 16, 2015 at 7:18 am
Matt Miller (#4) (2/12/2015)
Jeff Moden (2/12/2015)
February 13, 2015 at 2:13 am
Jeff Moden (2/12/2015)
February 13, 2015 at 2:07 am
sgmunson (2/12/2015)
ChrisM@home (2/12/2015)
February 13, 2015 at 2:03 am
bpw (2/12/2015)
But there aren't two referenced columns, the modified query is only referencing the primary-key column - hence my question.
Point taken, sorry.
Ok try this: what two columns does the ordinary...
February 12, 2015 at 7:31 am
bpw (2/12/2015)
I understand clustered and non-clustered indexes.The Name column is not being referenced in the query, so why would SQL Server reference the non-clustered index on the Name column?
Imagine the...
February 12, 2015 at 7:14 am
In this particular case, which of the following statements is the more accurate:
"Write it properly"
"Tune it"
Sometimes it's a fine line, but in this case I think it's clear.
It seems...
February 12, 2015 at 6:47 am
Zohaib Anwar (2/12/2015)
ChrisM@Work (2/12/2015)
February 12, 2015 at 6:40 am
maria.pithia (2/12/2015)
i want to do this...
February 12, 2015 at 5:59 am
The stored procedure is written in a procedural Row-By-Agonizing_Row way indicating an inexperienced programmer. The upside is that you have plenty of scope for improvement by a professional. So why...
February 12, 2015 at 5:47 am
Zohaib Anwar (2/12/2015)
February 12, 2015 at 5:29 am
erwin.oosterhoorn (2/12/2015)
February 12, 2015 at 4:12 am
-- t11 partial rewrite. Can't go any further than this without ddl/dml for ClientMember / ClientRole / MemberOther
CROSS APPLY ( -- t11
SELECT TOP (1) [t10].[test]
FROM (SELECT NULL AS [EMPTY]) AS...
February 12, 2015 at 3:00 am
Dave Ballantyne (2/12/2015)...I have to agree with the others here, there is nothing wrong with this statement per se...
I have to disagree with you Dave:
-------------------------------------------------------
-- t4 rewrite
-------------------------------------------------------
-- [t3].[EndEffectiveDate] =...
February 12, 2015 at 2:28 am
Here's that same query with a little extra formatting:
SELECT
[t4].[Destination],
[t4].[Message],
[t4].[OutboxAN],
[t4].[OutboxStatusAN],
[t4].[OutboxTypeAN],
[t4].[Subject],
[t4].[Fax],
[t4].[FileName],
[t4].[OutBoxData] AS [OutBoxData1],
[t4].[OutBoxDataAN],
[t4].[Type],
[t4].[ClientReferenceID],
[t4].[value] AS [CompanyClientMemberID],
[t4].[value2] AS [ContactClientMemberID],
[t4].[value3] AS [ReportType],
[t4].[value4] AS [CompanyClientRoleID]
FROM ( -- t4
SELECT
[t0].[Destination],
[t0].[Message],
[t0].[OutboxAN],
[t0].[OutboxStatusAN],
[t0].[OutboxTypeAN],
[t0].[Subject],
[t1].[Fax],
[t1].[FileName],
[t1].[OutBoxData],
[t1].[OutBoxDataAN],
[t1].[Type],
[t0].[ClientReferenceID],
[value] = ISNULL([t0].[CompanyClientMemberID],@p1),
[value2] = ISNULL([t0].[ContactClientMemberID],@p2),
[value3] = ISNULL([t0].[ReportType],@p3),
[value4]...
February 12, 2015 at 2:00 am
Viewing 15 posts - 2,626 through 2,640 (of 10,143 total)