I’m using SQL Server 2008.
I’m creating a DDL trigger like this:
CREATE TRIGGER tName ON database FOR CREATE_TABLE
as
print 'A table has been created'
Can I get that table that has been created !?
Something like inserted or deleted in the normal table triggers ?!
Try this: