To know database changes ---
SELECT *
FROM
sys.dm_db_index_usage_stats AS usage_stats
INNER JOIN
sys.tables AS tables ON tables.object_id = usage_stats.object_id
WHERE
database_id = DB_ID() AND
tables.name in (select name from sys.tables)
Get link
Facebook
X
Pinterest
Email
Other Apps
Comments
Popular posts from this blog
Export gridview into excel pdf csv http://www.aspsnippets.com/ Articles/Print-functionality- in-ASP.Net- GridView -control. aspx http://www.aspsnippets.com/ Articles/Export- GridView -To- Word-Excel-PDF-CSV-Formats-in- ASP.Net.aspx
Comments
Post a Comment