DDL Trigger

  • I have a set of triggers to keep track of database changes. I capture create, alter and delete. It has been tested with manual creation, file size modification and delete of a test database. Under those circumstances, it works. But the reason why I have this trigger is to catch when a third party application creates and add space to a database. The delete trigger is there for completeness for the deletions are done by me when the users are done with the database and the audit retention period expires. The application must be handling the growth because there is no auto-growth event but the ALTER DATABASE trigger is not fired. Has anyone experienced this?

    Thanks in advance,

    Eduardo

  • Perhaps you could use Profiler to find out what the app is doing?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Profiler would have to be filtered at the most because it is an auditing application and it captures too much data.

    Thanks

  • I started extended events session to capture that file size change. That would be more to the point than a profiler trace.

  • Eduardo Olivera (3/22/2016)


    I started extended events session to capture that file size change. That would be more to the point than a profiler trace.

    I was only trying to help.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • I know and I thank you for that. But I was trying to avoid that. I do appreciate your help. I didn't mean to come as I didn't really appreciate your suggestion. 🙂

  • Data/Log file auto grow will be in the default trace, FWIW

  • Thanks

  • The Extended Event that used is based on an entry at Brent Ozar by Erik Darling ( https://www.brentozar.com/archive/2015/12/tracking-tempdb-growth-using-extended-events/ ). I modified it to suit my purposes and it allowed me to find what the standard disk usage report supplied by Microsoft had been hiding. Autogrowth was not reported but it indeed occurred. My suspicions that the application might have been growing the database file were disproved. This is the extended event that I used to catch the file size growth event.

    CREATE EVENT SESSION [DBFileGrowth] ON SERVER

    ADD EVENT sqlserver.database_file_size_change(

    ACTION(sqlserver.client_hostname,sqlserver.database_id,sqlserver.database_name,sqlserver.session_id,sqlserver.sql_text))

    ADD TARGET package0.event_file(SET filename=N'D:\DBA\DB_File_Growth.xel',max_file_size=(50))

    WITH (STARTUP_STATE=OFF)

    GO

    My thanks to all who contributed their knowledge here and to Erik Darling at Brent Ozar for facilitating the creation of the extended event.

Viewing 9 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic. Login to reply