Viewing 15 posts - 1 through 15 (of 20 total)
I faced a similar issue and your solution worked...thanks!!!!
December 21, 2015 at 7:12 am
September 14, 2011 at 3:30 am
Thanks a lot... it works for us!! 🙂
May 31, 2011 at 10:10 am
Yeah, that should give the desired result.
January 7, 2011 at 9:22 am
You can use Row_number function:
select a.sid, a.gpa, a.date_of_Update from
(select sid, gpa, date_of_Update, ROW_NUMBER() over (partition by sid order by date_of_update desc) as Rno
from table)a
where a.Rno = 1
January 6, 2011 at 2:30 pm
I was facing the similar issue. In my case, I was creating the SQL query on run time using script task, storing it in a variable. The default value that...
December 20, 2010 at 10:35 am
Sanjay Rohra (4/23/2010)
April 23, 2010 at 2:50 pm
If you run all the jobs that are going to insert data into Table A in parallel, there will definitely be blocking and it might also lead to deadlock causing...
April 23, 2010 at 10:06 am
Perry Whittle (7/23/2008)
sorry my bad!!restore database DBNAME with recovery
This worked for me...thanks.
September 16, 2009 at 12:34 am
I believe we can use the procs sp_spaceused and sp_statistics for temporary tables by changing the context to "tempdb" database. But that can be done only in the session in...
September 4, 2009 at 8:41 am
I have not faced any issues with sp_statistics as far as comparing the results with SELECT COUNT(*) as I do keep on comparing both the results (for my curiosity).
September 4, 2009 at 5:41 am
Use sp_statistics and refer to cardinality column for rou count.
September 4, 2009 at 4:08 am
Hi,
I am sql 2000 certified DBA, currently working as a SQL 2K5 DBA. I am planning to upgrade my certification credentials. What should I go for, SQL 2005 or SQL...
August 31, 2009 at 1:12 am
I had a similar requirement. was running out of disk space, hence had to compress the log files. After taking the backup of the log files and truncating them, I...
August 25, 2009 at 5:04 am
kumar99ms (11/3/2008)
currently i am taking backup to my remote servers using ftp but now that backup size to long how can i take my backup could you please some...
November 5, 2008 at 4:44 am
Viewing 15 posts - 1 through 15 (of 20 total)