find out the last modified record in sql without identity constraint ?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajeesh MenothPosted Jul 27, 2016, 7:54 AM
Vasanth NatarajanPosted Aug 5, 2016, 10:10 AM
Raja TPosted Jul 27, 2016, 12:16 PM
Kavi NithyasriPosted Jul 27, 2016, 11:24 AM
Midhun TpPosted Jul 27, 2016, 7:40 AM
Raja TPosted Jul 27, 2016, 6:57 AM
SELECT OBJECT_NAME(OBJECT_ID) AS DatabaseName, last_user_update,*FROM sys.dm_db_index_usage_stats
WHERE database_id = DB_ID( 'AdventureWorks') --Here ur db name
AND OBJECT_ID=OBJECT_ID('test') --Here ur table name
JohnPosted Jul 27, 2016, 6:57 AM
Midhun TpPosted Jul 27, 2016, 6:52 AM