You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ISNULL(REPLICATE('',(R.NestLevel-1)),'')+CAST(R.TextDataAS NVARCHAR(MAX)) AS TextData,
10
+
R.Error,
11
+
R.Severity,
12
+
R.NestLevel,
13
+
R.RowNumber,
14
+
R.EventClass,
15
+
R.EventSubClass,
16
+
R.ApplicationName,
17
+
R.ClientProcessID,
18
+
R.DatabaseID,
19
+
R.DatabaseName,
20
+
R.GroupID,
21
+
R.HostName,
22
+
R.IsSystem,
23
+
R.LoginName,
24
+
R.LoginSid,
25
+
R.NTDomainName,
26
+
R.NTUserName,
27
+
R.RequestID,
28
+
R.SPID,
29
+
R.ServerName,
30
+
R.SessionLoginName,
31
+
R.StartTime,
32
+
R.Success,
33
+
R.GUID,
34
+
R.BinaryData,
35
+
R.Duration,
36
+
R.EndTime,
37
+
R.IntegerData,
38
+
R.CPU,
39
+
R.IntegerData2,
40
+
R.Offset,
41
+
R.Reads,
42
+
R.RowCounts,
43
+
R.Writes,
44
+
R.State,
45
+
R.ObjectID,
46
+
R.ObjectType,
47
+
R.SourceDatabaseID,
48
+
R.IndexID,
49
+
R.Type,
50
+
R.Mode,
51
+
R.OwnerID,
52
+
R.ObjectID2,
53
+
R.BigintData1
54
+
FROMdbo.run4 R
55
+
LEFT JOINsys.trace_eventsAS TE
56
+
ONR.EventClass=TE.trace_event_id
57
+
LEFT JOINsys.trace_subclass_valuesAS TSV
58
+
ONTSV.trace_event_id=TE.trace_event_id
59
+
ANDR.EventSubClass=TSV.subclass_value
60
+
WHERE ISNULL(R.ObjectName,'???') NOT IN ('Private_Print','sp_rename', 'sp_validname','GetTestResultFormatter','sp_addextendedproperty','sp_updateextendedproperty')
0 commit comments