• here's the script with all columns in T.* exploded out to their full name.

    you can remove what you don't need easier than i can.

    object_name(object_id) has an additional optional parameter, db_id, so you cna add that to your list of columns

    object_name(T.[ObjectID],T.[DatabaseID]) i think it goes.

    --SELECT * from sys.traces

    declare @TraceIDToReview int

    declare @path varchar(255)

    SET @TraceIDToReview = 1 --this is the trace you want to review! 1=Default Trace

    SELECT @path = path from sys.traces WHERE id = @TraceIDToReview

    SELECT

    TE.name As EventClassDescrip,

    v.subclass_name As EventSubClassDescrip,

    object_name(T.[ObjectID],T.[DatabaseID]),

    T.[TextData],

    T.[BinaryData],

    T.[DatabaseID],

    T.[TransactionID],

    T.[LineNumber],

    T.[NTUserName],

    T.[NTDomainName],

    T.[HostName],

    T.[ClientProcessID],

    T.[ApplicationName],

    T.[LoginName],

    T.[SPID],

    T.[Duration],

    T.[StartTime],

    T.[EndTime],

    T.[Reads],

    T.[Writes],

    T.[CPU],

    T.[Permissions],

    T.[Severity],

    T.[EventSubClass],

    T.[ObjectID],

    T.[Success],

    T.[IndexID],

    T.[IntegerData],

    T.[ServerName],

    T.[EventClass],

    T.[ObjectType],

    T.[NestLevel],

    T.[State],

    T.[Error],

    T.[Mode],

    T.[Handle],

    T.[ObjectName],

    T.[DatabaseName],

    T.[FileName],

    T.[OwnerName],

    T.[RoleName],

    T.[TargetUserName],

    T.[DBUserName],

    T.[LoginSid],

    T.[TargetLoginName],

    T.[TargetLoginSid],

    T.[ColumnPermissions],

    T.[LinkedServerName],

    T.[ProviderName],

    T.[MethodName],

    T.[RowCounts],

    T.[RequestID],

    T.[XactSequence],

    T.[EventSequence],

    T.[BigintData1],

    T.[BigintData2],

    T.[GUID],

    T.[IntegerData2],

    T.[ObjectID2],

    T.[Type],

    T.[OwnerID],

    T.[ParentName],

    T.[IsSystem],

    T.[Offset],

    T.[SourceDatabaseID],

    T.[SqlHandle],

    T.[SessionLoginName],

    T.[PlanHandle],

    T.[GroupID]

    FROM ::fn_trace_gettable(@path, default) T

    LEFT OUTER JOIN sys.trace_events TE ON T.EventClass = TE.trace_event_id

    LEFT OUTER JOIN sys.trace_subclass_values V

    ON T.EventClass = V.trace_event_id AND T.EventSubClass = V.subclass_value

    WHERE TE.name IN('Object:Created','Object:Altered')

    and T.DatabaseName NOT IN('tempdb','ReportServer','ReportServerTempDB')

    AND T.StartTime >= DATEADD(dd, DATEDIFF(dd,0,getdate()), -3) --last three days?

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!