views:

30

answers:

1

I have SQL 2005 server. I am interested in a particular statistics. I can check its last update time manually by right clicking it.

How can I check it using TSQL?

+2  A: 

Have a look at the STATS_DATE function:

Returns the date of the most recent update for statistics on a table or indexed view.

adrianbanks
Thank you very much
Manjot