Is there any sql script to find out when the database on the SQL server is updated for the last time?
I want to know the last updated time for changes made to the database metadata, not the actual data inside the table. In particular, when:
Look at sys.objects should be enough, try this query
select * from sys.objects order by modify_date desc
This will return the last modified time of the date + name of the updated item + description of the updated (table, stored procedure, etc.)
SELECT TOP 1 name, modify_date, type_desc FROM sys.objects ORDER BY modify_date DESC
Source: https://habr.com/ru/post/984888/More articles:Undefined, Undefined in Chrome notification when it starts from Selenium - pythonGet the URL of all items used with WKWebView - urlBash semantics subshell errexit - bashandroid.content.res.Resources $ NotFoundException in Robolectric 2.4 - androidChrome Augmentation Notification Auto Test - google-chrome-extensionOpen App from URL works in Firefox for Android, but not in Google Chrome - androidOracle SQL: if I use the function both as a field and in order, will it be evaluated again? - performanceHow to use AcroTextExtractor.exe programmatically? - adobe-readerhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/984892/where-should-i-place-setonclicklistener-in-a-recyclerview-adapter&usg=ALkJrhhcp3BvoTyWUb1J5fIPO0yZMPOopgHow to get plain text from summernote editor? - jqueryAll Articles