Can anyone tell me how to find the data refresh and load times of various tables in sql server 2008?
Regards, C
Can anyone tell me how to find the data refresh and load times of various tables in sql server 2008?
Regards, C
You can add additional Column (for ex. "RefreshDate") in you tables and set it's Default Value or Binding to getdate(). So every time you update or insert any data, it will show the exact data refresh or load time.