Additional SQL Server features and topics not covered by specific categories
Hi @Chaitanya Kiran ,
if you can try to use triggers in SQL Server, DDL triggers are triggered when modification in structure appears
https://learn.microsoft.com/en-us/sql/relational-databases/triggers/ddl-triggers?redirectedfrom=MSDN&view=sql-server-ver15
or dig into transaction log, the transaction log contains the history of every action that modified anything in the database. Of course, it is usually seen as the last resort.
https://rusanu.com/2014/03/10/how-to-read-and-interpret-the-sql-server-log/