Current Information:
OS: Windows 7 Professional
DB: MS SQL Server 2012
VS: Visual Studio 2013 Professional
LinqConnect Version: 4.4.553.0
Code: Select all
var res = (from i in context.Identifiers
join e in context.Entries on i.IdentifierId equals e.IdentifierId
join l in context.Locations on e.EntryId equals l.EntryId
join v in context.Values on l.LocationId equals v.LocationId
join t in context.Types on v.TypeId equals t.TypeId
where i.Name == identifier
orderby e.EntryIndex, l.Location1, t.Name, e.EntryDateTime ascending
group new
{
Type = t.Name,
Value = v.Value1
} by l.Location1 into g
select g);
Code: Select all
2014-08-08 13:34:24.05 spid51 ODS Event: Remote_ods : Xact 0 ORS#: 1, connId: 0
2014-08-08 13:34:24.05 spid51 Xact BEGIN for Desc: 3300000003
2014-08-08 13:34:24.05 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=948,Len=948,Pxvar Value=SELECT [t1].[Location] AS [Location1]
FROM (
SELECT [t4].[Location]
FROM [dbo].[identifiers] [t2]
INNER JOIN [dbo].[entries] [t3] ON [t2].[IdentifierId] = [t3].[IdentifierId]
INNER JOIN [dbo].[locations] [t4] ON [t3].[EntryId] = [t4].[EntryId]
INNER JOIN dbo.[values] [t5] ON [t4].[LocationId] = [t5].[LocationId]
INNER JOIN [dbo].[types] [t6] ON [t5].[TypeId] = [t6].[TypeId]
WHERE [t2].[Name] = @p0
) [t1]
GROUP BY [t1].[Location]
2014-08-08 13:34:24.05 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=28,Len=28,Pxvar Value=@p0 varchar(3)
2014-08-08 13:34:24.05 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:34:24.05 spid51 IPC Name: sp_executesql
2014-08-08 13:34:24.05 spid51 ODS Event: execrpc : Xact 3300000003 ORS#: 1, connId: 0
2014-08-08 13:34:24.05 spid51 ODS Event: Logout connection 51
2014-08-08 13:34:24.05 spid51 ODS Event: Login connection 51
2014-08-08 13:34:24.05 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:34:24.05 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:34:24.05 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:34:24.05 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc1
2014-08-08 13:34:24.05 spid51 IPC Name: sp_executesql
2014-08-08 13:34:24.05 spid51 ODS Event: execrpc : Xact 3300000003 ORS#: 1, connId: 0
2014-08-08 13:34:24.05 spid51 ODS Event: Logout connection 51
2014-08-08 13:34:24.05 spid51 ODS Event: Login connection 51
2014-08-08 13:34:24.05 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:34:24.05 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:34:24.05 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:34:24.05 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc2
2014-08-08 13:34:24.05 spid51 IPC Name: sp_executesql
2014-08-08 13:34:24.05 spid51 ODS Event: execrpc : Xact 3300000003 ORS#: 1, connId: 0
2014-08-08 13:34:24.05 spid51 ODS Event: Logout connection 51
2014-08-08 13:34:24.05 spid51 ODS Event: Login connection 51
2014-08-08 13:34:24.05 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:34:24.05 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:34:24.05 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:34:24.05 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc3
2014-08-08 13:34:24.05 spid51 IPC Name: sp_executesql
2014-08-08 13:34:24.05 spid51 ODS Event: execrpc : Xact 3300000003 ORS#: 1, connId: 0
2014-08-08 13:34:24.05 spid51 ODS Event: Logout connection 51
2014-08-08 13:34:24.05 spid51 ODS Event: Login connection 51
2014-08-08 13:34:24.05 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:34:24.05 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:34:24.05 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:34:24.05 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc4
2014-08-08 13:34:24.05 spid51 IPC Name: sp_executesql
2014-08-08 13:34:24.05 spid51 ODS Event: execrpc : Xact 3300000003 ORS#: 1, connId: 0
2014-08-08 13:34:24.05 spid51 ODS Event: Logout connection 51
2014-08-08 13:34:24.05 spid51 ODS Event: Login connection 51
2014-08-08 13:34:24.05 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:34:24.05 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:34:24.05 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:34:24.05 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc5
2014-08-08 13:34:24.05 spid51 IPC Name: sp_executesql
2014-08-08 13:34:24.05 spid51 ODS Event: execrpc : Xact 3300000003 ORS#: 1, connId: 0
2014-08-08 13:34:24.05 spid51 ODS Event: Logout connection 51
2014-08-08 13:34:24.05 spid51 ODS Event: Login connection 51
2014-08-08 13:34:24.05 spid51 ODS Event: Remote_ods : Xact 3300000003 ORS#: 1, connId: 0
2014-08-08 13:34:24.05 spid51 Xact ROLLBACK for Desc: 3300000003
Code: Select all
2014-08-08 13:37:29.96 spid51 ODS Event: Remote_ods : Xact 0 ORS#: 1, connId: 0
2014-08-08 13:37:29.96 spid51 Xact BEGIN for Desc: 3300000004
2014-08-08 13:37:29.96 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=948,Len=948,Pxvar Value=SELECT [t1].[Location] AS [Location1]
FROM (
SELECT [t4].[Location]
FROM [dbo].[identifiers] [t2]
INNER JOIN [dbo].[entries] [t3] ON [t2].[IdentifierId] = [t3].[IdentifierId]
INNER JOIN [dbo].[locations] [t4] ON [t3].[EntryId] = [t4].[EntryId]
INNER JOIN dbo.[values] [t5] ON [t4].[LocationId] = [t5].[LocationId]
INNER JOIN [dbo].[types] [t6] ON [t5].[TypeId] = [t6].[TypeId]
WHERE [t2].[Name] = @p0
) [t1]
GROUP BY [t1].[Location]
2014-08-08 13:37:29.96 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=28,Len=28,Pxvar Value=@p0 varchar(3)
2014-08-08 13:37:29.96 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID2
2014-08-08 13:37:29.96 spid51 IPC Name: sp_executesql
2014-08-08 13:37:29.96 spid51 ODS Event: execrpc : Xact 3300000004 ORS#: 1, connId: 0
2014-08-08 13:37:29.96 spid51 ODS Event: Logout connection 51
2014-08-08 13:37:29.96 spid51 ODS Event: Login connection 51
2014-08-08 13:37:29.96 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:37:29.96 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:37:29.96 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:37:29.96 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc1
2014-08-08 13:37:29.96 spid51 IPC Name: sp_executesql
2014-08-08 13:37:29.96 spid51 ODS Event: execrpc : Xact 3300000004 ORS#: 1, connId: 0
2014-08-08 13:37:29.96 spid51 ODS Event: Logout connection 51
2014-08-08 13:37:29.96 spid51 ODS Event: Login connection 51
2014-08-08 13:37:29.96 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:37:29.96 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:37:29.96 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:37:29.96 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc2
2014-08-08 13:37:29.96 spid51 IPC Name: sp_executesql
2014-08-08 13:37:29.96 spid51 ODS Event: execrpc : Xact 3300000004 ORS#: 1, connId: 0
2014-08-08 13:37:29.96 spid51 ODS Event: Logout connection 51
2014-08-08 13:37:29.96 spid51 ODS Event: Login connection 51
2014-08-08 13:37:29.96 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:37:29.96 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:37:29.96 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:37:29.96 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc3
2014-08-08 13:37:29.96 spid51 IPC Name: sp_executesql
2014-08-08 13:37:29.96 spid51 ODS Event: execrpc : Xact 3300000004 ORS#: 1, connId: 0
2014-08-08 13:37:29.96 spid51 ODS Event: Logout connection 51
2014-08-08 13:37:29.96 spid51 ODS Event: Login connection 51
2014-08-08 13:37:29.96 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:37:29.96 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:37:29.96 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:37:29.96 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc4
2014-08-08 13:37:29.96 spid51 IPC Name: sp_executesql
2014-08-08 13:37:29.96 spid51 ODS Event: execrpc : Xact 3300000004 ORS#: 1, connId: 0
2014-08-08 13:37:29.96 spid51 ODS Event: Logout connection 51
2014-08-08 13:37:29.96 spid51 ODS Event: Login connection 51
2014-08-08 13:37:29.96 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:37:29.96 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:37:29.96 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID1
2014-08-08 13:37:29.96 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc5
2014-08-08 13:37:29.96 spid51 IPC Name: sp_executesql
2014-08-08 13:37:29.96 spid51 ODS Event: execrpc : Xact 3300000004 ORS#: 1, connId: 0
2014-08-08 13:37:29.96 spid51 ODS Event: Logout connection 51
2014-08-08 13:37:29.96 spid51 ODS Event: Login connection 51
2014-08-08 13:37:29.96 spid51 ODS Event: Remote_ods : Xact 3300000004 ORS#: 1, connId: 0
2014-08-08 13:37:29.96 spid51 Xact ROLLBACK for Desc: 3300000004
Code: Select all
2014-08-08 13:39:08.15 spid51 ODS Event: Remote_ods : Xact 0 ORS#: 1, connId: 0
2014-08-08 13:39:08.15 spid51 Xact BEGIN for Desc: 3300000005
2014-08-08 13:39:08.15 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=948,Len=948,Pxvar Value=SELECT [t1].[Location] AS [Location1]
FROM (
SELECT [t4].[Location]
FROM [dbo].[identifiers] [t2]
INNER JOIN [dbo].[entries] [t3] ON [t2].[IdentifierId] = [t3].[IdentifierId]
INNER JOIN [dbo].[locations] [t4] ON [t3].[EntryId] = [t4].[EntryId]
INNER JOIN dbo.[values] [t5] ON [t4].[LocationId] = [t5].[LocationId]
INNER JOIN [dbo].[types] [t6] ON [t5].[TypeId] = [t6].[TypeId]
WHERE [t2].[Name] = @p0
) [t1]
GROUP BY [t1].[Location]
2014-08-08 13:39:08.15 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=28,Len=28,Pxvar Value=@p0 varchar(3)
2014-08-08 13:39:08.15 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID2
2014-08-08 13:39:08.15 spid51 IPC Name: sp_executesql
2014-08-08 13:39:08.15 spid51 ODS Event: execrpc : Xact 3300000005 ORS#: 1, connId: 0
2014-08-08 13:39:08.15 spid51 ODS Event: Logout connection 51
2014-08-08 13:39:08.15 spid51 ODS Event: Login connection 51
2014-08-08 13:39:08.15 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:39:08.15 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:39:08.15 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID2
2014-08-08 13:39:08.15 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc1
2014-08-08 13:39:08.15 spid51 IPC Name: sp_executesql
2014-08-08 13:39:08.15 spid51 ODS Event: execrpc : Xact 3300000005 ORS#: 1, connId: 0
2014-08-08 13:39:08.15 spid51 ODS Event: Logout connection 51
2014-08-08 13:39:08.15 spid51 ODS Event: Login connection 51
2014-08-08 13:39:08.15 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:39:08.15 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:39:08.15 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID2
2014-08-08 13:39:08.15 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc2
2014-08-08 13:39:08.15 spid51 IPC Name: sp_executesql
2014-08-08 13:39:08.15 spid51 ODS Event: execrpc : Xact 3300000005 ORS#: 1, connId: 0
2014-08-08 13:39:08.15 spid51 ODS Event: Logout connection 51
2014-08-08 13:39:08.15 spid51 ODS Event: Login connection 51
2014-08-08 13:39:08.15 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:39:08.15 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:39:08.15 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID2
2014-08-08 13:39:08.15 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc3
2014-08-08 13:39:08.15 spid51 IPC Name: sp_executesql
2014-08-08 13:39:08.15 spid51 ODS Event: execrpc : Xact 3300000005 ORS#: 1, connId: 0
2014-08-08 13:39:08.15 spid51 ODS Event: Logout connection 51
2014-08-08 13:39:08.15 spid51 ODS Event: Login connection 51
2014-08-08 13:39:08.15 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:39:08.15 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:39:08.15 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID2
2014-08-08 13:39:08.15 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc4
2014-08-08 13:39:08.15 spid51 IPC Name: sp_executesql
2014-08-08 13:39:08.15 spid51 ODS Event: execrpc : Xact 3300000005 ORS#: 1, connId: 0
2014-08-08 13:39:08.15 spid51 ODS Event: Logout connection 51
2014-08-08 13:39:08.15 spid51 ODS Event: Login connection 51
2014-08-08 13:39:08.15 spid51 Parameter# 0: Name=,Flags=0,Xvt=231,MaxLen=988,Len=988,Pxvar Value=SELECT [t5].[Name], [t4].[Value] AS [Value1]
FROM [dbo].[identifiers] [t1]
INNER JOIN [dbo].[entries] [t2] ON [t1].[IdentifierId] = [t2].[IdentifierId]
INNER JOIN [dbo].[locations] [t3] ON [t2].[EntryId] = [t3].[EntryId]
INNER JOIN dbo.[values] [t4] ON [t3].[LocationId] = [t4].[LocationId]
INNER JOIN [dbo].[types] [t5] ON [t4].[TypeId] = [t5].[TypeId]
WHERE (@np0 = [t3].[Location]) AND ([t1].[Name] = @p0)
ORDER BY [t2].[EntryIndex], [t3].[Location], [t5].[Name], [t2].[EntryDateTime]
2014-08-08 13:39:08.15 spid51 Parameter# 1: Name=,Flags=0,Xvt=231,MaxLen=60,Len=60,Pxvar Value=@p0 varchar(3),@np0 varchar(4)
2014-08-08 13:39:08.15 spid51 Parameter# 2: Name=@p0,Flags=0,Xvt=167,MaxLen=3,Len=3,Pxvar Value=ID2
2014-08-08 13:39:08.15 spid51 Parameter# 3: Name=@np0,Flags=0,Xvt=167,MaxLen=4,Len=4,Pxvar Value=Loc5
2014-08-08 13:39:08.15 spid51 IPC Name: sp_executesql
2014-08-08 13:39:08.15 spid51 ODS Event: execrpc : Xact 3300000005 ORS#: 1, connId: 0
2014-08-08 13:39:08.15 spid51 ODS Event: Logout connection 51
2014-08-08 13:39:08.15 spid51 ODS Event: Login connection 51
2014-08-08 13:39:08.15 spid51 ODS Event: Remote_ods : Xact 3300000005 ORS#: 1, connId: 0
2014-08-08 13:39:08.15 spid51 Xact ROLLBACK for Desc: 3300000005