Viewing 15 posts - 16 through 30 (of 36 total)
Sure I understand that indexes are against tables. And I understand the difference between clustered and non-clustered indexes. My question is will non-clustered indexes perform better if there is a...
July 2, 2013 at 8:59 am
Thank you
April 23, 2013 at 7:17 am
AndrewSQLDBA (4/18/2013)
What tool? Redgate had a large collection of different pieces of software. Have to be more specific.Andrew SQLDBA
Sorry, SQL Compare.
A tool we can use to make sure our Development,...
April 19, 2013 at 1:20 pm
mickyT (2/13/2013)
SELECT completed, auditdate, a.agentNumber
FROM tblAudit_AuditSchedule a
INNER JOIN (
SELECT agentNumber, MAX(auditdate)...
February 13, 2013 at 1:32 pm
Animal Magic (2/13/2013)
select Max(auditDate) from tblAudit_AuditSchedule where agentNumber = '54321'
if you need...
February 13, 2013 at 1:00 pm
And thanks for the help by the way. Much appreciated.
February 13, 2013 at 12:57 pm
Let me explain it a little bit better. Every agentNumber will have dozens of audits, so for example:
agentNumber auditdate completed
54321 ...
February 13, 2013 at 12:56 pm
SQL told me I couldn't have auditdate in the HAVING CLAUSE without it being in the GROUP BY CLAUSE which is the only reason I added it. And the MAX(auditdate)...
February 13, 2013 at 12:24 pm
Ok looking at the Event Viewer I see it is trying to use the anonymous IIS account from the web server to access the folder and doesn't have rights. Any...
February 11, 2013 at 10:04 am
anthony.green (2/7/2013)
Can you detail the step by step process you performed?Did you backup and restore the encryption keys?
We had an existing ReportServices set up on one server that we needed...
February 7, 2013 at 7:29 am
Thanks for all the help guys, that sorted me right out.
January 29, 2013 at 1:41 pm
Evil Kraig F (1/29/2013)
Subquery it. IE:SELECT * FROM
( SELECT max(abc) AS maxABC FROM #table)
ORDER BY
maxABC
Thanks for the advice, but I'm confused on where I am supposed...
January 29, 2013 at 1:08 pm
SQLKnowItAll (12/26/2012)
December 26, 2012 at 2:29 pm
Scott D. Jacobson (12/26/2012)
You want to add a Maintenance Plan Cleanup task instead of adjusting the media-set retention period.
Thanks
December 26, 2012 at 2:11 pm
GilaMonster (12/26/2012)
Sean Grebey (12/26/2012)
Would putting an Index on Table2.FieldB by itself help at all since it is in the WHERE clause by itself?
Maybe, depends what's in the select clause,...
December 26, 2012 at 2:10 pm
Viewing 15 posts - 16 through 30 (of 36 total)