About 7,090 results
Open links in new tab
  1. How to Find out who has Modified or created object in SQL Server - SQL ...

    It explains finding out who deleted or created object using SQL Server Default trace, creating extended Event and creating Server Level Audit trace to extract the object audit information in …

  2. sql - How to find last modification in database - Stack Overflow

    Oct 18, 2017 · SELECT name [TableName], Create_date [CreateDate], modify_date [LastUpdate] FROM sys.all_objects WHERE type = 'U' ORDER BY modify_date DESC; From above SQL …

  3. sql server - Date object last modified - Stack Overflow

    Jun 8, 2015 · How can I find out the date a MS SQL Server 2000 object was last modified? I need to get a list of all the views, procs, functions etc that were modified since Aug 15th. In …

  4. How can I quickly identify most recently modified stored …

    Jun 3, 2022 · I assume I can write a query against some of the system tables to view database objects of type stored procedure, sorting by some sort of last modified or compiled data, but …

  5. How to see who made a change to a table in SQL Server

    Mar 30, 2021 · Is it possible to see who changed a table (or a stored procedure) in a database when the recovery model is simple? E.g. length of data type... If the recovery model is full will …

  6. Find recent object changes in SQL Server Database

    Nov 8, 2019 · If some new or existing user tables or stored procedure is added or modified in a particular database and server, you can find the list of the object's name with help of below …

  7. Who created/modified/deleted an object on a database?

    Do you ever wanted to know who created/modified/deleted a table, a stored procedure, an index, a view, a trigger or on a database? SQL Server provides a Standard Report for this purpose …

  8. Finding out who has modified a Stored Procedure on SQL Server?

    Looks like somebody has logged in and modified a Stored Procedure on our SQL Server database. Is there a way to find out the credentials of the person that has done that? You can …

  9. SQL Server: Get Object Last Modified Date

    Suppose you want to track when was the last time a particular SQL Server object (table, view, procedure etc) was modified. To do so, you can make use of the system views - sys.objects …

  10. Check Recently Modified Objects In SQL Server Database - C

    We can use sys.objects for this purpose. Run the below query. It will list objects in recently modified order. This will list all columns of all recently modified objects. Here is a SQL query to …

Refresh