how i can get the change event in the table .

  • Thread starter Thread starter muhamad kassem
  • Start date Start date
M

muhamad kassem

hi all

i have a program that display the content of the table from sql server
this table change .
how i can get the change event in this table .
 
If you are doing updates right from a .NET client, you can watch
RowUpdating() event to find out any changes that are being made to the
table. If you talking about changes to that table from anywhere (someone in
SQL Server Enterprise manager and editing rows).. that might need you to
delve into the SQL-DMO objects and write code in "classic COM" ..
May be Yukon release of SQL server might have better stuff for you but for
now..
I think..
 
Back
Top