1
Answer

Active Directory Change Tracking

Akhtar Shiekh

Akhtar Shiekh

15y
5.3k
1
Hi Guys,

I am going to develop an application which will monitor changes in Active Directory. I will either use Change Notification control or DirSync control. I want to track the What, Who, When , Where of each changes. I can get What ( is changed) by using any of the technique( change notification or DirSync), but none of these technique tells us that who made the changes, where changes were made and When. Can you please let me know any way to find out these information about each change?

I know one solution could be to turn on domain controller auditing and read these infromation from event logs, but i don't want to use this approach.

Thank You
-Akhtar
Answers (1)
0
tejal bhesaniya

tejal bhesaniya

NA 53 13.2k 12y
SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[YourTable]') if it exist then it will display the result,,,with table name ,,,tpe and everything
0
Naresh Avari

Naresh Avari

NA 811 1.6m 12y
Select your database and open new query window and

EXEC sp_tables @table_type = "'table'"


0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 12y
hi,

there are two tables sys.tables and sys.objects, in which data base maintain table information
please try.

select * from sys.tables where name = 'Table1'

select * from sys.objects where type = 'U' and type_desc = 'USER_TABLE'


hope this will help you.