Viewing 5 posts - 1 through 5 (of 5 total)
You can use the Performance Dashboard 2005 for SQL Server 2008.
April 16, 2009 at 2:20 am
1. Time out : I thought your table need to Index tunning. If your Database version is 2005, I recommend that use the indexed view.
If you give more detail table...
April 10, 2009 at 2:00 pm
SELECT entityid, COUNT(DISTINCT INVOICE) FROM [YOUR TABLE] GROUP BY entityid
Thank you.
April 9, 2009 at 8:29 pm
SELECT entityid, COUNT(DISTINCT INVOICE) FROM [YOUR TABLE] GROUP BY entityid
April 9, 2009 at 8:23 pm
It's answer is wrong!!
Select EmpName, DateOfLeaving from Employees order by DateOfLeaving desc, EmpName asc
This query returns descending Order of DateOfLeaving.
It is so clear!!
wrong answer.!!
June 24, 2008 at 9:57 am
Viewing 5 posts - 1 through 5 (of 5 total)