diff --git a/src/libraries/Microsoft.PowerFx.Connectors/Tabular/CdpTableResolver.cs b/src/libraries/Microsoft.PowerFx.Connectors/Tabular/CdpTableResolver.cs index be8c2712c..38ec594f6 100644 --- a/src/libraries/Microsoft.PowerFx.Connectors/Tabular/CdpTableResolver.cs +++ b/src/libraries/Microsoft.PowerFx.Connectors/Tabular/CdpTableResolver.cs @@ -65,34 +65,23 @@ namespace Microsoft.PowerFx.Connectors { cancellationToken.ThrowIfCancellationRequested(); - // We can't execute a query like below for unknown reasons so we'll have to do it in retrieving each table's data - // and doing the joins manually (in GetSqlRelationships) - // -- - // SELECT fk.name 'FK Name', tp.name 'Parent table', cp.name, tr.name 'Refrenced table', cr.name - // FROM sys.foreign_keys fk - // INNER JOIN sys.tables tp ON fk.parent_object_id = tp.object_id - // INNER JOIN sys.tables tr ON fk.referenced_object_id = tr.object_id - // INNER JOIN sys.foreign_key_columns fkc ON fkc.constraint_object_id = fk.object_id - // INNER JOIN sys.columns cp ON fkc.parent_column_id = cp.column_id AND fkc.parent_object_id = cp.object_id - // INNER JOIN sys.columns cr ON fkc.referenced_column_id = cr.column_id AND fkc.referenced_object_id = cr.object_id - // ORDER BY tp.name, cp.column_id - // -- - uri = (_uriPrefix ?? string.Empty) + $"/v2/datasets/{dataset}/query/sql"; string body = - @"{""query"":""select name, object_id, parent_object_id, referenced_object_id from sys.foreign_keys; " + - @"select object_id, name from sys.tables; " + - @"select constraint_object_id, parent_column_id, parent_object_id, referenced_column_id, referenced_object_id from sys.foreign_key_columns; " + - @"select name, object_id, column_id from sys.columns""}"; + @"{""query"":""SELECT fk.name AS FK_Name, '[' + sp.name + '].[' + tp.name + ']' AS Parent_Table, cp.name AS Parent_Column, '[' + sr.name + '].[' + tr.name + ']' AS Referenced_Table, cr.name AS Referenced_Column" + + @" FROM sys.foreign_keys fk" + + @" INNER JOIN sys.tables tp ON fk.parent_object_id = tp.object_id" + + @" INNER JOIN sys.tables tr ON fk.referenced_object_id = tr.object_id" + + @" INNER JOIN sys.schemas sp on tp.schema_id = sp.schema_id" + + @" INNER JOIN sys.schemas sr on tr.schema_id = sr.schema_id" + + @" INNER JOIN sys.foreign_key_columns fkc ON fkc.constraint_object_id = fk.object_id" + + @" INNER JOIN sys.columns cp ON fkc.parent_column_id = cp.column_id AND fkc.parent_object_id = cp.object_id" + + @" INNER JOIN sys.columns cr ON fkc.referenced_column_id = cr.column_id AND fkc.referenced_object_id = cr.object_id" + + @" WHERE '[' + sp.name + '].[' + tp.name + ']' = '" + tableName + "'" + @"""}"; string text2 = await CdpServiceBase.GetObject(_httpClient, $"Get SQL relationships", uri, body, cancellationToken, Logger).ConfigureAwait(false); // Result should be cached sqlRelationships = GetSqlRelationships(text2); - - // Filter on ParentTable - string tbl = tableName.Split('.').Last().Replace("[", string.Empty).Replace("]", string.Empty); - sqlRelationships = sqlRelationships.Where(sr => sr.ParentTable == tbl).ToList(); } string connectorName = _uriPrefix.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries)[1]; @@ -107,51 +96,30 @@ namespace Microsoft.PowerFx.Connectors private bool IsSql() => _uriPrefix.Contains("/sql/"); private List GetSqlRelationships(string text) - { - Result r = JsonSerializer.Deserialize(text); + { + RelationshipResult r = JsonSerializer.Deserialize(text); - SqlForeignKey[] fkt = r.ResultSets.Table1; - - if (fkt == null || fkt.Length == 0) + var relationships = r.ResultSets.Table1; + if (relationships == null || relationships.Length == 0) { return new List(); } - SqlTable[] tt = r.ResultSets.Table2; - SqlForeignKeyColumn[] fkct = r.ResultSets.Table3; - SqlColumn[] ct = r.ResultSets.Table4; - List sqlRelationShips = new List(); - foreach (SqlForeignKey fk in fkt) + foreach (var fk in relationships) { - foreach (SqlTable tp in tt.Where(tp => fk.parent_object_id == tp.object_id)) + sqlRelationShips.Add(new SqlRelationship() { - foreach (SqlTable tr in tt.Where(tr => fk.referenced_object_id == tr.object_id)) - { - foreach (SqlForeignKeyColumn fkc in fkct.Where(fkc => fkc.constraint_object_id == fk.object_id)) - { - foreach (SqlColumn cp in ct.Where(cp => fkc.parent_column_id == cp.column_id && fkc.parent_object_id == cp.object_id)) - { - foreach (SqlColumn cr in ct.Where(cr => fkc.referenced_column_id == cr.column_id && fkc.referenced_object_id == cr.object_id)) - { - sqlRelationShips.Add(new SqlRelationship() - { - RelationshipName = fk.name, - ParentTable = tp.name, - ColumnName = cp.name, - ReferencedTable = tr.name, - ReferencedColumnName = cr.name, - ColumnId = cp.column_id - }); - } - } - } - } - } + RelationshipName = fk.FK_Name, + ParentTable = fk.Parent_Table, + ColumnName = fk.Parent_Column, + ReferencedTable = fk.Referenced_Table, + ReferencedColumnName = fk.Referenced_Column + }); } - return sqlRelationShips.OrderBy(sr => sr.ParentTable).ThenBy(sr => sr.ColumnId).ToList(); + return sqlRelationShips; } } @@ -165,52 +133,31 @@ namespace Microsoft.PowerFx.Connectors public string ColumnName; public string ReferencedTable; public string ReferencedColumnName; - public long ColumnId; public override string ToString() => $"{RelationshipName}, {ParentTable}, {ColumnName}, {ReferencedTable}, {ReferencedColumnName}"; } - internal class Result + internal class RelationshipResult { - public ResultSets ResultSets { get; set; } + public RelationshipResultSets ResultSets { get; set; } } - internal class ResultSets + internal class RelationshipResultSets { - public SqlForeignKey[] Table1 { get; set; } - public SqlTable[] Table2 { get; set; } - public SqlForeignKeyColumn[] Table3 { get; set; } - public SqlColumn[] Table4 { get; set; } + public FKRelationship[] Table1 { get; set; } } - internal class SqlForeignKey + internal class FKRelationship { - public string name { get; set; } - public long object_id { get; set; } - public long parent_object_id { get; set; } - public long referenced_object_id { get; set; } - } + public string FK_Name { get; set; } - internal class SqlTable - { - public long object_id { get; set; } - public string name { get; set; } - } + public string Parent_Table { get; set; } - internal class SqlForeignKeyColumn - { - public long constraint_object_id { get; set; } - public long parent_column_id { get; set; } - public long parent_object_id { get; set; } - public long referenced_column_id { get; set; } - public long referenced_object_id { get; set; } - } + public string Parent_Column { get; set; } - internal class SqlColumn - { - public string name { get; set; } - public long object_id { get; set; } - public long column_id { get; set; } + public string Referenced_Table { get; set; } + + public string Referenced_Column { get; set; } } #pragma warning restore SA1516 diff --git a/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/PowerPlatformConnectorTests.cs b/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/PowerPlatformConnectorTests.cs index 6caf2f8a0..a49bfc57b 100644 --- a/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/PowerPlatformConnectorTests.cs +++ b/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/PowerPlatformConnectorTests.cs @@ -21,6 +21,7 @@ using Microsoft.PowerFx.Core.Tests; using Microsoft.PowerFx.Core.Types; using Microsoft.PowerFx.Functions; using Microsoft.PowerFx.Intellisense; +using Microsoft.PowerFx.Syntax; using Microsoft.PowerFx.Types; using Xunit; using Xunit.Abstractions; @@ -1382,30 +1383,24 @@ namespace Microsoft.PowerFx.Tests var config = new PowerFxConfig(Features.PowerFxV1); using var httpClient = new HttpClient(testConnector); - string jwt = "eyJ0eXAi..."; - using var client = new PowerPlatformConnectorClient("firstrelease-003.azure-apihub.net", "49970107-0806-e5a7-be5e-7c60e2750f01", "29941b77eb0a40fe925cd7a03cb85b40", () => jwt, httpClient) { SessionId = "8e67ebdc-d402-455a-b33a-304820832383" }; + string jwt = "eyJ0eXAiO..."; + using var client = new PowerPlatformConnectorClient("4d4a8e81-17a4-4a92-9bfe-8d12e607fb7f.08.common.tip1.azure-apihub.net", "4d4a8e81-17a4-4a92-9bfe-8d12e607fb7f", "53f515b50c3e4925803ec1f0945e799f", () => jwt, httpClient) { SessionId = "8e67ebdc-d402-455a-b33a-304820832383" }; config.AddActionConnector(new ConnectorSettings("SQL") { IncludeInternalFunctions = true, AllowUnsupportedFunctions = true }, apiDoc, new ConsoleLogger(_output)); RecalcEngine engine = new RecalcEngine(config); RuntimeConfig rc = new RuntimeConfig().AddRuntimeContext(new TestConnectorRuntimeContext("SQL", client, console: _output)); - // We can't execute a query like this for unknown reasons so we'll have to do it manually - //string query = - // "SELECT fk.name 'FK Name', tp.name 'Parent table', cp.name, tr.name 'Refrenced table', cr.name " + - // "FROM sys.foreign_keys fk " + - // "INNER JOIN sys.tables tp ON fk.parent_object_id = tp.object_id " + - // "INNER JOIN sys.tables tr ON fk.referenced_object_id = tr.object_id " + - // "INNER JOIN sys.foreign_key_columns fkc ON fkc.constraint_object_id = fk.object_id " + - // "INNER JOIN sys.columns cp ON fkc.parent_column_id = cp.column_id AND fkc.parent_object_id = cp.object_id " + - // "INNER JOIN sys.columns cr ON fkc.referenced_column_id = cr.column_id AND fkc.referenced_object_id = cr.object_id " + - // "ORDER BY tp.name, cp.column_id"; - - // This will return 4 tables in an Untyped Object string query = - "select name, object_id, parent_object_id, referenced_object_id from sys.foreign_keys; " + - "select object_id, name from sys.tables; " + - "select constraint_object_id, parent_column_id, parent_object_id, referenced_column_id, referenced_object_id from sys.foreign_key_columns; " + - "select name, object_id, column_id from sys.columns"; + "SELECT fk.name AS FK_Name, '[' + sp.name + '].[' + tp.name + ']' AS Parent_Table, cp.name AS Parent_Column, '[' + sr.name + '].[' + tr.name + ']' AS Referenced_Table, cr.name AS Referenced_Column" + + @" FROM sys.foreign_keys fk" + + @" INNER JOIN sys.tables tp ON fk.parent_object_id = tp.object_id" + + @" INNER JOIN sys.tables tr ON fk.referenced_object_id = tr.object_id" + + @" INNER JOIN sys.schemas sp on tp.schema_id = sp.schema_id" + + @" INNER JOIN sys.schemas sr on tr.schema_id = sr.schema_id" + + @" INNER JOIN sys.foreign_key_columns fkc ON fkc.constraint_object_id = fk.object_id" + + @" INNER JOIN sys.columns cp ON fkc.parent_column_id = cp.column_id AND fkc.parent_object_id = cp.object_id" + + @" INNER JOIN sys.columns cr ON fkc.referenced_column_id = cr.column_id AND fkc.referenced_object_id = cr.object_id" + + @" WHERE '[' + sp.name + '].[' + tp.name + ']' = '[SalesLT].[Product]'"; testConnector.SetResponseFromFile(@"Responses\SQL GetRelationships SampleDB.json"); var result = await engine.EvalAsync(@$"SQL.ExecutePassThroughNativeQueryV2(""pfxdev-sql.database.windows.net"", ""SampleDB"", {{ query: ""{query}"" }})", CancellationToken.None, new ParserOptions() { AllowsSideEffects = true }, runtimeConfig: rc); @@ -1414,73 +1409,40 @@ namespace Microsoft.PowerFx.Tests JsonUntypedObject juo = Assert.IsType(uov.Impl); JsonElement je = juo._element; - Result r = je.Deserialize(); - - SqlForeignKey[] fkt = r.ResultSets.Table1; - SqlTable[] tt = r.ResultSets.Table2; - SqlForeignKeyColumn[] fkct = r.ResultSets.Table3; - SqlColumn[] ct = r.ResultSets.Table4; + RelationshipResult r = je.Deserialize(); + var relationships = r.ResultSets.Table1; List sqlRelationShips = new List(); - foreach (SqlForeignKey fk in fkt) + foreach (var fk in relationships) { - foreach (SqlTable tp in tt.Where(tp => fk.parent_object_id == tp.object_id)) + sqlRelationShips.Add(new SqlRelationship() { - foreach (SqlTable tr in tt.Where(tr => fk.referenced_object_id == tr.object_id)) - { - foreach (SqlForeignKeyColumn fkc in fkct.Where(fkc => fkc.constraint_object_id == fk.object_id)) - { - foreach (SqlColumn cp in ct.Where(cp => fkc.parent_column_id == cp.column_id && fkc.parent_object_id == cp.object_id)) - { - foreach (SqlColumn cr in ct.Where(cr => fkc.referenced_column_id == cr.column_id && fkc.referenced_object_id == cr.object_id)) - { - sqlRelationShips.Add(new SqlRelationship() - { - RelationshipName = fk.name, - ParentTable = tp.name, - ColumnName = cp.name, - ReferencedTable = tr.name, - ReferencedColumnName = cr.name, - ColumnId = cp.column_id - }); - } - } - } - } - } + RelationshipName = fk.FK_Name, + ParentTable = fk.Parent_Table, + ColumnName = fk.Parent_Column, + ReferencedTable = fk.Referenced_Table, + ReferencedColumnName = fk.Referenced_Column + }); } - sqlRelationShips = sqlRelationShips.OrderBy(sr => sr.ParentTable).ThenBy(sr => sr.ColumnId).ToList(); + Assert.Equal(2, sqlRelationShips.Count); + Assert.Equal("FK_Product_ProductModel_ProductModelID, [SalesLT].[Product], ProductModelID, [SalesLT].[ProductModel], ProductModelID", sqlRelationShips[0].ToString()); + Assert.Equal("FK_Product_ProductCategory_ProductCategoryID, [SalesLT].[Product], ProductCategoryID, [SalesLT].[ProductCategory], ProductCategoryID", sqlRelationShips[1].ToString()); - Assert.Equal(12, sqlRelationShips.Count); - Assert.Equal("FK_CustomerAddress_Customer_CustomerID, CustomerAddress, CustomerID, Customer, CustomerID", sqlRelationShips[0].ToString()); - Assert.Equal("FK_CustomerAddress_Address_AddressID, CustomerAddress, AddressID, Address, AddressID", sqlRelationShips[1].ToString()); - Assert.Equal("FK_Product_ProductCategory_ProductCategoryID, Product, ProductCategoryID, ProductCategory, ProductCategoryID", sqlRelationShips[2].ToString()); - Assert.Equal("FK_Product_ProductModel_ProductModelID, Product, ProductModelID, ProductModel, ProductModelID", sqlRelationShips[3].ToString()); - Assert.Equal("FK_ProductCategory_ProductCategory_ParentProductCategoryID_ProductCategoryID, ProductCategory, ParentProductCategoryID, ProductCategory, ProductCategoryID", sqlRelationShips[4].ToString()); - Assert.Equal("FK_ProductModelProductDescription_ProductModel_ProductModelID, ProductModelProductDescription, ProductModelID, ProductModel, ProductModelID", sqlRelationShips[5].ToString()); - Assert.Equal("FK_ProductModelProductDescription_ProductDescription_ProductDescriptionID, ProductModelProductDescription, ProductDescriptionID, ProductDescription, ProductDescriptionID", sqlRelationShips[6].ToString()); - Assert.Equal("FK_SalesOrderDetail_SalesOrderHeader_SalesOrderID, SalesOrderDetail, SalesOrderID, SalesOrderHeader, SalesOrderID", sqlRelationShips[7].ToString()); - Assert.Equal("FK_SalesOrderDetail_Product_ProductID, SalesOrderDetail, ProductID, Product, ProductID", sqlRelationShips[8].ToString()); - Assert.Equal("FK_SalesOrderHeader_Customer_CustomerID, SalesOrderHeader, CustomerID, Customer, CustomerID", sqlRelationShips[9].ToString()); - Assert.Equal("FK_SalesOrderHeader_Address_ShipTo_AddressID, SalesOrderHeader, ShipToAddressID, Address, AddressID", sqlRelationShips[10].ToString()); - Assert.Equal("FK_SalesOrderHeader_Address_BillTo_AddressID, SalesOrderHeader, BillToAddressID, Address, AddressID", sqlRelationShips[11].ToString()); - - string expected = @$"POST https://firstrelease-003.azure-apihub.net/invoke - authority: firstrelease-003.azure-apihub.net + string expected = @$"POST https://4d4a8e81-17a4-4a92-9bfe-8d12e607fb7f.08.common.tip1.azure-apihub.net/invoke + authority: 4d4a8e81-17a4-4a92-9bfe-8d12e607fb7f.08.common.tip1.azure-apihub.net Authorization: Bearer {jwt} path: /invoke scheme: https - x-ms-client-environment-id: /providers/Microsoft.PowerApps/environments/49970107-0806-e5a7-be5e-7c60e2750f01 + x-ms-client-environment-id: /providers/Microsoft.PowerApps/environments/4d4a8e81-17a4-4a92-9bfe-8d12e607fb7f x-ms-client-session-id: 8e67ebdc-d402-455a-b33a-304820832383 x-ms-request-method: POST - x-ms-request-url: /apim/sql/29941b77eb0a40fe925cd7a03cb85b40/v2/datasets/pfxdev-sql.database.windows.net,SampleDB/query/sql + x-ms-request-url: /apim/sql/53f515b50c3e4925803ec1f0945e799f/v2/datasets/pfxdev-sql.database.windows.net,SampleDB/query/sql x-ms-user-agent: PowerFx/{PowerPlatformConnectorClient.Version} [content-header] Content-Type: application/json; charset=utf-8 - [body] {{""query"":""select name, object_id, parent_object_id, referenced_object_id from sys.foreign_keys; select object_id, name from sys.tables; select constraint_object_id, parent_column_id, parent_object_id, referenced_column_id, referenced_object_id from sys.foreign_key_columns; select name, object_id, column_id from sys.columns""}} + [body] {{""query"":""SELECT fk.name AS FK_Name, \u0027[\u0027 \u002B sp.name \u002B \u0027].[\u0027 \u002B tp.name \u002B \u0027]\u0027 AS Parent_Table, cp.name AS Parent_Column, \u0027[\u0027 \u002B sr.name \u002B \u0027].[\u0027 \u002B tr.name \u002B \u0027]\u0027 AS Referenced_Table, cr.name AS Referenced_Column FROM sys.foreign_keys fk INNER JOIN sys.tables tp ON fk.parent_object_id = tp.object_id INNER JOIN sys.tables tr ON fk.referenced_object_id = tr.object_id INNER JOIN sys.schemas sp on tp.schema_id = sp.schema_id INNER JOIN sys.schemas sr on tr.schema_id = sr.schema_id INNER JOIN sys.foreign_key_columns fkc ON fkc.constraint_object_id = fk.object_id INNER JOIN sys.columns cp ON fkc.parent_column_id = cp.column_id AND fkc.parent_object_id = cp.object_id INNER JOIN sys.columns cr ON fkc.referenced_column_id = cr.column_id AND fkc.referenced_object_id = cr.object_id WHERE \u0027[\u0027 \u002B sp.name \u002B \u0027].[\u0027 \u002B tp.name \u002B \u0027]\u0027 = \u0027[SalesLT].[Product]\u0027""}} "; - Assert.Equal(expected, testConnector._log.ToString()); } @@ -1494,51 +1456,30 @@ namespace Microsoft.PowerFx.Tests public string ColumnName; public string ReferencedTable; public string ReferencedColumnName; - public long ColumnId; public override string ToString() => $"{RelationshipName}, {ParentTable}, {ColumnName}, {ReferencedTable}, {ReferencedColumnName}"; } - public class Result + internal class RelationshipResult { - public ResultSets ResultSets { get; set; } + public RelationshipResultSets ResultSets { get; set; } } - public class ResultSets + internal class RelationshipResultSets { - public SqlForeignKey[] Table1 { get; set; } - public SqlTable[] Table2 { get; set; } - public SqlForeignKeyColumn[] Table3 { get; set; } - public SqlColumn[] Table4 { get; set; } + public FKRelationship[] Table1 { get; set; } } - public class SqlForeignKey + internal class FKRelationship { - public string name { get; set; } - public long object_id { get; set; } - public long parent_object_id { get; set; } - public long referenced_object_id { get; set; } - } + public string FK_Name { get; set; } - public class SqlTable - { - public long object_id { get; set; } - public string name { get; set; } - } + public string Parent_Table { get; set; } - public class SqlForeignKeyColumn - { - public long constraint_object_id { get; set; } - public long parent_column_id { get; set; } - public long parent_object_id { get; set; } - public long referenced_column_id { get; set; } - public long referenced_object_id { get; set; } - } + public string Parent_Column { get; set; } - public class SqlColumn - { - public string name { get; set; } - public long object_id { get; set; } - public long column_id { get; set; } + public string Referenced_Table { get; set; } + + public string Referenced_Column { get; set; } } #pragma warning restore SA1516 @@ -1616,7 +1557,7 @@ namespace Microsoft.PowerFx.Tests config.AddActionConnector("SQL", apiDoc, new ConsoleLogger(_output)); var engine = new RecalcEngine(config); - + RuntimeConfig rc = new RuntimeConfig(); rc.SetTimeZone(TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time")); rc.AddRuntimeContext(new TestConnectorRuntimeContext("SQL", client, console: _output)); diff --git a/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/PowerPlatformTabularTests.cs b/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/PowerPlatformTabularTests.cs index 599f5898d..7d1b367d0 100644 --- a/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/PowerPlatformTabularTests.cs +++ b/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/PowerPlatformTabularTests.cs @@ -249,7 +249,7 @@ namespace Microsoft.PowerFx.Connectors.Tests bool b = sqlTable.TabularRecordType.TryGetFieldExternalTableName("ProductModelID", out string externalTableName, out string foreignKey); Assert.True(b); - Assert.Equal("ProductModel", externalTableName); // Display Name + Assert.Equal("[SalesLT].[ProductModel]", externalTableName); // Logical Name Assert.Equal("ProductModelID", foreignKey); testConnector.SetResponseFromFiles(@"Responses\SQL GetSchema ProductModel.json", @"Responses\SQL GetRelationships SampleDB.json"); diff --git a/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/Responses/SQL GetRelationships SampleDB.json b/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/Responses/SQL GetRelationships SampleDB.json index a839f27d9..dd16b99ac 100644 --- a/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/Responses/SQL GetRelationships SampleDB.json +++ b/src/tests/Microsoft.PowerFx.Connectors.Tests.Shared/Responses/SQL GetRelationships SampleDB.json @@ -2,7313 +2,18 @@ "ResultSets": { "Table1": [ { - "name": "FK_CustomerAddress_Address_AddressID", - "object_id": 626101271, - "parent_object_id": 1925581898, - "referenced_object_id": 1893581784 - }, - { - "name": "FK_CustomerAddress_Customer_CustomerID", - "object_id": 642101328, - "parent_object_id": 1925581898, - "referenced_object_id": 1573580644 - }, - { - "name": "FK_Product_ProductCategory_ProductCategoryID", - "object_id": 658101385, - "parent_object_id": 1701581100, - "referenced_object_id": 1781581385 - }, - { - "name": "FK_Product_ProductModel_ProductModelID", - "object_id": 674101442, - "parent_object_id": 1701581100, - "referenced_object_id": 1621580815 - }, - { - "name": "FK_ProductCategory_ProductCategory_ParentProductCategoryID_ProductCategoryID", - "object_id": 690101499, - "parent_object_id": 1781581385, - "referenced_object_id": 1781581385 - }, - { - "name": "FK_ProductModelProductDescription_ProductDescription_ProductDescriptionID", - "object_id": 706101556, - "parent_object_id": 1733581214, - "referenced_object_id": 1669580986 - }, - { - "name": "FK_ProductModelProductDescription_ProductModel_ProductModelID", - "object_id": 722101613, - "parent_object_id": 1733581214, - "referenced_object_id": 1621580815 - }, - { - "name": "FK_SalesOrderDetail_Product_ProductID", - "object_id": 738101670, - "parent_object_id": 1957582012, - "referenced_object_id": 1701581100 - }, - { - "name": "FK_SalesOrderDetail_SalesOrderHeader_SalesOrderID", - "object_id": 754101727, - "parent_object_id": 1957582012, - "referenced_object_id": 1989582126 - }, - { - "name": "FK_SalesOrderHeader_Address_BillTo_AddressID", - "object_id": 770101784, - "parent_object_id": 1989582126, - "referenced_object_id": 1893581784 - }, - { - "name": "FK_SalesOrderHeader_Address_ShipTo_AddressID", - "object_id": 786101841, - "parent_object_id": 1989582126, - "referenced_object_id": 1893581784 - }, - { - "name": "FK_SalesOrderHeader_Customer_CustomerID", - "object_id": 802101898, - "parent_object_id": 1989582126, - "referenced_object_id": 1573580644 - } - ], - "Table2": [ - { - "object_id": 1074102867, - "name": "sysdiagrams" - }, - { - "object_id": 1573580644, - "name": "Customer" - }, - { - "object_id": 1621580815, - "name": "ProductModel" - }, - { - "object_id": 1669580986, - "name": "ProductDescription" - }, - { - "object_id": 1701581100, - "name": "Product" - }, - { - "object_id": 1733581214, - "name": "ProductModelProductDescription" - }, - { - "object_id": 1781581385, - "name": "ProductCategory" - }, - { - "object_id": 1829581556, - "name": "BuildVersion" - }, - { - "object_id": 1861581670, - "name": "ErrorLog" - }, - { - "object_id": 1893581784, - "name": "Address" - }, - { - "object_id": 1925581898, - "name": "CustomerAddress" - }, - { - "object_id": 1957582012, - "name": "SalesOrderDetail" - }, - { - "object_id": 1989582126, - "name": "SalesOrderHeader" - } - ], - "Table3": [ - { - "constraint_object_id": 642101328, - "parent_column_id": 1, - "parent_object_id": 1925581898, - "referenced_column_id": 1, - "referenced_object_id": 1573580644 - }, - { - "constraint_object_id": 802101898, - "parent_column_id": 11, - "parent_object_id": 1989582126, - "referenced_column_id": 1, - "referenced_object_id": 1573580644 - }, - { - "constraint_object_id": 674101442, - "parent_column_id": 10, - "parent_object_id": 1701581100, - "referenced_column_id": 1, - "referenced_object_id": 1621580815 - }, - { - "constraint_object_id": 722101613, - "parent_column_id": 1, - "parent_object_id": 1733581214, - "referenced_column_id": 1, - "referenced_object_id": 1621580815 - }, - { - "constraint_object_id": 706101556, - "parent_column_id": 2, - "parent_object_id": 1733581214, - "referenced_column_id": 1, - "referenced_object_id": 1669580986 - }, - { - "constraint_object_id": 738101670, - "parent_column_id": 4, - "parent_object_id": 1957582012, - "referenced_column_id": 1, - "referenced_object_id": 1701581100 - }, - { - "constraint_object_id": 658101385, - "parent_column_id": 9, - "parent_object_id": 1701581100, - "referenced_column_id": 1, - "referenced_object_id": 1781581385 - }, - { - "constraint_object_id": 690101499, - "parent_column_id": 2, - "parent_object_id": 1781581385, - "referenced_column_id": 1, - "referenced_object_id": 1781581385 - }, - { - "constraint_object_id": 626101271, - "parent_column_id": 2, - "parent_object_id": 1925581898, - "referenced_column_id": 1, - "referenced_object_id": 1893581784 - }, - { - "constraint_object_id": 770101784, - "parent_column_id": 13, - "parent_object_id": 1989582126, - "referenced_column_id": 1, - "referenced_object_id": 1893581784 - }, - { - "constraint_object_id": 786101841, - "parent_column_id": 12, - "parent_object_id": 1989582126, - "referenced_column_id": 1, - "referenced_object_id": 1893581784 - }, - { - "constraint_object_id": 754101727, - "parent_column_id": 1, - "parent_object_id": 1957582012, - "referenced_column_id": 1, - "referenced_object_id": 1989582126 - } - ], - "Table4": [ - { - "name": "rsid", - "object_id": 3, - "column_id": 1 - }, - { - "name": "rscolid", - "object_id": 3, - "column_id": 2 - }, - { - "name": "hbcolid", - "object_id": 3, - "column_id": 3 - }, - { - "name": "rcmodified", - "object_id": 3, - "column_id": 4 - }, - { - "name": "ti", - "object_id": 3, - "column_id": 5 - }, - { - "name": "cid", - "object_id": 3, - "column_id": 6 - }, - { - "name": "ordkey", - "object_id": 3, - "column_id": 7 - }, - { - "name": "maxinrowlen", - "object_id": 3, - "column_id": 8 - }, - { - "name": "status", - "object_id": 3, - "column_id": 9 - }, - { - "name": "offset", - "object_id": 3, - "column_id": 10 - }, - { - "name": "nullbit", - "object_id": 3, - "column_id": 11 - }, - { - "name": "bitpos", - "object_id": 3, - "column_id": 12 - }, - { - "name": "colguid", - "object_id": 3, - "column_id": 13 - }, - { - "name": "ordlock", - "object_id": 3, - "column_id": 14 - }, - { - "name": "rowsetid", - "object_id": 5, - "column_id": 1 - }, - { - "name": "ownertype", - "object_id": 5, - "column_id": 2 - }, - { - "name": "idmajor", - "object_id": 5, - "column_id": 3 - }, - { - "name": "idminor", - "object_id": 5, - "column_id": 4 - }, - { - "name": "numpart", - "object_id": 5, - "column_id": 5 - }, - { - "name": "status", - "object_id": 5, - "column_id": 6 - }, - { - "name": "fgidfs", - "object_id": 5, - "column_id": 7 - }, - { - "name": "rcrows", - "object_id": 5, - "column_id": 8 - }, - { - "name": "cmprlevel", - "object_id": 5, - "column_id": 9 - }, - { - "name": "fillfact", - "object_id": 5, - "column_id": 10 - }, - { - "name": "maxnullbit", - "object_id": 5, - "column_id": 11 - }, - { - "name": "maxleaf", - "object_id": 5, - "column_id": 12 - }, - { - "name": "maxint", - "object_id": 5, - "column_id": 13 - }, - { - "name": "minleaf", - "object_id": 5, - "column_id": 14 - }, - { - "name": "minint", - "object_id": 5, - "column_id": 15 - }, - { - "name": "rsguid", - "object_id": 5, - "column_id": 16 - }, - { - "name": "lockres", - "object_id": 5, - "column_id": 17 - }, - { - "name": "scope_id", - "object_id": 5, - "column_id": 18 - }, - { - "name": "id", - "object_id": 6, - "column_id": 1 - }, - { - "name": "subid", - "object_id": 6, - "column_id": 2 - }, - { - "name": "partid", - "object_id": 6, - "column_id": 3 - }, - { - "name": "version", - "object_id": 6, - "column_id": 4 - }, - { - "name": "segid", - "object_id": 6, - "column_id": 5 - }, - { - "name": "cloneid", - "object_id": 6, - "column_id": 6 - }, - { - "name": "rowsetid", - "object_id": 6, - "column_id": 7 - }, - { - "name": "dbfragid", - "object_id": 6, - "column_id": 8 - }, - { - "name": "status", - "object_id": 6, - "column_id": 9 - }, - { - "name": "auid", - "object_id": 7, - "column_id": 1 - }, - { - "name": "type", - "object_id": 7, - "column_id": 2 - }, - { - "name": "ownerid", - "object_id": 7, - "column_id": 3 - }, - { - "name": "status", - "object_id": 7, - "column_id": 4 - }, - { - "name": "fgid", - "object_id": 7, - "column_id": 5 - }, - { - "name": "pgfirst", - "object_id": 7, - "column_id": 6 - }, - { - "name": "pgroot", - "object_id": 7, - "column_id": 7 - }, - { - "name": "pgfirstiam", - "object_id": 7, - "column_id": 8 - }, - { - "name": "pcused", - "object_id": 7, - "column_id": 9 - }, - { - "name": "pcdata", - "object_id": 7, - "column_id": 10 - }, - { - "name": "pcreserved", - "object_id": 7, - "column_id": 11 - }, - { - "name": "status", - "object_id": 8, - "column_id": 1 - }, - { - "name": "fileid", - "object_id": 8, - "column_id": 2 - }, - { - "name": "name", - "object_id": 8, - "column_id": 3 - }, - { - "name": "filename", - "object_id": 8, - "column_id": 4 - }, - { - "name": "valclass", - "object_id": 9, - "column_id": 1 - }, - { - "name": "id", - "object_id": 9, - "column_id": 2 - }, - { - "name": "subid", - "object_id": 9, - "column_id": 3 - }, - { - "name": "valnum", - "object_id": 9, - "column_id": 4 - }, - { - "name": "value", - "object_id": 9, - "column_id": 5 - }, - { - "name": "imageval", - "object_id": 9, - "column_id": 6 - }, - { - "name": "priority_id", - "object_id": 17, - "column_id": 1 - }, - { - "name": "name", - "object_id": 17, - "column_id": 2 - }, - { - "name": "service_contract_id", - "object_id": 17, - "column_id": 3 - }, - { - "name": "local_service_id", - "object_id": 17, - "column_id": 4 - }, - { - "name": "remote_service_name", - "object_id": 17, - "column_id": 5 - }, - { - "name": "priority", - "object_id": 17, - "column_id": 6 - }, - { - "name": "dbid", - "object_id": 18, - "column_id": 1 - }, - { - "name": "fragid", - "object_id": 18, - "column_id": 2 - }, - { - "name": "name", - "object_id": 18, - "column_id": 3 - }, - { - "name": "brickid", - "object_id": 18, - "column_id": 4 - }, - { - "name": "pruid", - "object_id": 18, - "column_id": 5 - }, - { - "name": "status", - "object_id": 18, - "column_id": 6 - }, - { - "name": "fgid", - "object_id": 19, - "column_id": 1 - }, - { - "name": "fgfragid", - "object_id": 19, - "column_id": 2 - }, - { - "name": "dbfragid", - "object_id": 19, - "column_id": 3 - }, - { - "name": "phfgid", - "object_id": 19, - "column_id": 4 - }, - { - "name": "status", - "object_id": 19, - "column_id": 5 - }, - { - "name": "dbfragid", - "object_id": 20, - "column_id": 1 - }, - { - "name": "fileid", - "object_id": 20, - "column_id": 2 - }, - { - "name": "fileguid", - "object_id": 20, - "column_id": 3 - }, - { - "name": "pname", - "object_id": 20, - "column_id": 4 - }, - { - "name": "brickid", - "object_id": 21, - "column_id": 1 - }, - { - "name": "dbid", - "object_id": 21, - "column_id": 2 - }, - { - "name": "pruid", - "object_id": 21, - "column_id": 3 - }, - { - "name": "fragid", - "object_id": 21, - "column_id": 4 - }, - { - "name": "status", - "object_id": 21, - "column_id": 5 - }, - { - "name": "brickid", - "object_id": 22, - "column_id": 1 - }, - { - "name": "dbid", - "object_id": 22, - "column_id": 2 - }, - { - "name": "pruid", - "object_id": 22, - "column_id": 3 - }, - { - "name": "fileid", - "object_id": 22, - "column_id": 4 - }, - { - "name": "grpid", - "object_id": 22, - "column_id": 5 - }, - { - "name": "status", - "object_id": 22, - "column_id": 6 - }, - { - "name": "filetype", - "object_id": 22, - "column_id": 7 - }, - { - "name": "filestate", - "object_id": 22, - "column_id": 8 - }, - { - "name": "size", - "object_id": 22, - "column_id": 9 - }, - { - "name": "maxsize", - "object_id": 22, - "column_id": 10 - }, - { - "name": "growth", - "object_id": 22, - "column_id": 11 - }, - { - "name": "lname", - "object_id": 22, - "column_id": 12 - }, - { - "name": "pname", - "object_id": 22, - "column_id": 13 - }, - { - "name": "createlsn", - "object_id": 22, - "column_id": 14 - }, - { - "name": "droplsn", - "object_id": 22, - "column_id": 15 - }, - { - "name": "fileguid", - "object_id": 22, - "column_id": 16 - }, - { - "name": "internalstatus", - "object_id": 22, - "column_id": 17 - }, - { - "name": "readonlylsn", - "object_id": 22, - "column_id": 18 - }, - { - "name": "readwritelsn", - "object_id": 22, - "column_id": 19 - }, - { - "name": "readonlybaselsn", - "object_id": 22, - "column_id": 20 - }, - { - "name": "firstupdatelsn", - "object_id": 22, - "column_id": 21 - }, - { - "name": "lastupdatelsn", - "object_id": 22, - "column_id": 22 - }, - { - "name": "backuplsn", - "object_id": 22, - "column_id": 23 - }, - { - "name": "diffbaselsn", - "object_id": 22, - "column_id": 24 - }, - { - "name": "diffbaseguid", - "object_id": 22, - "column_id": 25 - }, - { - "name": "diffbasetime", - "object_id": 22, - "column_id": 26 - }, - { - "name": "diffbaseseclsn", - "object_id": 22, - "column_id": 27 - }, - { - "name": "redostartlsn", - "object_id": 22, - "column_id": 28 - }, - { - "name": "redotargetlsn", - "object_id": 22, - "column_id": 29 - }, - { - "name": "forkguid", - "object_id": 22, - "column_id": 30 - }, - { - "name": "forklsn", - "object_id": 22, - "column_id": 31 - }, - { - "name": "forkvc", - "object_id": 22, - "column_id": 32 - }, - { - "name": "redostartforkguid", - "object_id": 22, - "column_id": 33 - }, - { - "name": "dbfragid", - "object_id": 23, - "column_id": 1 - }, - { - "name": "phfgid", - "object_id": 23, - "column_id": 2 - }, - { - "name": "fgid", - "object_id": 23, - "column_id": 3 - }, - { - "name": "type", - "object_id": 23, - "column_id": 4 - }, - { - "name": "fgguid", - "object_id": 23, - "column_id": 5 - }, - { - "name": "lgfgid", - "object_id": 23, - "column_id": 6 - }, - { - "name": "status", - "object_id": 23, - "column_id": 7 - }, - { - "name": "name", - "object_id": 23, - "column_id": 8 - }, - { - "name": "dbfragid", - "object_id": 24, - "column_id": 1 - }, - { - "name": "fileid", - "object_id": 24, - "column_id": 2 - }, - { - "name": "grpid", - "object_id": 24, - "column_id": 3 - }, - { - "name": "status", - "object_id": 24, - "column_id": 4 - }, - { - "name": "filetype", - "object_id": 24, - "column_id": 5 - }, - { - "name": "filestate", - "object_id": 24, - "column_id": 6 - }, - { - "name": "size", - "object_id": 24, - "column_id": 7 - }, - { - "name": "maxsize", - "object_id": 24, - "column_id": 8 - }, - { - "name": "growth", - "object_id": 24, - "column_id": 9 - }, - { - "name": "lname", - "object_id": 24, - "column_id": 10 - }, - { - "name": "pname", - "object_id": 24, - "column_id": 11 - }, - { - "name": "createlsn", - "object_id": 24, - "column_id": 12 - }, - { - "name": "droplsn", - "object_id": 24, - "column_id": 13 - }, - { - "name": "fileguid", - "object_id": 24, - "column_id": 14 - }, - { - "name": "internalstatus", - "object_id": 24, - "column_id": 15 - }, - { - "name": "readonlylsn", - "object_id": 24, - "column_id": 16 - }, - { - "name": "readwritelsn", - "object_id": 24, - "column_id": 17 - }, - { - "name": "readonlybaselsn", - "object_id": 24, - "column_id": 18 - }, - { - "name": "firstupdatelsn", - "object_id": 24, - "column_id": 19 - }, - { - "name": "lastupdatelsn", - "object_id": 24, - "column_id": 20 - }, - { - "name": "backuplsn", - "object_id": 24, - "column_id": 21 - }, - { - "name": "diffbaselsn", - "object_id": 24, - "column_id": 22 - }, - { - "name": "diffbaseguid", - "object_id": 24, - "column_id": 23 - }, - { - "name": "diffbasetime", - "object_id": 24, - "column_id": 24 - }, - { - "name": "diffbaseseclsn", - "object_id": 24, - "column_id": 25 - }, - { - "name": "redostartlsn", - "object_id": 24, - "column_id": 26 - }, - { - "name": "redotargetlsn", - "object_id": 24, - "column_id": 27 - }, - { - "name": "forkguid", - "object_id": 24, - "column_id": 28 - }, - { - "name": "forklsn", - "object_id": 24, - "column_id": 29 - }, - { - "name": "forkvc", - "object_id": 24, - "column_id": 30 - }, - { - "name": "redostartforkguid", - "object_id": 24, - "column_id": 31 - }, - { - "name": "id", - "object_id": 25, - "column_id": 1 - }, - { - "name": "indid", - "object_id": 25, - "column_id": 2 - }, - { - "name": "status", - "object_id": 25, - "column_id": 3 - }, - { - "name": "crtype", - "object_id": 25, - "column_id": 4 - }, - { - "name": "crstart", - "object_id": 25, - "column_id": 5 - }, - { - "name": "crend", - "object_id": 25, - "column_id": 6 - }, - { - "name": "crrows", - "object_id": 25, - "column_id": 7 - }, - { - "name": "crerrors", - "object_id": 25, - "column_id": 8 - }, - { - "name": "crschver", - "object_id": 25, - "column_id": 9 - }, - { - "name": "crtsnext", - "object_id": 25, - "column_id": 10 - }, - { - "name": "sensitivity", - "object_id": 25, - "column_id": 11 - }, - { - "name": "bXVTDocidUseBaseT", - "object_id": 25, - "column_id": 12 - }, - { - "name": "batchsize", - "object_id": 25, - "column_id": 13 - }, - { - "name": "nextdocid", - "object_id": 25, - "column_id": 14 - }, - { - "name": "fgid", - "object_id": 25, - "column_id": 15 - }, - { - "name": "id", - "object_id": 27, - "column_id": 1 - }, - { - "name": "name", - "object_id": 27, - "column_id": 2 - }, - { - "name": "type", - "object_id": 27, - "column_id": 3 - }, - { - "name": "sid", - "object_id": 27, - "column_id": 4 - }, - { - "name": "password", - "object_id": 27, - "column_id": 5 - }, - { - "name": "dfltsch", - "object_id": 27, - "column_id": 6 - }, - { - "name": "status", - "object_id": 27, - "column_id": 7 - }, - { - "name": "created", - "object_id": 27, - "column_id": 8 - }, - { - "name": "modified", - "object_id": 27, - "column_id": 9 - }, - { - "name": "deflanguage", - "object_id": 27, - "column_id": 10 - }, - { - "name": "tenantid", - "object_id": 27, - "column_id": 11 - }, - { - "name": "onpremsid", - "object_id": 27, - "column_id": 12 - }, - { - "name": "externaloid", - "object_id": 27, - "column_id": 13 - }, - { - "name": "id", - "object_id": 28, - "column_id": 1 - }, - { - "name": "name", - "object_id": 28, - "column_id": 2 - }, - { - "name": "sid", - "object_id": 28, - "column_id": 3 - }, - { - "name": "status", - "object_id": 28, - "column_id": 4 - }, - { - "name": "status2", - "object_id": 28, - "column_id": 5 - }, - { - "name": "category", - "object_id": 28, - "column_id": 6 - }, - { - "name": "crdate", - "object_id": 28, - "column_id": 7 - }, - { - "name": "modified", - "object_id": 28, - "column_id": 8 - }, - { - "name": "svcbrkrguid", - "object_id": 28, - "column_id": 9 - }, - { - "name": "scope", - "object_id": 28, - "column_id": 10 - }, - { - "name": "cmptlevel", - "object_id": 28, - "column_id": 11 - }, - { - "name": "class", - "object_id": 29, - "column_id": 1 - }, - { - "name": "id", - "object_id": 29, - "column_id": 2 - }, - { - "name": "subid", - "object_id": 29, - "column_id": 3 - }, - { - "name": "grantee", - "object_id": 29, - "column_id": 4 - }, - { - "name": "grantor", - "object_id": 29, - "column_id": 5 - }, - { - "name": "type", - "object_id": 29, - "column_id": 6 - }, - { - "name": "state", - "object_id": 29, - "column_id": 7 - }, - { - "name": "id", - "object_id": 34, - "column_id": 1 - }, - { - "name": "name", - "object_id": 34, - "column_id": 2 - }, - { - "name": "nsid", - "object_id": 34, - "column_id": 3 - }, - { - "name": "nsclass", - "object_id": 34, - "column_id": 4 - }, - { - "name": "status", - "object_id": 34, - "column_id": 5 - }, - { - "name": "type", - "object_id": 34, - "column_id": 6 - }, - { - "name": "pid", - "object_id": 34, - "column_id": 7 - }, - { - "name": "pclass", - "object_id": 34, - "column_id": 8 - }, - { - "name": "intprop", - "object_id": 34, - "column_id": 9 - }, - { - "name": "created", - "object_id": 34, - "column_id": 10 - }, - { - "name": "modified", - "object_id": 34, - "column_id": 11 - }, - { - "name": "status2", - "object_id": 34, - "column_id": 12 - }, - { - "name": "hobt_id", - "object_id": 35, - "column_id": 1 - }, - { - "name": "segment_id", - "object_id": 35, - "column_id": 2 - }, - { - "name": "version", - "object_id": 35, - "column_id": 3 - }, - { - "name": "ds_hobtid", - "object_id": 35, - "column_id": 4 - }, - { - "name": "row_count", - "object_id": 35, - "column_id": 5 - }, - { - "name": "status", - "object_id": 35, - "column_id": 6 - }, - { - "name": "flags", - "object_id": 35, - "column_id": 7 - }, - { - "name": "compressed_reason", - "object_id": 35, - "column_id": 8 - }, - { - "name": "generation", - "object_id": 35, - "column_id": 9 - }, - { - "name": "created_time", - "object_id": 35, - "column_id": 10 - }, - { - "name": "closed_time", - "object_id": 35, - "column_id": 11 - }, - { - "name": "container_id", - "object_id": 35, - "column_id": 12 - }, - { - "name": "blob_id", - "object_id": 35, - "column_id": 13 - }, - { - "name": "metadata_offset", - "object_id": 35, - "column_id": 14 - }, - { - "name": "metadata_size", - "object_id": 35, - "column_id": 15 - }, - { - "name": "data_source_id", - "object_id": 36, - "column_id": 1 - }, - { - "name": "name", - "object_id": 36, - "column_id": 2 - }, - { - "name": "type_desc", - "object_id": 36, - "column_id": 3 - }, - { - "name": "type", - "object_id": 36, - "column_id": 4 - }, - { - "name": "location", - "object_id": 36, - "column_id": 5 - }, - { - "name": "credential_id", - "object_id": 36, - "column_id": 6 - }, - { - "name": "job_tracker_location", - "object_id": 36, - "column_id": 7 - }, - { - "name": "storage_key", - "object_id": 36, - "column_id": 8 - }, - { - "name": "user_name", - "object_id": 36, - "column_id": 9 - }, - { - "name": "shard_map_manager_db", - "object_id": 36, - "column_id": 10 - }, - { - "name": "shard_map_name", - "object_id": 36, - "column_id": 11 - }, - { - "name": "connection_options", - "object_id": 36, - "column_id": 12 - }, - { - "name": "pushdown", - "object_id": 36, - "column_id": 13 - }, - { - "name": "object_id", - "object_id": 37, - "column_id": 1 - }, - { - "name": "data_source_id", - "object_id": 37, - "column_id": 2 - }, - { - "name": "file_format_id", - "object_id": 37, - "column_id": 3 - }, - { - "name": "location", - "object_id": 37, - "column_id": 4 - }, - { - "name": "reject_type", - "object_id": 37, - "column_id": 5 - }, - { - "name": "reject_value", - "object_id": 37, - "column_id": 6 - }, - { - "name": "reject_sample_value", - "object_id": 37, - "column_id": 7 - }, - { - "name": "sharding_dist_type", - "object_id": 37, - "column_id": 8 - }, - { - "name": "sharding_col_id", - "object_id": 37, - "column_id": 9 - }, - { - "name": "source_schema_name", - "object_id": 37, - "column_id": 10 - }, - { - "name": "source_table_name", - "object_id": 37, - "column_id": 11 - }, - { - "name": "rejected_row_location", - "object_id": 37, - "column_id": 12 - }, - { - "name": "file_format_id", - "object_id": 38, - "column_id": 1 - }, - { - "name": "name", - "object_id": 38, - "column_id": 2 - }, - { - "name": "format_type", - "object_id": 38, - "column_id": 3 - }, - { - "name": "field_terminator", - "object_id": 38, - "column_id": 4 - }, - { - "name": "string_delimiter", - "object_id": 38, - "column_id": 5 - }, - { - "name": "date_format", - "object_id": 38, - "column_id": 6 - }, - { - "name": "use_type_default", - "object_id": 38, - "column_id": 7 - }, - { - "name": "serde_method", - "object_id": 38, - "column_id": 8 - }, - { - "name": "row_terminator", - "object_id": 38, - "column_id": 9 - }, - { - "name": "encoding", - "object_id": 38, - "column_id": 10 - }, - { - "name": "data_compression", - "object_id": 38, - "column_id": 11 - }, - { - "name": "first_row", - "object_id": 38, - "column_id": 12 - }, - { - "name": "extractor", - "object_id": 38, - "column_id": 13 - }, - { - "name": "null_values", - "object_id": 38, - "column_id": 14 - }, - { - "name": "parser_version", - "object_id": 38, - "column_id": 15 - }, - { - "name": "valclass", - "object_id": 40, - "column_id": 1 - }, - { - "name": "depid", - "object_id": 40, - "column_id": 2 - }, - { - "name": "depsubid", - "object_id": 40, - "column_id": 3 - }, - { - "name": "indepid", - "object_id": 40, - "column_id": 4 - }, - { - "name": "indepsubid", - "object_id": 40, - "column_id": 5 - }, - { - "name": "valnum", - "object_id": 40, - "column_id": 6 - }, - { - "name": "value", - "object_id": 40, - "column_id": 7 - }, - { - "name": "imageval", - "object_id": 40, - "column_id": 8 - }, - { - "name": "id", - "object_id": 41, - "column_id": 1 - }, - { - "name": "number", - "object_id": 41, - "column_id": 2 - }, - { - "name": "colid", - "object_id": 41, - "column_id": 3 - }, - { - "name": "name", - "object_id": 41, - "column_id": 4 - }, - { - "name": "xtype", - "object_id": 41, - "column_id": 5 - }, - { - "name": "utype", - "object_id": 41, - "column_id": 6 - }, - { - "name": "length", - "object_id": 41, - "column_id": 7 - }, - { - "name": "prec", - "object_id": 41, - "column_id": 8 - }, - { - "name": "scale", - "object_id": 41, - "column_id": 9 - }, - { - "name": "collationid", - "object_id": 41, - "column_id": 10 - }, - { - "name": "status", - "object_id": 41, - "column_id": 11 - }, - { - "name": "maxinrow", - "object_id": 41, - "column_id": 12 - }, - { - "name": "xmlns", - "object_id": 41, - "column_id": 13 - }, - { - "name": "dflt", - "object_id": 41, - "column_id": 14 - }, - { - "name": "chk", - "object_id": 41, - "column_id": 15 - }, - { - "name": "idtval", - "object_id": 41, - "column_id": 16 - }, - { - "name": "id", - "object_id": 42, - "column_id": 1 - }, - { - "name": "name", - "object_id": 42, - "column_id": 2 - }, - { - "name": "sid", - "object_id": 42, - "column_id": 3 - }, - { - "name": "status", - "object_id": 42, - "column_id": 4 - }, - { - "name": "type", - "object_id": 42, - "column_id": 5 - }, - { - "name": "crdate", - "object_id": 42, - "column_id": 6 - }, - { - "name": "modate", - "object_id": 42, - "column_id": 7 - }, - { - "name": "dbname", - "object_id": 42, - "column_id": 8 - }, - { - "name": "lang", - "object_id": 42, - "column_id": 9 - }, - { - "name": "pwdhash", - "object_id": 42, - "column_id": 10 - }, - { - "name": "tenantid", - "object_id": 42, - "column_id": 11 - }, - { - "name": "onpremsid", - "object_id": 42, - "column_id": 12 - }, - { - "name": "externaloid", - "object_id": 42, - "column_id": 13 - }, - { - "name": "id", - "object_id": 43, - "column_id": 1 - }, - { - "name": "name", - "object_id": 43, - "column_id": 2 - }, - { - "name": "product", - "object_id": 43, - "column_id": 3 - }, - { - "name": "provider", - "object_id": 43, - "column_id": 4 - }, - { - "name": "status", - "object_id": 43, - "column_id": 5 - }, - { - "name": "modate", - "object_id": 43, - "column_id": 6 - }, - { - "name": "catalog", - "object_id": 43, - "column_id": 7 - }, - { - "name": "cid", - "object_id": 43, - "column_id": 8 - }, - { - "name": "connecttimeout", - "object_id": 43, - "column_id": 9 - }, - { - "name": "querytimeout", - "object_id": 43, - "column_id": 10 - }, - { - "name": "class", - "object_id": 44, - "column_id": 1 - }, - { - "name": "id", - "object_id": 44, - "column_id": 2 - }, - { - "name": "name", - "object_id": 44, - "column_id": 3 - }, - { - "name": "nsid", - "object_id": 44, - "column_id": 4 - }, - { - "name": "status", - "object_id": 44, - "column_id": 5 - }, - { - "name": "intprop", - "object_id": 44, - "column_id": 6 - }, - { - "name": "created", - "object_id": 44, - "column_id": 7 - }, - { - "name": "modified", - "object_id": 44, - "column_id": 8 - }, - { - "name": "id", - "object_id": 45, - "column_id": 1 - }, - { - "name": "msglangid", - "object_id": 45, - "column_id": 2 - }, - { - "name": "severity", - "object_id": 45, - "column_id": 3 - }, - { - "name": "status", - "object_id": 45, - "column_id": 4 - }, - { - "name": "text", - "object_id": 45, - "column_id": 5 - }, - { - "name": "id", - "object_id": 46, - "column_id": 1 - }, - { - "name": "name", - "object_id": 46, - "column_id": 2 - }, - { - "name": "issuer", - "object_id": 46, - "column_id": 3 - }, - { - "name": "snum", - "object_id": 46, - "column_id": 4 - }, - { - "name": "thumbprint", - "object_id": 46, - "column_id": 5 - }, - { - "name": "pkey", - "object_id": 46, - "column_id": 6 - }, - { - "name": "encrtype", - "object_id": 46, - "column_id": 7 - }, - { - "name": "cert", - "object_id": 46, - "column_id": 8 - }, - { - "name": "status", - "object_id": 46, - "column_id": 9 - }, - { - "name": "lastpkeybackup", - "object_id": 46, - "column_id": 10 - }, - { - "name": "srvid", - "object_id": 47, - "column_id": 1 - }, - { - "name": "name", - "object_id": 47, - "column_id": 2 - }, - { - "name": "lgnid", - "object_id": 47, - "column_id": 3 - }, - { - "name": "status", - "object_id": 47, - "column_id": 4 - }, - { - "name": "modate", - "object_id": 47, - "column_id": 5 - }, - { - "name": "srvid", - "object_id": 48, - "column_id": 1 - }, - { - "name": "lgnid", - "object_id": 48, - "column_id": 2 - }, - { - "name": "name", - "object_id": 48, - "column_id": 3 - }, - { - "name": "status", - "object_id": 48, - "column_id": 4 - }, - { - "name": "modate", - "object_id": 48, - "column_id": 5 - }, - { - "name": "pwdhash", - "object_id": 48, - "column_id": 6 - }, - { - "name": "class", - "object_id": 49, - "column_id": 1 - }, - { - "name": "id", - "object_id": 49, - "column_id": 2 - }, - { - "name": "subid", - "object_id": 49, - "column_id": 3 - }, - { - "name": "name", - "object_id": 49, - "column_id": 4 - }, - { - "name": "value", - "object_id": 49, - "column_id": 5 - }, - { - "name": "id", - "object_id": 50, - "column_id": 1 - }, - { - "name": "schid", - "object_id": 50, - "column_id": 2 - }, - { - "name": "name", - "object_id": 50, - "column_id": 3 - }, - { - "name": "xtype", - "object_id": 50, - "column_id": 4 - }, - { - "name": "length", - "object_id": 50, - "column_id": 5 - }, - { - "name": "prec", - "object_id": 50, - "column_id": 6 - }, - { - "name": "scale", - "object_id": 50, - "column_id": 7 - }, - { - "name": "collationid", - "object_id": 50, - "column_id": 8 - }, - { - "name": "status", - "object_id": 50, - "column_id": 9 - }, - { - "name": "created", - "object_id": 50, - "column_id": 10 - }, - { - "name": "modified", - "object_id": 50, - "column_id": 11 - }, - { - "name": "dflt", - "object_id": 50, - "column_id": 12 - }, - { - "name": "chk", - "object_id": 50, - "column_id": 13 - }, - { - "name": "class", - "object_id": 51, - "column_id": 1 - }, - { - "name": "idmajor", - "object_id": 51, - "column_id": 2 - }, - { - "name": "subid", - "object_id": 51, - "column_id": 3 - }, - { - "name": "name", - "object_id": 51, - "column_id": 4 - }, - { - "name": "xtype", - "object_id": 51, - "column_id": 5 - }, - { - "name": "utype", - "object_id": 51, - "column_id": 6 - }, - { - "name": "length", - "object_id": 51, - "column_id": 7 - }, - { - "name": "prec", - "object_id": 51, - "column_id": 8 - }, - { - "name": "scale", - "object_id": 51, - "column_id": 9 - }, - { - "name": "collationid", - "object_id": 51, - "column_id": 10 - }, - { - "name": "status", - "object_id": 51, - "column_id": 11 - }, - { - "name": "intprop", - "object_id": 51, - "column_id": 12 - }, - { - "name": "id", - "object_id": 54, - "column_id": 1 - }, - { - "name": "indid", - "object_id": 54, - "column_id": 2 - }, - { - "name": "name", - "object_id": 54, - "column_id": 3 - }, - { - "name": "status", - "object_id": 54, - "column_id": 4 - }, - { - "name": "intprop", - "object_id": 54, - "column_id": 5 - }, - { - "name": "fillfact", - "object_id": 54, - "column_id": 6 - }, - { - "name": "type", - "object_id": 54, - "column_id": 7 - }, - { - "name": "tinyprop", - "object_id": 54, - "column_id": 8 - }, - { - "name": "dataspace", - "object_id": 54, - "column_id": 9 - }, - { - "name": "lobds", - "object_id": 54, - "column_id": 10 - }, - { - "name": "rowset", - "object_id": 54, - "column_id": 11 - }, - { - "name": "idmajor", - "object_id": 55, - "column_id": 1 - }, - { - "name": "idminor", - "object_id": 55, - "column_id": 2 - }, - { - "name": "subid", - "object_id": 55, - "column_id": 3 - }, - { - "name": "status", - "object_id": 55, - "column_id": 4 - }, - { - "name": "intprop", - "object_id": 55, - "column_id": 5 - }, - { - "name": "tinyprop1", - "object_id": 55, - "column_id": 6 - }, - { - "name": "tinyprop2", - "object_id": 55, - "column_id": 7 - }, - { - "name": "tinyprop3", - "object_id": 55, - "column_id": 8 - }, - { - "name": "tinyprop4", - "object_id": 55, - "column_id": 9 - }, - { - "name": "id", - "object_id": 56, - "column_id": 1 - }, - { - "name": "name", - "object_id": 56, - "column_id": 2 - }, - { - "name": "protocol", - "object_id": 56, - "column_id": 3 - }, - { - "name": "type", - "object_id": 56, - "column_id": 4 - }, - { - "name": "bstat", - "object_id": 56, - "column_id": 5 - }, - { - "name": "affinity", - "object_id": 56, - "column_id": 6 - }, - { - "name": "pstat", - "object_id": 56, - "column_id": 7 - }, - { - "name": "tstat", - "object_id": 56, - "column_id": 8 - }, - { - "name": "typeint", - "object_id": 56, - "column_id": 9 - }, - { - "name": "port1", - "object_id": 56, - "column_id": 10 - }, - { - "name": "port2", - "object_id": 56, - "column_id": 11 - }, - { - "name": "site", - "object_id": 56, - "column_id": 12 - }, - { - "name": "dfltns", - "object_id": 56, - "column_id": 13 - }, - { - "name": "wsdlproc", - "object_id": 56, - "column_id": 14 - }, - { - "name": "dfltdb", - "object_id": 56, - "column_id": 15 - }, - { - "name": "authrealm", - "object_id": 56, - "column_id": 16 - }, - { - "name": "dfltdm", - "object_id": 56, - "column_id": 17 - }, - { - "name": "maxconn", - "object_id": 56, - "column_id": 18 - }, - { - "name": "encalg", - "object_id": 56, - "column_id": 19 - }, - { - "name": "authtype", - "object_id": 56, - "column_id": 20 - }, - { - "name": "encryptiontype", - "object_id": 56, - "column_id": 21 - }, - { - "name": "id", - "object_id": 57, - "column_id": 1 - }, - { - "name": "nmspace", - "object_id": 57, - "column_id": 2 - }, - { - "name": "alias", - "object_id": 57, - "column_id": 3 - }, - { - "name": "objname", - "object_id": 57, - "column_id": 4 - }, - { - "name": "status", - "object_id": 57, - "column_id": 5 - }, - { - "name": "class", - "object_id": 58, - "column_id": 1 - }, - { - "name": "id", - "object_id": 58, - "column_id": 2 - }, - { - "name": "nsid", - "object_id": 58, - "column_id": 3 - }, - { - "name": "name", - "object_id": 58, - "column_id": 4 - }, - { - "name": "status", - "object_id": 58, - "column_id": 5 - }, - { - "name": "type", - "object_id": 58, - "column_id": 6 - }, - { - "name": "intprop", - "object_id": 58, - "column_id": 7 - }, - { - "name": "created", - "object_id": 58, - "column_id": 8 - }, - { - "name": "modified", - "object_id": 58, - "column_id": 9 - }, - { - "name": "class", - "object_id": 59, - "column_id": 1 - }, - { - "name": "id", - "object_id": 59, - "column_id": 2 - }, - { - "name": "subid", - "object_id": 59, - "column_id": 3 - }, - { - "name": "grantee", - "object_id": 59, - "column_id": 4 - }, - { - "name": "audit_spec_id", - "object_id": 59, - "column_id": 5 - }, - { - "name": "type", - "object_id": 59, - "column_id": 6 - }, - { - "name": "state", - "object_id": 59, - "column_id": 7 - }, - { - "name": "valclass", - "object_id": 60, - "column_id": 1 - }, - { - "name": "objid", - "object_id": 60, - "column_id": 2 - }, - { - "name": "subobjid", - "object_id": 60, - "column_id": 3 - }, - { - "name": "valnum", - "object_id": 60, - "column_id": 4 - }, - { - "name": "value", - "object_id": 60, - "column_id": 5 - }, - { - "name": "imageval", - "object_id": 60, - "column_id": 6 - }, - { - "name": "hobt_id", - "object_id": 62, - "column_id": 1 - }, - { - "name": "column_id", - "object_id": 62, - "column_id": 2 - }, - { - "name": "segment_id", - "object_id": 62, - "column_id": 3 - }, - { - "name": "version", - "object_id": 62, - "column_id": 4 - }, - { - "name": "encoding_type", - "object_id": 62, - "column_id": 5 - }, - { - "name": "row_count", - "object_id": 62, - "column_id": 6 - }, - { - "name": "status", - "object_id": 62, - "column_id": 7 - }, - { - "name": "base_id", - "object_id": 62, - "column_id": 8 - }, - { - "name": "magnitude", - "object_id": 62, - "column_id": 9 - }, - { - "name": "primary_dictionary_id", - "object_id": 62, - "column_id": 10 - }, - { - "name": "secondary_dictionary_id", - "object_id": 62, - "column_id": 11 - }, - { - "name": "min_data_id", - "object_id": 62, - "column_id": 12 - }, - { - "name": "max_data_id", - "object_id": 62, - "column_id": 13 - }, - { - "name": "null_value", - "object_id": 62, - "column_id": 14 - }, - { - "name": "on_disk_size", - "object_id": 62, - "column_id": 15 - }, - { - "name": "data_ptr", - "object_id": 62, - "column_id": 16 - }, - { - "name": "container_id", - "object_id": 62, - "column_id": 17 - }, - { - "name": "bloom_filter_md", - "object_id": 62, - "column_id": 18 - }, - { - "name": "bloom_filter_data_ptr", - "object_id": 62, - "column_id": 19 - }, - { - "name": "collation_id", - "object_id": 62, - "column_id": 20 - }, - { - "name": "min_deep_data", - "object_id": 62, - "column_id": 21 - }, - { - "name": "max_deep_data", - "object_id": 62, - "column_id": 22 - }, - { - "name": "hobt_id", - "object_id": 63, - "column_id": 1 - }, - { - "name": "column_id", - "object_id": 63, - "column_id": 2 - }, - { - "name": "dictionary_id", - "object_id": 63, - "column_id": 3 - }, - { - "name": "version", - "object_id": 63, - "column_id": 4 - }, - { - "name": "type", - "object_id": 63, - "column_id": 5 - }, - { - "name": "flags", - "object_id": 63, - "column_id": 6 - }, - { - "name": "last_id", - "object_id": 63, - "column_id": 7 - }, - { - "name": "entry_count", - "object_id": 63, - "column_id": 8 - }, - { - "name": "on_disk_size", - "object_id": 63, - "column_id": 9 - }, - { - "name": "data_ptr", - "object_id": 63, - "column_id": 10 - }, - { - "name": "container_id", - "object_id": 63, - "column_id": 11 - }, - { - "name": "class", - "object_id": 64, - "column_id": 1 - }, - { - "name": "id", - "object_id": 64, - "column_id": 2 - }, - { - "name": "name", - "object_id": 64, - "column_id": 3 - }, - { - "name": "status", - "object_id": 64, - "column_id": 4 - }, - { - "name": "type", - "object_id": 64, - "column_id": 5 - }, - { - "name": "intprop", - "object_id": 64, - "column_id": 6 - }, - { - "name": "created", - "object_id": 64, - "column_id": 7 - }, - { - "name": "modified", - "object_id": 64, - "column_id": 8 - }, - { - "name": "class", - "object_id": 65, - "column_id": 1 - }, - { - "name": "objid", - "object_id": 65, - "column_id": 2 - }, - { - "name": "indexid", - "object_id": 65, - "column_id": 3 - }, - { - "name": "rowsetnum", - "object_id": 65, - "column_id": 4 - }, - { - "name": "rowsetid", - "object_id": 65, - "column_id": 5 - }, - { - "name": "status", - "object_id": 65, - "column_id": 6 - }, - { - "name": "id", - "object_id": 67, - "column_id": 1 - }, - { - "name": "name", - "object_id": 67, - "column_id": 2 - }, - { - "name": "scid", - "object_id": 67, - "column_id": 3 - }, - { - "name": "remsvc", - "object_id": 67, - "column_id": 4 - }, - { - "name": "status", - "object_id": 67, - "column_id": 5 - }, - { - "name": "dlgid", - "object_id": 68, - "column_id": 1 - }, - { - "name": "finitiator", - "object_id": 68, - "column_id": 2 - }, - { - "name": "tosvc", - "object_id": 68, - "column_id": 3 - }, - { - "name": "tobrkrinst", - "object_id": 68, - "column_id": 4 - }, - { - "name": "fromsvc", - "object_id": 68, - "column_id": 5 - }, - { - "name": "frombrkrinst", - "object_id": 68, - "column_id": 6 - }, - { - "name": "svccontr", - "object_id": 68, - "column_id": 7 - }, - { - "name": "msgseqnum", - "object_id": 68, - "column_id": 8 - }, - { - "name": "msgtype", - "object_id": 68, - "column_id": 9 - }, - { - "name": "unackmfn", - "object_id": 68, - "column_id": 10 - }, - { - "name": "status", - "object_id": 68, - "column_id": 11 - }, - { - "name": "enqtime", - "object_id": 68, - "column_id": 12 - }, - { - "name": "rsndtime", - "object_id": 68, - "column_id": 13 - }, - { - "name": "dlgerr", - "object_id": 68, - "column_id": 14 - }, - { - "name": "msgid", - "object_id": 68, - "column_id": 15 - }, - { - "name": "hdrpartlen", - "object_id": 68, - "column_id": 16 - }, - { - "name": "hdrseclen", - "object_id": 68, - "column_id": 17 - }, - { - "name": "msgenc", - "object_id": 68, - "column_id": 18 - }, - { - "name": "msgbodylen", - "object_id": 68, - "column_id": 19 - }, - { - "name": "msgbody", - "object_id": 68, - "column_id": 20 - }, - { - "name": "msgref", - "object_id": 68, - "column_id": 21 - }, - { - "name": "id", - "object_id": 69, - "column_id": 1 - }, - { - "name": "name", - "object_id": 69, - "column_id": 2 - }, - { - "name": "remsvc", - "object_id": 69, - "column_id": 3 - }, - { - "name": "brkrinst", - "object_id": 69, - "column_id": 4 - }, - { - "name": "addr", - "object_id": 69, - "column_id": 5 - }, - { - "name": "miraddr", - "object_id": 69, - "column_id": 6 - }, - { - "name": "lifetime", - "object_id": 69, - "column_id": 7 - }, - { - "name": "id", - "object_id": 71, - "column_id": 1 - }, - { - "name": "service_id", - "object_id": 71, - "column_id": 2 - }, - { - "name": "status", - "object_id": 71, - "column_id": 3 - }, - { - "name": "refcount", - "object_id": 71, - "column_id": 4 - }, - { - "name": "handle", - "object_id": 72, - "column_id": 1 - }, - { - "name": "diagid", - "object_id": 72, - "column_id": 2 - }, - { - "name": "initiator", - "object_id": 72, - "column_id": 3 - }, - { - "name": "sendseq", - "object_id": 72, - "column_id": 4 - }, - { - "name": "sendxact", - "object_id": 72, - "column_id": 5 - }, - { - "name": "diagid", - "object_id": 73, - "column_id": 1 - }, - { - "name": "initiator", - "object_id": 73, - "column_id": 2 - }, - { - "name": "handle", - "object_id": 73, - "column_id": 3 - }, - { - "name": "rcvseq", - "object_id": 73, - "column_id": 4 - }, - { - "name": "rcvfrag", - "object_id": 73, - "column_id": 5 - }, - { - "name": "status", - "object_id": 73, - "column_id": 6 - }, - { - "name": "state", - "object_id": 73, - "column_id": 7 - }, - { - "name": "lifetime", - "object_id": 73, - "column_id": 8 - }, - { - "name": "contract", - "object_id": 73, - "column_id": 9 - }, - { - "name": "svcid", - "object_id": 73, - "column_id": 10 - }, - { - "name": "convgroup", - "object_id": 73, - "column_id": 11 - }, - { - "name": "sysseq", - "object_id": 73, - "column_id": 12 - }, - { - "name": "enddlgseq", - "object_id": 73, - "column_id": 13 - }, - { - "name": "firstoorder", - "object_id": 73, - "column_id": 14 - }, - { - "name": "lastoorder", - "object_id": 73, - "column_id": 15 - }, - { - "name": "lastoorderfr", - "object_id": 73, - "column_id": 16 - }, - { - "name": "dlgtimer", - "object_id": 73, - "column_id": 17 - }, - { - "name": "dlgopened", - "object_id": 73, - "column_id": 18 - }, - { - "name": "princid", - "object_id": 73, - "column_id": 19 - }, - { - "name": "outseskey", - "object_id": 73, - "column_id": 20 - }, - { - "name": "outseskeyid", - "object_id": 73, - "column_id": 21 - }, - { - "name": "farprincid", - "object_id": 73, - "column_id": 22 - }, - { - "name": "inseskey", - "object_id": 73, - "column_id": 23 - }, - { - "name": "inseskeyid", - "object_id": 73, - "column_id": 24 - }, - { - "name": "farsvc", - "object_id": 73, - "column_id": 25 - }, - { - "name": "farbrkrinst", - "object_id": 73, - "column_id": 26 - }, - { - "name": "priority", - "object_id": 73, - "column_id": 27 - }, - { - "name": "class", - "object_id": 74, - "column_id": 1 - }, - { - "name": "depid", - "object_id": 74, - "column_id": 2 - }, - { - "name": "depsubid", - "object_id": 74, - "column_id": 3 - }, - { - "name": "indepid", - "object_id": 74, - "column_id": 4 - }, - { - "name": "indepsubid", - "object_id": 74, - "column_id": 5 - }, - { - "name": "status", - "object_id": 74, - "column_id": 6 - }, - { - "name": "class", - "object_id": 75, - "column_id": 1 - }, - { - "name": "depid", - "object_id": 75, - "column_id": 2 - }, - { - "name": "depsubid", - "object_id": 75, - "column_id": 3 - }, - { - "name": "indepid", - "object_id": 75, - "column_id": 4 - }, - { - "name": "indepsubid", - "object_id": 75, - "column_id": 5 - }, - { - "name": "status", - "object_id": 75, - "column_id": 6 - }, - { - "name": "class", - "object_id": 78, - "column_id": 1 - }, - { - "name": "id", - "object_id": 78, - "column_id": 2 - }, - { - "name": "subid", - "object_id": 78, - "column_id": 3 - }, - { - "name": "guid", - "object_id": 78, - "column_id": 4 - }, - { - "name": "status", - "object_id": 78, - "column_id": 5 - }, - { - "name": "id", - "object_id": 79, - "column_id": 1 - }, - { - "name": "lsn", - "object_id": 79, - "column_id": 2 - }, - { - "name": "epoch", - "object_id": 79, - "column_id": 3 - }, - { - "name": "csn", - "object_id": 79, - "column_id": 4 - }, - { - "name": "created", - "object_id": 79, - "column_id": 5 - }, - { - "name": "lsid", - "object_id": 80, - "column_id": 1 - }, - { - "name": "iname", - "object_id": 80, - "column_id": 2 - }, - { - "name": "ipipename", - "object_id": 80, - "column_id": 3 - }, - { - "name": "pid", - "object_id": 80, - "column_id": 4 - }, - { - "name": "status", - "object_id": 80, - "column_id": 5 - }, - { - "name": "crdate", - "object_id": 80, - "column_id": 6 - }, - { - "name": "modate", - "object_id": 80, - "column_id": 7 - }, - { - "name": "sysdbpath", - "object_id": 80, - "column_id": 8 - }, - { - "name": "cprelid", - "object_id": 82, - "column_id": 1 - }, - { - "name": "fragid", - "object_id": 82, - "column_id": 2 - }, - { - "name": "fragobjid", - "object_id": 82, - "column_id": 3 - }, - { - "name": "ts", - "object_id": 82, - "column_id": 4 - }, - { - "name": "status", - "object_id": 82, - "column_id": 5 - }, - { - "name": "datasize", - "object_id": 82, - "column_id": 6 - }, - { - "name": "itemcnt", - "object_id": 82, - "column_id": 7 - }, - { - "name": "rowcnt", - "object_id": 82, - "column_id": 8 - }, - { - "name": "database_id", - "object_id": 84, - "column_id": 1 - }, - { - "name": "register_date", - "object_id": 84, - "column_id": 2 - }, - { - "name": "registered_by", - "object_id": 84, - "column_id": 3 - }, - { - "name": "version", - "object_id": 84, - "column_id": 4 - }, - { - "name": "fileguid", - "object_id": 84, - "column_id": 5 - }, - { - "name": "stoplistid", - "object_id": 85, - "column_id": 1 - }, - { - "name": "stopword", - "object_id": 85, - "column_id": 2 - }, - { - "name": "lcid", - "object_id": 85, - "column_id": 3 - }, - { - "name": "status", - "object_id": 85, - "column_id": 4 - }, - { - "name": "property_list_id", - "object_id": 86, - "column_id": 1 - }, - { - "name": "property_id", - "object_id": 86, - "column_id": 2 - }, - { - "name": "property_name", - "object_id": 86, - "column_id": 3 - }, - { - "name": "guid_identifier", - "object_id": 86, - "column_id": 4 - }, - { - "name": "int_identifier", - "object_id": 86, - "column_id": 5 - }, - { - "name": "string_description", - "object_id": 86, - "column_id": 6 - }, - { - "name": "msgref", - "object_id": 87, - "column_id": 1 - }, - { - "name": "count", - "object_id": 87, - "column_id": 2 - }, - { - "name": "msgbody", - "object_id": 87, - "column_id": 3 - }, - { - "name": "id", - "object_id": 89, - "column_id": 1 - }, - { - "name": "tgid", - "object_id": 89, - "column_id": 2 - }, - { - "name": "low", - "object_id": 89, - "column_id": 3 - }, - { - "name": "high", - "object_id": 89, - "column_id": 4 - }, - { - "name": "rowcnt", - "object_id": 89, - "column_id": 5 - }, - { - "name": "size", - "object_id": 89, - "column_id": 6 - }, - { - "name": "csn", - "object_id": 89, - "column_id": 7 - }, - { - "name": "epoch", - "object_id": 89, - "column_id": 8 - }, - { - "name": "status", - "object_id": 89, - "column_id": 9 - }, - { - "name": "history", - "object_id": 89, - "column_id": 10 - }, - { - "name": "created", - "object_id": 89, - "column_id": 11 - }, - { - "name": "modified", - "object_id": 89, - "column_id": 12 - }, - { - "name": "qid", - "object_id": 90, - "column_id": 1 - }, - { - "name": "hash", - "object_id": 90, - "column_id": 2 - }, - { - "name": "nid", - "object_id": 90, - "column_id": 3 - }, - { - "name": "name", - "object_id": 90, - "column_id": 4 - }, - { - "name": "id", - "object_id": 91, - "column_id": 1 - }, - { - "name": "xsdid", - "object_id": 91, - "column_id": 2 - }, - { - "name": "uriord", - "object_id": 91, - "column_id": 3 - }, - { - "name": "qual", - "object_id": 91, - "column_id": 4 - }, - { - "name": "nameid", - "object_id": 91, - "column_id": 5 - }, - { - "name": "symspace", - "object_id": 91, - "column_id": 6 - }, - { - "name": "nmscope", - "object_id": 91, - "column_id": 7 - }, - { - "name": "kind", - "object_id": 91, - "column_id": 8 - }, - { - "name": "deriv", - "object_id": 91, - "column_id": 9 - }, - { - "name": "status", - "object_id": 91, - "column_id": 10 - }, - { - "name": "enum", - "object_id": 91, - "column_id": 11 - }, - { - "name": "defval", - "object_id": 91, - "column_id": 12 - }, - { - "name": "compid", - "object_id": 92, - "column_id": 1 - }, - { - "name": "ord", - "object_id": 92, - "column_id": 2 - }, - { - "name": "kind", - "object_id": 92, - "column_id": 3 - }, - { - "name": "status", - "object_id": 92, - "column_id": 4 - }, - { - "name": "dflt", - "object_id": 92, - "column_id": 5 - }, - { - "name": "placingid", - "object_id": 93, - "column_id": 1 - }, - { - "name": "ordinal", - "object_id": 93, - "column_id": 2 - }, - { - "name": "placedid", - "object_id": 93, - "column_id": 3 - }, - { - "name": "status", - "object_id": 93, - "column_id": 4 - }, - { - "name": "minoccur", - "object_id": 93, - "column_id": 5 - }, - { - "name": "maxoccur", - "object_id": 93, - "column_id": 6 - }, - { - "name": "defval", - "object_id": 93, - "column_id": 7 - }, - { - "name": "class", - "object_id": 94, - "column_id": 1 - }, - { - "name": "id", - "object_id": 94, - "column_id": 2 - }, - { - "name": "thumbprint", - "object_id": 94, - "column_id": 3 - }, - { - "name": "type", - "object_id": 94, - "column_id": 4 - }, - { - "name": "crypto", - "object_id": 94, - "column_id": 5 - }, - { - "name": "status", - "object_id": 94, - "column_id": 6 - }, - { - "name": "id", - "object_id": 95, - "column_id": 1 - }, - { - "name": "name", - "object_id": 95, - "column_id": 2 - }, - { - "name": "thumbprint", - "object_id": 95, - "column_id": 3 - }, - { - "name": "bitlength", - "object_id": 95, - "column_id": 4 - }, - { - "name": "algorithm", - "object_id": 95, - "column_id": 5 - }, - { - "name": "modified", - "object_id": 95, - "column_id": 6 - }, - { - "name": "pkey", - "object_id": 95, - "column_id": 7 - }, - { - "name": "encrtype", - "object_id": 95, - "column_id": 8 - }, - { - "name": "pukey", - "object_id": 95, - "column_id": 9 - }, - { - "name": "id", - "object_id": 96, - "column_id": 1 - }, - { - "name": "name", - "object_id": 96, - "column_id": 2 - }, - { - "name": "scopetype", - "object_id": 96, - "column_id": 3 - }, - { - "name": "scopeid", - "object_id": 96, - "column_id": 4 - }, - { - "name": "hash", - "object_id": 96, - "column_id": 5 - }, - { - "name": "status", - "object_id": 96, - "column_id": 6 - }, - { - "name": "created", - "object_id": 96, - "column_id": 7 - }, - { - "name": "modified", - "object_id": 96, - "column_id": 8 - }, - { - "name": "batchtext", - "object_id": 96, - "column_id": 9 - }, - { - "name": "paramorhinttext", - "object_id": 96, - "column_id": 10 - }, - { - "name": "class", - "object_id": 97, - "column_id": 1 - }, - { - "name": "idmajor", - "object_id": 97, - "column_id": 2 - }, - { - "name": "subid", - "object_id": 97, - "column_id": 3 - }, - { - "name": "name", - "object_id": 97, - "column_id": 4 - }, - { - "name": "status", - "object_id": 97, - "column_id": 5 - }, - { - "name": "intprop", - "object_id": 97, - "column_id": 6 - }, - { - "name": "depclass", - "object_id": 98, - "column_id": 1 - }, - { - "name": "depid", - "object_id": 98, - "column_id": 2 - }, - { - "name": "indepclass", - "object_id": 98, - "column_id": 3 - }, - { - "name": "indepname", - "object_id": 98, - "column_id": 4 - }, - { - "name": "indepschema", - "object_id": 98, - "column_id": 5 - }, - { - "name": "indepdb", - "object_id": 98, - "column_id": 6 - }, - { - "name": "indepserver", - "object_id": 98, - "column_id": 7 - }, - { - "name": "number", - "object_id": 98, - "column_id": 8 - }, - { - "name": "status", - "object_id": 98, - "column_id": 9 - }, - { - "name": "job_id", - "object_id": 101575400, - "column_id": 1 - }, - { - "name": "name", - "object_id": 101575400, - "column_id": 2 - }, - { - "name": "enabled", - "object_id": 101575400, - "column_id": 3 - }, - { - "name": "description", - "object_id": 101575400, - "column_id": 4 - }, - { - "name": "start_step_id", - "object_id": 101575400, - "column_id": 5 - }, - { - "name": "notify_level_eventlog", - "object_id": 101575400, - "column_id": 6 - }, - { - "name": "delete_level", - "object_id": 101575400, - "column_id": 7 - }, - { - "name": "date_created", - "object_id": 101575400, - "column_id": 8 - }, - { - "name": "date_modified", - "object_id": 101575400, - "column_id": 9 - }, - { - "name": "job_id", - "object_id": 117575457, - "column_id": 1 - }, - { - "name": "step_id", - "object_id": 117575457, - "column_id": 2 - }, - { - "name": "step_name", - "object_id": 117575457, - "column_id": 3 - }, - { - "name": "subsystem", - "object_id": 117575457, - "column_id": 4 - }, - { - "name": "command", - "object_id": 117575457, - "column_id": 5 - }, - { - "name": "flags", - "object_id": 117575457, - "column_id": 6 - }, - { - "name": "additional_parameters", - "object_id": 117575457, - "column_id": 7 - }, - { - "name": "cmdexec_success_code", - "object_id": 117575457, - "column_id": 8 - }, - { - "name": "on_success_action", - "object_id": 117575457, - "column_id": 9 - }, - { - "name": "on_success_step_id", - "object_id": 117575457, - "column_id": 10 - }, - { - "name": "on_fail_action", - "object_id": 117575457, - "column_id": 11 - }, - { - "name": "on_fail_step_id", - "object_id": 117575457, - "column_id": 12 - }, - { - "name": "server", - "object_id": 117575457, - "column_id": 13 - }, - { - "name": "database_name", - "object_id": 117575457, - "column_id": 14 - }, - { - "name": "database_user_name", - "object_id": 117575457, - "column_id": 15 - }, - { - "name": "retry_attempts", - "object_id": 117575457, - "column_id": 16 - }, - { - "name": "retry_interval", - "object_id": 117575457, - "column_id": 17 - }, - { - "name": "os_run_priority", - "object_id": 117575457, - "column_id": 18 - }, - { - "name": "output_file_name", - "object_id": 117575457, - "column_id": 19 - }, - { - "name": "last_run_outcome", - "object_id": 117575457, - "column_id": 20 - }, - { - "name": "last_run_duration", - "object_id": 117575457, - "column_id": 21 - }, - { - "name": "last_run_retries", - "object_id": 117575457, - "column_id": 22 - }, - { - "name": "last_run_date", - "object_id": 117575457, - "column_id": 23 - }, - { - "name": "last_run_time", - "object_id": 117575457, - "column_id": 24 - }, - { - "name": "step_uid", - "object_id": 117575457, - "column_id": 25 - }, - { - "name": "instance_id", - "object_id": 133575514, - "column_id": 1 - }, - { - "name": "job_id", - "object_id": 133575514, - "column_id": 2 - }, - { - "name": "step_id", - "object_id": 133575514, - "column_id": 3 - }, - { - "name": "sql_message_id", - "object_id": 133575514, - "column_id": 4 - }, - { - "name": "sql_severity", - "object_id": 133575514, - "column_id": 5 - }, - { - "name": "message", - "object_id": 133575514, - "column_id": 6 - }, - { - "name": "run_status", - "object_id": 133575514, - "column_id": 7 - }, - { - "name": "run_date", - "object_id": 133575514, - "column_id": 8 - }, - { - "name": "run_time", - "object_id": 133575514, - "column_id": 9 - }, - { - "name": "run_duration", - "object_id": 133575514, - "column_id": 10 - }, - { - "name": "operator_id_emailed", - "object_id": 133575514, - "column_id": 11 - }, - { - "name": "operator_id_paged", - "object_id": 133575514, - "column_id": 12 - }, - { - "name": "retries_attempted", - "object_id": 133575514, - "column_id": 13 - }, - { - "name": "log_id", - "object_id": 149575571, - "column_id": 1 - }, - { - "name": "log_text", - "object_id": 149575571, - "column_id": 2 - }, - { - "name": "date_created", - "object_id": 149575571, - "column_id": 3 - }, - { - "name": "step_uid", - "object_id": 149575571, - "column_id": 4 - }, - { - "name": "query_text_id", - "object_id": 165575628, - "column_id": 1 - }, - { - "name": "query_sql_text", - "object_id": 165575628, - "column_id": 2 - }, - { - "name": "statement_sql_handle", - "object_id": 165575628, - "column_id": 3 - }, - { - "name": "is_part_of_encrypted_module", - "object_id": 165575628, - "column_id": 4 - }, - { - "name": "has_restricted_text", - "object_id": 165575628, - "column_id": 5 - }, - { - "name": "query_template_hash", - "object_id": 165575628, - "column_id": 6 - }, - { - "name": "query_id", - "object_id": 181575685, - "column_id": 1 - }, - { - "name": "query_text_id", - "object_id": 181575685, - "column_id": 2 - }, - { - "name": "context_settings_id", - "object_id": 181575685, - "column_id": 3 - }, - { - "name": "object_id", - "object_id": 181575685, - "column_id": 4 - }, - { - "name": "batch_sql_handle", - "object_id": 181575685, - "column_id": 5 - }, - { - "name": "query_hash", - "object_id": 181575685, - "column_id": 6 - }, - { - "name": "is_internal_query", - "object_id": 181575685, - "column_id": 7 - }, - { - "name": "query_param_type", - "object_id": 181575685, - "column_id": 8 - }, - { - "name": "initial_compile_start_time", - "object_id": 181575685, - "column_id": 9 - }, - { - "name": "last_compile_start_time", - "object_id": 181575685, - "column_id": 10 - }, - { - "name": "last_execution_time", - "object_id": 181575685, - "column_id": 11 - }, - { - "name": "last_compile_batch_sql_handle", - "object_id": 181575685, - "column_id": 12 - }, - { - "name": "last_compile_batch_offset_start", - "object_id": 181575685, - "column_id": 13 - }, - { - "name": "last_compile_batch_offset_end", - "object_id": 181575685, - "column_id": 14 - }, - { - "name": "compile_count", - "object_id": 181575685, - "column_id": 15 - }, - { - "name": "total_compile_duration", - "object_id": 181575685, - "column_id": 16 - }, - { - "name": "last_compile_duration", - "object_id": 181575685, - "column_id": 17 - }, - { - "name": "total_parse_duration", - "object_id": 181575685, - "column_id": 18 - }, - { - "name": "last_parse_duration", - "object_id": 181575685, - "column_id": 19 - }, - { - "name": "total_parse_cpu_time", - "object_id": 181575685, - "column_id": 20 - }, - { - "name": "last_parse_cpu_time", - "object_id": 181575685, - "column_id": 21 - }, - { - "name": "total_bind_duration", - "object_id": 181575685, - "column_id": 22 - }, - { - "name": "last_bind_duration", - "object_id": 181575685, - "column_id": 23 - }, - { - "name": "total_bind_cpu_time", - "object_id": 181575685, - "column_id": 24 - }, - { - "name": "last_bind_cpu_time", - "object_id": 181575685, - "column_id": 25 - }, - { - "name": "total_optimize_duration", - "object_id": 181575685, - "column_id": 26 - }, - { - "name": "last_optimize_duration", - "object_id": 181575685, - "column_id": 27 - }, - { - "name": "total_optimize_cpu_time", - "object_id": 181575685, - "column_id": 28 - }, - { - "name": "last_optimize_cpu_time", - "object_id": 181575685, - "column_id": 29 - }, - { - "name": "total_compile_memory_kb", - "object_id": 181575685, - "column_id": 30 - }, - { - "name": "last_compile_memory_kb", - "object_id": 181575685, - "column_id": 31 - }, - { - "name": "max_compile_memory_kb", - "object_id": 181575685, - "column_id": 32 - }, - { - "name": "status", - "object_id": 181575685, - "column_id": 33 - }, - { - "name": "statement_sql_handle", - "object_id": 181575685, - "column_id": 34 - }, - { - "name": "query_flags", - "object_id": 181575685, - "column_id": 35 - }, - { - "name": "plan_id", - "object_id": 197575742, - "column_id": 1 - }, - { - "name": "query_id", - "object_id": 197575742, - "column_id": 2 - }, - { - "name": "plan_group_id", - "object_id": 197575742, - "column_id": 3 - }, - { - "name": "engine_version", - "object_id": 197575742, - "column_id": 4 - }, - { - "name": "query_plan_hash", - "object_id": 197575742, - "column_id": 5 - }, - { - "name": "query_plan", - "object_id": 197575742, - "column_id": 6 - }, - { - "name": "is_online_index_plan", - "object_id": 197575742, - "column_id": 7 - }, - { - "name": "is_trivial_plan", - "object_id": 197575742, - "column_id": 8 - }, - { - "name": "is_parallel_plan", - "object_id": 197575742, - "column_id": 9 - }, - { - "name": "is_forced_plan", - "object_id": 197575742, - "column_id": 10 - }, - { - "name": "force_failure_count", - "object_id": 197575742, - "column_id": 11 - }, - { - "name": "last_force_failure_reason", - "object_id": 197575742, - "column_id": 12 - }, - { - "name": "count_compiles", - "object_id": 197575742, - "column_id": 13 - }, - { - "name": "initial_compile_start_time", - "object_id": 197575742, - "column_id": 14 - }, - { - "name": "last_compile_start_time", - "object_id": 197575742, - "column_id": 15 - }, - { - "name": "last_execution_time", - "object_id": 197575742, - "column_id": 16 - }, - { - "name": "total_compile_duration", - "object_id": 197575742, - "column_id": 17 - }, - { - "name": "last_compile_duration", - "object_id": 197575742, - "column_id": 18 - }, - { - "name": "compatibility_level", - "object_id": 197575742, - "column_id": 19 - }, - { - "name": "plan_flags", - "object_id": 197575742, - "column_id": 20 - }, - { - "name": "runtime_stats_id", - "object_id": 213575799, - "column_id": 1 - }, - { - "name": "plan_id", - "object_id": 213575799, - "column_id": 2 - }, - { - "name": "runtime_stats_interval_id", - "object_id": 213575799, - "column_id": 3 - }, - { - "name": "execution_type", - "object_id": 213575799, - "column_id": 4 - }, - { - "name": "first_execution_time", - "object_id": 213575799, - "column_id": 5 - }, - { - "name": "last_execution_time", - "object_id": 213575799, - "column_id": 6 - }, - { - "name": "count_executions", - "object_id": 213575799, - "column_id": 7 - }, - { - "name": "total_duration", - "object_id": 213575799, - "column_id": 8 - }, - { - "name": "last_duration", - "object_id": 213575799, - "column_id": 9 - }, - { - "name": "min_duration", - "object_id": 213575799, - "column_id": 10 - }, - { - "name": "max_duration", - "object_id": 213575799, - "column_id": 11 - }, - { - "name": "sumsquare_duration", - "object_id": 213575799, - "column_id": 12 - }, - { - "name": "total_cpu_time", - "object_id": 213575799, - "column_id": 13 - }, - { - "name": "last_cpu_time", - "object_id": 213575799, - "column_id": 14 - }, - { - "name": "min_cpu_time", - "object_id": 213575799, - "column_id": 15 - }, - { - "name": "max_cpu_time", - "object_id": 213575799, - "column_id": 16 - }, - { - "name": "sumsquare_cpu_time", - "object_id": 213575799, - "column_id": 17 - }, - { - "name": "total_logical_io_reads", - "object_id": 213575799, - "column_id": 18 - }, - { - "name": "last_logical_io_reads", - "object_id": 213575799, - "column_id": 19 - }, - { - "name": "min_logical_io_reads", - "object_id": 213575799, - "column_id": 20 - }, - { - "name": "max_logical_io_reads", - "object_id": 213575799, - "column_id": 21 - }, - { - "name": "sumsquare_logical_io_reads", - "object_id": 213575799, - "column_id": 22 - }, - { - "name": "total_logical_io_writes", - "object_id": 213575799, - "column_id": 23 - }, - { - "name": "last_logical_io_writes", - "object_id": 213575799, - "column_id": 24 - }, - { - "name": "min_logical_io_writes", - "object_id": 213575799, - "column_id": 25 - }, - { - "name": "max_logical_io_writes", - "object_id": 213575799, - "column_id": 26 - }, - { - "name": "sumsquare_logical_io_writes", - "object_id": 213575799, - "column_id": 27 - }, - { - "name": "total_physical_io_reads", - "object_id": 213575799, - "column_id": 28 - }, - { - "name": "last_physical_io_reads", - "object_id": 213575799, - "column_id": 29 - }, - { - "name": "min_physical_io_reads", - "object_id": 213575799, - "column_id": 30 - }, - { - "name": "max_physical_io_reads", - "object_id": 213575799, - "column_id": 31 - }, - { - "name": "sumsquare_physical_io_reads", - "object_id": 213575799, - "column_id": 32 - }, - { - "name": "total_clr_time", - "object_id": 213575799, - "column_id": 33 - }, - { - "name": "last_clr_time", - "object_id": 213575799, - "column_id": 34 - }, - { - "name": "min_clr_time", - "object_id": 213575799, - "column_id": 35 - }, - { - "name": "max_clr_time", - "object_id": 213575799, - "column_id": 36 - }, - { - "name": "sumsquare_clr_time", - "object_id": 213575799, - "column_id": 37 - }, - { - "name": "total_dop", - "object_id": 213575799, - "column_id": 38 - }, - { - "name": "last_dop", - "object_id": 213575799, - "column_id": 39 - }, - { - "name": "min_dop", - "object_id": 213575799, - "column_id": 40 - }, - { - "name": "max_dop", - "object_id": 213575799, - "column_id": 41 - }, - { - "name": "sumsquare_dop", - "object_id": 213575799, - "column_id": 42 - }, - { - "name": "total_query_max_used_memory", - "object_id": 213575799, - "column_id": 43 - }, - { - "name": "last_query_max_used_memory", - "object_id": 213575799, - "column_id": 44 - }, - { - "name": "min_query_max_used_memory", - "object_id": 213575799, - "column_id": 45 - }, - { - "name": "max_query_max_used_memory", - "object_id": 213575799, - "column_id": 46 - }, - { - "name": "sumsquare_query_max_used_memory", - "object_id": 213575799, - "column_id": 47 - }, - { - "name": "total_rowcount", - "object_id": 213575799, - "column_id": 48 - }, - { - "name": "last_rowcount", - "object_id": 213575799, - "column_id": 49 - }, - { - "name": "min_rowcount", - "object_id": 213575799, - "column_id": 50 - }, - { - "name": "max_rowcount", - "object_id": 213575799, - "column_id": 51 - }, - { - "name": "sumsquare_rowcount", - "object_id": 213575799, - "column_id": 52 - }, - { - "name": "total_num_physical_io_reads", - "object_id": 213575799, - "column_id": 53 - }, - { - "name": "last_num_physical_io_reads", - "object_id": 213575799, - "column_id": 54 - }, - { - "name": "min_num_physical_io_reads", - "object_id": 213575799, - "column_id": 55 - }, - { - "name": "max_num_physical_io_reads", - "object_id": 213575799, - "column_id": 56 - }, - { - "name": "sumsquare_num_physical_io_reads", - "object_id": 213575799, - "column_id": 57 - }, - { - "name": "total_log_bytes_used", - "object_id": 213575799, - "column_id": 58 - }, - { - "name": "last_log_bytes_used", - "object_id": 213575799, - "column_id": 59 - }, - { - "name": "min_log_bytes_used", - "object_id": 213575799, - "column_id": 60 - }, - { - "name": "max_log_bytes_used", - "object_id": 213575799, - "column_id": 61 - }, - { - "name": "sumsquare_log_bytes_used", - "object_id": 213575799, - "column_id": 62 - }, - { - "name": "total_tempdb_space_used", - "object_id": 213575799, - "column_id": 63 - }, - { - "name": "last_tempdb_space_used", - "object_id": 213575799, - "column_id": 64 - }, - { - "name": "min_tempdb_space_used", - "object_id": 213575799, - "column_id": 65 - }, - { - "name": "max_tempdb_space_used", - "object_id": 213575799, - "column_id": 66 - }, - { - "name": "sumsquare_tempdb_space_used", - "object_id": 213575799, - "column_id": 67 - }, - { - "name": "total_page_server_io_reads", - "object_id": 213575799, - "column_id": 68 - }, - { - "name": "last_page_server_io_reads", - "object_id": 213575799, - "column_id": 69 - }, - { - "name": "min_page_server_io_reads", - "object_id": 213575799, - "column_id": 70 - }, - { - "name": "max_page_server_io_reads", - "object_id": 213575799, - "column_id": 71 - }, - { - "name": "sumsquare_page_server_io_reads", - "object_id": 213575799, - "column_id": 72 - }, - { - "name": "runtime_stats_interval_id", - "object_id": 229575856, - "column_id": 1 - }, - { - "name": "start_time", - "object_id": 229575856, - "column_id": 2 - }, - { - "name": "end_time", - "object_id": 229575856, - "column_id": 3 - }, - { - "name": "comment", - "object_id": 229575856, - "column_id": 4 - }, - { - "name": "context_settings_id", - "object_id": 245575913, - "column_id": 1 - }, - { - "name": "set_options", - "object_id": 245575913, - "column_id": 2 - }, - { - "name": "language_id", - "object_id": 245575913, - "column_id": 3 - }, - { - "name": "date_format", - "object_id": 245575913, - "column_id": 4 - }, - { - "name": "date_first", - "object_id": 245575913, - "column_id": 5 - }, - { - "name": "compatibility_level", - "object_id": 245575913, - "column_id": 6 - }, - { - "name": "status", - "object_id": 245575913, - "column_id": 7 - }, - { - "name": "required_cursor_options", - "object_id": 245575913, - "column_id": 8 - }, - { - "name": "acceptable_cursor_options", - "object_id": 245575913, - "column_id": 9 - }, - { - "name": "merge_action_type", - "object_id": 245575913, - "column_id": 10 - }, - { - "name": "default_schema_id", - "object_id": 245575913, - "column_id": 11 - }, - { - "name": "is_replication_specific", - "object_id": 245575913, - "column_id": 12 - }, - { - "name": "status2", - "object_id": 245575913, - "column_id": 13 - }, - { - "name": "query_hint_id", - "object_id": 261575970, - "column_id": 1 - }, - { - "name": "query_id", - "object_id": 261575970, - "column_id": 2 - }, - { - "name": "context_settings_id", - "object_id": 261575970, - "column_id": 3 - }, - { - "name": "object_id", - "object_id": 261575970, - "column_id": 4 - }, - { - "name": "statement_sql_handle", - "object_id": 261575970, - "column_id": 5 - }, - { - "name": "query_param_type", - "object_id": 261575970, - "column_id": 6 - }, - { - "name": "batch_sql_handle", - "object_id": 261575970, - "column_id": 7 - }, - { - "name": "query_hash", - "object_id": 261575970, - "column_id": 8 - }, - { - "name": "query_hints", - "object_id": 261575970, - "column_id": 9 - }, - { - "name": "query_hints_flags", - "object_id": 261575970, - "column_id": 10 - }, - { - "name": "last_query_hint_failure_reason", - "object_id": 261575970, - "column_id": 11 - }, - { - "name": "query_hint_failure_count", - "object_id": 261575970, - "column_id": 12 - }, - { - "name": "comment", - "object_id": 261575970, - "column_id": 13 - }, - { - "name": "replica_group_id", - "object_id": 261575970, - "column_id": 14 - }, - { - "name": "query_template_id", - "object_id": 277576027, - "column_id": 1 - }, - { - "name": "query_template", - "object_id": 277576027, - "column_id": 2 - }, - { - "name": "query_template_hash", - "object_id": 277576027, - "column_id": 3 - }, - { - "name": "query_param_type", - "object_id": 277576027, - "column_id": 4 - }, - { - "name": "query_template_flags", - "object_id": 277576027, - "column_id": 5 - }, - { - "name": "status", - "object_id": 277576027, - "column_id": 6 - }, - { - "name": "last_parameterization_failure_reason", - "object_id": 277576027, - "column_id": 7 - }, - { - "name": "parameterization_failure_count", - "object_id": 277576027, - "column_id": 8 - }, - { - "name": "comment", - "object_id": 277576027, - "column_id": 9 - }, - { - "name": "wait_stats_id", - "object_id": 293576084, - "column_id": 1 - }, - { - "name": "runtime_stats_interval_id", - "object_id": 293576084, - "column_id": 2 - }, - { - "name": "plan_id", - "object_id": 293576084, - "column_id": 3 - }, - { - "name": "wait_category", - "object_id": 293576084, - "column_id": 4 - }, - { - "name": "execution_type", - "object_id": 293576084, - "column_id": 5 - }, - { - "name": "count_executions", - "object_id": 293576084, - "column_id": 6 - }, - { - "name": "total_query_wait_time_ms", - "object_id": 293576084, - "column_id": 7 - }, - { - "name": "last_query_wait_time_ms", - "object_id": 293576084, - "column_id": 8 - }, - { - "name": "min_query_wait_time_ms", - "object_id": 293576084, - "column_id": 9 - }, - { - "name": "max_query_wait_time_ms", - "object_id": 293576084, - "column_id": 10 - }, - { - "name": "sumsquare_query_wait_time_ms", - "object_id": 293576084, - "column_id": 11 - }, - { - "name": "xdes_ts_push", - "object_id": 309576141, - "column_id": 1 - }, - { - "name": "xdes_ts_tran", - "object_id": 309576141, - "column_id": 2 - }, - { - "name": "subid_push", - "object_id": 309576141, - "column_id": 3 - }, - { - "name": "subid_tran", - "object_id": 309576141, - "column_id": 4 - }, - { - "name": "rowset_id", - "object_id": 309576141, - "column_id": 5 - }, - { - "name": "sec_version_rid", - "object_id": 309576141, - "column_id": 6 - }, - { - "name": "min_len", - "object_id": 309576141, - "column_id": 7 - }, - { - "name": "seq_num", - "object_id": 309576141, - "column_id": 8 - }, - { - "name": "prev_row_in_chain", - "object_id": 309576141, - "column_id": 9 - }, - { - "name": "row_version", - "object_id": 309576141, - "column_id": 10 - }, - { - "name": "xdes_ts_push", - "object_id": 325576198, - "column_id": 1 - }, - { - "name": "xdes_ts_tran", - "object_id": 325576198, - "column_id": 2 - }, - { - "name": "subid_push", - "object_id": 325576198, - "column_id": 3 - }, - { - "name": "subid_tran", - "object_id": 325576198, - "column_id": 4 - }, - { - "name": "rowset_id", - "object_id": 325576198, - "column_id": 5 - }, - { - "name": "sec_version_rid", - "object_id": 325576198, - "column_id": 6 - }, - { - "name": "min_len", - "object_id": 325576198, - "column_id": 7 - }, - { - "name": "seq_num", - "object_id": 325576198, - "column_id": 8 - }, - { - "name": "prev_row_in_chain", - "object_id": 325576198, - "column_id": 9 - }, - { - "name": "row_version", - "object_id": 325576198, - "column_id": 10 - }, - { - "name": "block_id", - "object_id": 341576255, - "column_id": 1 - }, - { - "name": "version", - "object_id": 341576255, - "column_id": 2 - }, - { - "name": "transactions_root_hash", - "object_id": 341576255, - "column_id": 3 - }, - { - "name": "block_size", - "object_id": 341576255, - "column_id": 4 - }, - { - "name": "previous_block_hash", - "object_id": 341576255, - "column_id": 5 - }, - { - "name": "transaction_id", - "object_id": 357576312, - "column_id": 1 - }, - { - "name": "block_id", - "object_id": 357576312, - "column_id": 2 - }, - { - "name": "transaction_ordinal", - "object_id": 357576312, - "column_id": 3 - }, - { - "name": "version", - "object_id": 357576312, - "column_id": 4 - }, - { - "name": "type", - "object_id": 357576312, - "column_id": 5 - }, - { - "name": "commit_ts", - "object_id": 357576312, - "column_id": 6 - }, - { - "name": "table_hashes", - "object_id": 357576312, - "column_id": 7 - }, - { - "name": "commit_LSN", - "object_id": 357576312, - "column_id": 8 - }, - { - "name": "transaction_description", - "object_id": 357576312, - "column_id": 9 - }, - { - "name": "principal_name", - "object_id": 357576312, - "column_id": 10 - }, - { - "name": "backup_metadata_uuid", - "object_id": 373576369, - "column_id": 1 - }, - { - "name": "database_guid", - "object_id": 373576369, - "column_id": 2 - }, - { - "name": "physical_database_name", - "object_id": 373576369, - "column_id": 3 - }, - { - "name": "time_zone", - "object_id": 373576369, - "column_id": 4 - }, - { - "name": "first_lsn", - "object_id": 373576369, - "column_id": 5 - }, - { - "name": "last_lsn", - "object_id": 373576369, - "column_id": 6 - }, - { - "name": "checkpoint_lsn", - "object_id": 373576369, - "column_id": 7 - }, - { - "name": "database_backup_lsn", - "object_id": 373576369, - "column_id": 8 - }, - { - "name": "backup_start_date", - "object_id": 373576369, - "column_id": 9 - }, - { - "name": "backup_finish_date", - "object_id": 373576369, - "column_id": 10 - }, - { - "name": "backup_type", - "object_id": 373576369, - "column_id": 11 - }, - { - "name": "backup_storage_redundancy", - "object_id": 373576369, - "column_id": 12 - }, - { - "name": "database_version", - "object_id": 373576369, - "column_id": 13 - }, - { - "name": "backup_size", - "object_id": 373576369, - "column_id": 14 - }, - { - "name": "compressed_backup_size", - "object_id": 373576369, - "column_id": 15 - }, - { - "name": "server_name", - "object_id": 373576369, - "column_id": 16 - }, - { - "name": "is_damaged", - "object_id": 373576369, - "column_id": 17 - }, - { - "name": "last_recovery_fork_guid", - "object_id": 373576369, - "column_id": 18 - }, - { - "name": "differential_base_lsn", - "object_id": 373576369, - "column_id": 19 - }, - { - "name": "differential_base_guid", - "object_id": 373576369, - "column_id": 20 - }, - { - "name": "backup_path", - "object_id": 373576369, - "column_id": 21 - }, - { - "name": "last_valid_restore_time", - "object_id": 373576369, - "column_id": 22 - }, - { - "name": "compression_algorithm", - "object_id": 373576369, - "column_id": 23 - }, - { - "name": "logical_server_name", - "object_id": 373576369, - "column_id": 24 - }, - { - "name": "logical_database_name", - "object_id": 373576369, - "column_id": 25 - }, - { - "name": "allocated_db_size_bytes", - "object_id": 373576369, - "column_id": 26 - }, - { - "name": "allocated_data_size_bytes", - "object_id": 373576369, - "column_id": 27 - }, - { - "name": "plan_feedback_id", - "object_id": 389576426, - "column_id": 1 - }, - { - "name": "plan_id", - "object_id": 389576426, - "column_id": 2 - }, - { - "name": "feature_id", - "object_id": 389576426, - "column_id": 3 - }, - { - "name": "feedback_data", - "object_id": 389576426, - "column_id": 4 - }, - { - "name": "state", - "object_id": 389576426, - "column_id": 5 - }, - { - "name": "create_time", - "object_id": 389576426, - "column_id": 6 - }, - { - "name": "last_updated_time", - "object_id": 389576426, - "column_id": 7 - }, - { - "name": "replica_group_id", - "object_id": 389576426, - "column_id": 8 - }, - { - "name": "query_variant_query_id", - "object_id": 405576483, - "column_id": 1 - }, - { - "name": "parent_query_id", - "object_id": 405576483, - "column_id": 2 - }, - { - "name": "dispatcher_plan_id", - "object_id": 405576483, - "column_id": 3 - }, - { - "name": "bucket_id", - "object_id": 565577053, - "column_id": 1 - }, - { - "name": "bucket_data", - "object_id": 565577053, - "column_id": 2 - }, - { - "name": "id", - "object_id": 885578193, - "column_id": 1 - }, - { - "name": "name", - "object_id": 885578193, - "column_id": 2 - }, - { - "name": "start_ip_address", - "object_id": 885578193, - "column_id": 3 - }, - { - "name": "end_ip_address", - "object_id": 885578193, - "column_id": 4 - }, - { - "name": "start_ip_address_value", - "object_id": 885578193, - "column_id": 5 - }, - { - "name": "end_ip_address_value", - "object_id": 885578193, - "column_id": 6 - }, - { - "name": "create_date", - "object_id": 885578193, - "column_id": 7 - }, - { - "name": "modify_date", - "object_id": 885578193, - "column_id": 8 - }, - { - "name": "id", - "object_id": 901578250, - "column_id": 1 - }, - { - "name": "name", - "object_id": 901578250, - "column_id": 2 - }, - { - "name": "start_ip_address", - "object_id": 901578250, - "column_id": 3 - }, - { - "name": "end_ip_address", - "object_id": 901578250, - "column_id": 4 - }, - { - "name": "create_date", - "object_id": 901578250, - "column_id": 5 - }, - { - "name": "modify_date", - "object_id": 901578250, - "column_id": 6 - }, - { - "name": "id", - "object_id": 917578307, - "column_id": 1 - }, - { - "name": "name", - "object_id": 917578307, - "column_id": 2 - }, - { - "name": "start_ipv6_address", - "object_id": 917578307, - "column_id": 3 - }, - { - "name": "end_ipv6_address", - "object_id": 917578307, - "column_id": 4 - }, - { - "name": "start_ipv6_address_msb_value", - "object_id": 917578307, - "column_id": 5 - }, - { - "name": "start_ipv6_address_lsb_value", - "object_id": 917578307, - "column_id": 6 - }, - { - "name": "end_ipv6_address_msb_value", - "object_id": 917578307, - "column_id": 7 - }, - { - "name": "end_ipv6_address_lsb_value", - "object_id": 917578307, - "column_id": 8 - }, - { - "name": "create_date", - "object_id": 917578307, - "column_id": 9 - }, - { - "name": "modify_date", - "object_id": 917578307, - "column_id": 10 - }, - { - "name": "name", - "object_id": 1074102867, - "column_id": 1 - }, - { - "name": "principal_id", - "object_id": 1074102867, - "column_id": 2 - }, - { - "name": "diagram_id", - "object_id": 1074102867, - "column_id": 3 - }, - { - "name": "version", - "object_id": 1074102867, - "column_id": 4 - }, - { - "name": "definition", - "object_id": 1074102867, - "column_id": 5 - }, - { - "name": "schema_name", - "object_id": 1205579333, - "column_id": 1 - }, - { - "name": "table_name", - "object_id": 1205579333, - "column_id": 2 - }, - { - "name": "object_id", - "object_id": 1205579333, - "column_id": 3 - }, - { - "name": "ledger_view_schema_name", - "object_id": 1205579333, - "column_id": 4 - }, - { - "name": "ledger_view_name", - "object_id": 1205579333, - "column_id": 5 - }, - { - "name": "operation_type", - "object_id": 1205579333, - "column_id": 6 - }, - { - "name": "ledger_start_transaction_id", - "object_id": 1205579333, - "column_id": 7 - }, - { - "name": "ledger_end_transaction_id", - "object_id": 1205579333, - "column_id": 8 - }, - { - "name": "ledger_start_sequence_number", - "object_id": 1205579333, - "column_id": 9 - }, - { - "name": "ledger_end_sequence_number", - "object_id": 1205579333, - "column_id": 10 - }, - { - "name": "status", - "object_id": 1205579333, - "column_id": 11 - }, - { - "name": "transaction_id_column_name", - "object_id": 1205579333, - "column_id": 12 - }, - { - "name": "sequence_number_column_name", - "object_id": 1205579333, - "column_id": 13 - }, - { - "name": "operation_type_column_name", - "object_id": 1205579333, - "column_id": 14 - }, - { - "name": "operation_type_desc_column_name", - "object_id": 1205579333, - "column_id": 15 - }, - { - "name": "schema_name", - "object_id": 1221579390, - "column_id": 1 - }, - { - "name": "table_name", - "object_id": 1221579390, - "column_id": 2 - }, - { - "name": "object_id", - "object_id": 1221579390, - "column_id": 3 - }, - { - "name": "ledger_view_schema_name", - "object_id": 1221579390, - "column_id": 4 - }, - { - "name": "ledger_view_name", - "object_id": 1221579390, - "column_id": 5 - }, - { - "name": "operation_type", - "object_id": 1221579390, - "column_id": 6 - }, - { - "name": "ledger_start_transaction_id", - "object_id": 1221579390, - "column_id": 7 - }, - { - "name": "ledger_end_transaction_id", - "object_id": 1221579390, - "column_id": 8 - }, - { - "name": "ledger_start_sequence_number", - "object_id": 1221579390, - "column_id": 9 - }, - { - "name": "ledger_end_sequence_number", - "object_id": 1221579390, - "column_id": 10 - }, - { - "name": "status", - "object_id": 1221579390, - "column_id": 11 - }, - { - "name": "transaction_id_column_name", - "object_id": 1221579390, - "column_id": 12 - }, - { - "name": "sequence_number_column_name", - "object_id": 1221579390, - "column_id": 13 - }, - { - "name": "operation_type_column_name", - "object_id": 1221579390, - "column_id": 14 - }, - { - "name": "operation_type_desc_column_name", - "object_id": 1221579390, - "column_id": 15 - }, - { - "name": "object_id", - "object_id": 1237579447, - "column_id": 1 - }, - { - "name": "column_id", - "object_id": 1237579447, - "column_id": 2 - }, - { - "name": "column_name", - "object_id": 1237579447, - "column_id": 3 - }, - { - "name": "operation_type", - "object_id": 1237579447, - "column_id": 4 - }, - { - "name": "ledger_start_transaction_id", - "object_id": 1237579447, - "column_id": 5 - }, - { - "name": "ledger_end_transaction_id", - "object_id": 1237579447, - "column_id": 6 - }, - { - "name": "ledger_start_sequence_number", - "object_id": 1237579447, - "column_id": 7 - }, - { - "name": "ledger_end_sequence_number", - "object_id": 1237579447, - "column_id": 8 - }, - { - "name": "object_id", - "object_id": 1253579504, - "column_id": 1 - }, - { - "name": "column_id", - "object_id": 1253579504, - "column_id": 2 - }, - { - "name": "column_name", - "object_id": 1253579504, - "column_id": 3 - }, - { - "name": "operation_type", - "object_id": 1253579504, - "column_id": 4 - }, - { - "name": "ledger_start_transaction_id", - "object_id": 1253579504, - "column_id": 5 - }, - { - "name": "ledger_end_transaction_id", - "object_id": 1253579504, - "column_id": 6 - }, - { - "name": "ledger_start_sequence_number", - "object_id": 1253579504, - "column_id": 7 - }, - { - "name": "ledger_end_sequence_number", - "object_id": 1253579504, - "column_id": 8 - }, - { - "name": "storage_type", - "object_id": 1269579561, - "column_id": 1 - }, - { - "name": "path", - "object_id": 1269579561, - "column_id": 2 - }, - { - "name": "last_digest_block_id", - "object_id": 1269579561, - "column_id": 3 - }, - { - "name": "is_current", - "object_id": 1269579561, - "column_id": 4 - }, - { - "name": "replica_group_id", - "object_id": 1285579618, - "column_id": 1 - }, - { - "name": "role_type", - "object_id": 1285579618, - "column_id": 2 - }, - { - "name": "replica_name", - "object_id": 1285579618, - "column_id": 3 - }, - { - "name": "lcid", - "object_id": 1298103665, - "column_id": 1 - }, - { - "name": "diacritics_sensitive", - "object_id": 1298103665, - "column_id": 2 - }, - { - "name": "plan_forcing_location_id", - "object_id": 1301579675, - "column_id": 1 - }, - { - "name": "query_id", - "object_id": 1301579675, - "column_id": 2 - }, - { - "name": "plan_id", - "object_id": 1301579675, - "column_id": 3 - }, - { - "name": "replica_group_id", - "object_id": 1301579675, - "column_id": 4 - }, - { - "name": "timestamp", - "object_id": 1301579675, - "column_id": 5 - }, - { - "name": "plan_forcing_flags", - "object_id": 1301579675, - "column_id": 6 - }, - { - "name": "lcid", - "object_id": 1314103722, - "column_id": 1 - }, - { - "name": "parentid", - "object_id": 1314103722, - "column_id": 2 - }, - { - "name": "term", - "object_id": 1314103722, - "column_id": 3 - }, - { - "name": "stateid", - "object_id": 1314103722, - "column_id": 4 - }, - { - "name": "phraseid", - "object_id": 1314103722, - "column_id": 5 - }, - { - "name": "runtime_stats_id", - "object_id": 1317579732, - "column_id": 1 - }, - { - "name": "plan_id", - "object_id": 1317579732, - "column_id": 2 - }, - { - "name": "runtime_stats_interval_id", - "object_id": 1317579732, - "column_id": 3 - }, - { - "name": "execution_type", - "object_id": 1317579732, - "column_id": 4 - }, - { - "name": "first_execution_time", - "object_id": 1317579732, - "column_id": 5 - }, - { - "name": "last_execution_time", - "object_id": 1317579732, - "column_id": 6 - }, - { - "name": "count_executions", - "object_id": 1317579732, - "column_id": 7 - }, - { - "name": "total_duration", - "object_id": 1317579732, - "column_id": 8 - }, - { - "name": "last_duration", - "object_id": 1317579732, - "column_id": 9 - }, - { - "name": "min_duration", - "object_id": 1317579732, - "column_id": 10 - }, - { - "name": "max_duration", - "object_id": 1317579732, - "column_id": 11 - }, - { - "name": "sumsquare_duration", - "object_id": 1317579732, - "column_id": 12 - }, - { - "name": "total_cpu_time", - "object_id": 1317579732, - "column_id": 13 - }, - { - "name": "last_cpu_time", - "object_id": 1317579732, - "column_id": 14 - }, - { - "name": "min_cpu_time", - "object_id": 1317579732, - "column_id": 15 - }, - { - "name": "max_cpu_time", - "object_id": 1317579732, - "column_id": 16 - }, - { - "name": "sumsquare_cpu_time", - "object_id": 1317579732, - "column_id": 17 - }, - { - "name": "total_logical_io_reads", - "object_id": 1317579732, - "column_id": 18 - }, - { - "name": "last_logical_io_reads", - "object_id": 1317579732, - "column_id": 19 - }, - { - "name": "min_logical_io_reads", - "object_id": 1317579732, - "column_id": 20 - }, - { - "name": "max_logical_io_reads", - "object_id": 1317579732, - "column_id": 21 - }, - { - "name": "sumsquare_logical_io_reads", - "object_id": 1317579732, - "column_id": 22 - }, - { - "name": "total_logical_io_writes", - "object_id": 1317579732, - "column_id": 23 - }, - { - "name": "last_logical_io_writes", - "object_id": 1317579732, - "column_id": 24 - }, - { - "name": "min_logical_io_writes", - "object_id": 1317579732, - "column_id": 25 - }, - { - "name": "max_logical_io_writes", - "object_id": 1317579732, - "column_id": 26 - }, - { - "name": "sumsquare_logical_io_writes", - "object_id": 1317579732, - "column_id": 27 - }, - { - "name": "total_physical_io_reads", - "object_id": 1317579732, - "column_id": 28 - }, - { - "name": "last_physical_io_reads", - "object_id": 1317579732, - "column_id": 29 - }, - { - "name": "min_physical_io_reads", - "object_id": 1317579732, - "column_id": 30 - }, - { - "name": "max_physical_io_reads", - "object_id": 1317579732, - "column_id": 31 - }, - { - "name": "sumsquare_physical_io_reads", - "object_id": 1317579732, - "column_id": 32 - }, - { - "name": "total_clr_time", - "object_id": 1317579732, - "column_id": 33 - }, - { - "name": "last_clr_time", - "object_id": 1317579732, - "column_id": 34 - }, - { - "name": "min_clr_time", - "object_id": 1317579732, - "column_id": 35 - }, - { - "name": "max_clr_time", - "object_id": 1317579732, - "column_id": 36 - }, - { - "name": "sumsquare_clr_time", - "object_id": 1317579732, - "column_id": 37 - }, - { - "name": "total_dop", - "object_id": 1317579732, - "column_id": 38 - }, - { - "name": "last_dop", - "object_id": 1317579732, - "column_id": 39 - }, - { - "name": "min_dop", - "object_id": 1317579732, - "column_id": 40 - }, - { - "name": "max_dop", - "object_id": 1317579732, - "column_id": 41 - }, - { - "name": "sumsquare_dop", - "object_id": 1317579732, - "column_id": 42 - }, - { - "name": "total_query_max_used_memory", - "object_id": 1317579732, - "column_id": 43 - }, - { - "name": "last_query_max_used_memory", - "object_id": 1317579732, - "column_id": 44 - }, - { - "name": "min_query_max_used_memory", - "object_id": 1317579732, - "column_id": 45 - }, - { - "name": "max_query_max_used_memory", - "object_id": 1317579732, - "column_id": 46 - }, - { - "name": "sumsquare_query_max_used_memory", - "object_id": 1317579732, - "column_id": 47 - }, - { - "name": "total_rowcount", - "object_id": 1317579732, - "column_id": 48 - }, - { - "name": "last_rowcount", - "object_id": 1317579732, - "column_id": 49 - }, - { - "name": "min_rowcount", - "object_id": 1317579732, - "column_id": 50 - }, - { - "name": "max_rowcount", - "object_id": 1317579732, - "column_id": 51 - }, - { - "name": "sumsquare_rowcount", - "object_id": 1317579732, - "column_id": 52 - }, - { - "name": "total_num_physical_io_reads", - "object_id": 1317579732, - "column_id": 53 - }, - { - "name": "last_num_physical_io_reads", - "object_id": 1317579732, - "column_id": 54 - }, - { - "name": "min_num_physical_io_reads", - "object_id": 1317579732, - "column_id": 55 - }, - { - "name": "max_num_physical_io_reads", - "object_id": 1317579732, - "column_id": 56 - }, - { - "name": "sumsquare_num_physical_io_reads", - "object_id": 1317579732, - "column_id": 57 - }, - { - "name": "total_log_bytes_used", - "object_id": 1317579732, - "column_id": 58 - }, - { - "name": "last_log_bytes_used", - "object_id": 1317579732, - "column_id": 59 - }, - { - "name": "min_log_bytes_used", - "object_id": 1317579732, - "column_id": 60 - }, - { - "name": "max_log_bytes_used", - "object_id": 1317579732, - "column_id": 61 - }, - { - "name": "sumsquare_log_bytes_used", - "object_id": 1317579732, - "column_id": 62 - }, - { - "name": "total_tempdb_space_used", - "object_id": 1317579732, - "column_id": 63 - }, - { - "name": "last_tempdb_space_used", - "object_id": 1317579732, - "column_id": 64 - }, - { - "name": "min_tempdb_space_used", - "object_id": 1317579732, - "column_id": 65 - }, - { - "name": "max_tempdb_space_used", - "object_id": 1317579732, - "column_id": 66 - }, - { - "name": "sumsquare_tempdb_space_used", - "object_id": 1317579732, - "column_id": 67 - }, - { - "name": "total_page_server_io_reads", - "object_id": 1317579732, - "column_id": 68 - }, - { - "name": "last_page_server_io_reads", - "object_id": 1317579732, - "column_id": 69 - }, - { - "name": "min_page_server_io_reads", - "object_id": 1317579732, - "column_id": 70 - }, - { - "name": "max_page_server_io_reads", - "object_id": 1317579732, - "column_id": 71 - }, - { - "name": "sumsquare_page_server_io_reads", - "object_id": 1317579732, - "column_id": 72 - }, - { - "name": "replica_group_id", - "object_id": 1317579732, - "column_id": 73 - }, - { - "name": "phraseid", - "object_id": 1330103779, - "column_id": 1 - }, - { - "name": "lcid", - "object_id": 1330103779, - "column_id": 2 - }, - { - "name": "groupid", - "object_id": 1330103779, - "column_id": 3 - }, - { - "name": "isExpansion", - "object_id": 1330103779, - "column_id": 4 - }, - { - "name": "isLHSOfReplacement", - "object_id": 1330103779, - "column_id": 5 - }, - { - "name": "terms", - "object_id": 1330103779, - "column_id": 6 - }, - { - "name": "wait_stats_id", - "object_id": 1333579789, - "column_id": 1 - }, - { - "name": "runtime_stats_interval_id", - "object_id": 1333579789, - "column_id": 2 - }, - { - "name": "plan_id", - "object_id": 1333579789, - "column_id": 3 - }, - { - "name": "wait_category", - "object_id": 1333579789, - "column_id": 4 - }, - { - "name": "execution_type", - "object_id": 1333579789, - "column_id": 5 - }, - { - "name": "count_executions", - "object_id": 1333579789, - "column_id": 6 - }, - { - "name": "total_query_wait_time_ms", - "object_id": 1333579789, - "column_id": 7 - }, - { - "name": "last_query_wait_time_ms", - "object_id": 1333579789, - "column_id": 8 - }, - { - "name": "min_query_wait_time_ms", - "object_id": 1333579789, - "column_id": 9 - }, - { - "name": "max_query_wait_time_ms", - "object_id": 1333579789, - "column_id": 10 - }, - { - "name": "sumsquare_query_wait_time_ms", - "object_id": 1333579789, - "column_id": 11 - }, - { - "name": "replica_group_id", - "object_id": 1333579789, - "column_id": 12 - }, - { - "name": "time_snapshot", - "object_id": 1381579960, - "column_id": 1 - }, - { - "name": "event_type", - "object_id": 1381579960, - "column_id": 2 - }, - { - "name": "ParentProductCategoryName", - "object_id": 1541580530, - "column_id": 1 - }, - { - "name": "ProductCategoryName", - "object_id": 1541580530, - "column_id": 2 - }, - { - "name": "ProductCategoryID", - "object_id": 1541580530, - "column_id": 3 - }, - { - "name": "CustomerID", - "object_id": 1573580644, - "column_id": 1 - }, - { - "name": "NameStyle", - "object_id": 1573580644, - "column_id": 2 - }, - { - "name": "Title", - "object_id": 1573580644, - "column_id": 3 - }, - { - "name": "FirstName", - "object_id": 1573580644, - "column_id": 4 - }, - { - "name": "MiddleName", - "object_id": 1573580644, - "column_id": 5 - }, - { - "name": "LastName", - "object_id": 1573580644, - "column_id": 6 - }, - { - "name": "Suffix", - "object_id": 1573580644, - "column_id": 7 - }, - { - "name": "CompanyName", - "object_id": 1573580644, - "column_id": 8 - }, - { - "name": "SalesPerson", - "object_id": 1573580644, - "column_id": 9 - }, - { - "name": "EmailAddress", - "object_id": 1573580644, - "column_id": 10 - }, - { - "name": "Phone", - "object_id": 1573580644, - "column_id": 11 - }, - { - "name": "PasswordHash", - "object_id": 1573580644, - "column_id": 12 - }, - { - "name": "PasswordSalt", - "object_id": 1573580644, - "column_id": 13 - }, - { - "name": "rowguid", - "object_id": 1573580644, - "column_id": 14 - }, - { - "name": "ModifiedDate", - "object_id": 1573580644, - "column_id": 15 - }, - { - "name": "CustomerID", - "object_id": 1605580758, - "column_id": 1 - }, - { - "name": "FirstName", - "object_id": 1605580758, - "column_id": 2 - }, - { - "name": "LastName", - "object_id": 1605580758, - "column_id": 3 - }, - { - "name": "ProductModelID", - "object_id": 1621580815, - "column_id": 1 - }, - { - "name": "Name", - "object_id": 1621580815, - "column_id": 2 - }, - { - "name": "CatalogDescription", - "object_id": 1621580815, - "column_id": 3 - }, - { - "name": "rowguid", - "object_id": 1621580815, - "column_id": 4 - }, - { - "name": "ModifiedDate", - "object_id": 1621580815, - "column_id": 5 - }, - { - "name": "ProductModelID", - "object_id": 1653580929, - "column_id": 1 - }, - { - "name": "Name", - "object_id": 1653580929, - "column_id": 2 - }, - { - "name": "Summary", - "object_id": 1653580929, - "column_id": 3 - }, - { - "name": "Manufacturer", - "object_id": 1653580929, - "column_id": 4 - }, - { - "name": "Copyright", - "object_id": 1653580929, - "column_id": 5 - }, - { - "name": "ProductURL", - "object_id": 1653580929, - "column_id": 6 - }, - { - "name": "WarrantyPeriod", - "object_id": 1653580929, - "column_id": 7 - }, - { - "name": "WarrantyDescription", - "object_id": 1653580929, - "column_id": 8 - }, - { - "name": "NoOfYears", - "object_id": 1653580929, - "column_id": 9 - }, - { - "name": "MaintenanceDescription", - "object_id": 1653580929, - "column_id": 10 - }, - { - "name": "Wheel", - "object_id": 1653580929, - "column_id": 11 - }, - { - "name": "Saddle", - "object_id": 1653580929, - "column_id": 12 - }, - { - "name": "Pedal", - "object_id": 1653580929, - "column_id": 13 - }, - { - "name": "BikeFrame", - "object_id": 1653580929, - "column_id": 14 - }, - { - "name": "Crankset", - "object_id": 1653580929, - "column_id": 15 - }, - { - "name": "PictureAngle", - "object_id": 1653580929, - "column_id": 16 - }, - { - "name": "PictureSize", - "object_id": 1653580929, - "column_id": 17 - }, - { - "name": "ProductPhotoID", - "object_id": 1653580929, - "column_id": 18 - }, - { - "name": "Material", - "object_id": 1653580929, - "column_id": 19 - }, - { - "name": "Color", - "object_id": 1653580929, - "column_id": 20 - }, - { - "name": "ProductLine", - "object_id": 1653580929, - "column_id": 21 - }, - { - "name": "Style", - "object_id": 1653580929, - "column_id": 22 - }, - { - "name": "RiderExperience", - "object_id": 1653580929, - "column_id": 23 - }, - { - "name": "rowguid", - "object_id": 1653580929, - "column_id": 24 - }, - { - "name": "ModifiedDate", - "object_id": 1653580929, - "column_id": 25 - }, - { - "name": "ProductDescriptionID", - "object_id": 1669580986, - "column_id": 1 - }, - { - "name": "Description", - "object_id": 1669580986, - "column_id": 2 - }, - { - "name": "rowguid", - "object_id": 1669580986, - "column_id": 3 - }, - { - "name": "ModifiedDate", - "object_id": 1669580986, - "column_id": 4 - }, - { - "name": "ProductID", - "object_id": 1701581100, - "column_id": 1 - }, - { - "name": "Name", - "object_id": 1701581100, - "column_id": 2 - }, - { - "name": "ProductNumber", - "object_id": 1701581100, - "column_id": 3 - }, - { - "name": "Color", - "object_id": 1701581100, - "column_id": 4 - }, - { - "name": "StandardCost", - "object_id": 1701581100, - "column_id": 5 - }, - { - "name": "ListPrice", - "object_id": 1701581100, - "column_id": 6 - }, - { - "name": "Size", - "object_id": 1701581100, - "column_id": 7 - }, - { - "name": "Weight", - "object_id": 1701581100, - "column_id": 8 - }, - { - "name": "ProductCategoryID", - "object_id": 1701581100, - "column_id": 9 - }, - { - "name": "ProductModelID", - "object_id": 1701581100, - "column_id": 10 - }, - { - "name": "SellStartDate", - "object_id": 1701581100, - "column_id": 11 - }, - { - "name": "SellEndDate", - "object_id": 1701581100, - "column_id": 12 - }, - { - "name": "DiscontinuedDate", - "object_id": 1701581100, - "column_id": 13 - }, - { - "name": "ThumbNailPhoto", - "object_id": 1701581100, - "column_id": 14 - }, - { - "name": "ThumbnailPhotoFileName", - "object_id": 1701581100, - "column_id": 15 - }, - { - "name": "rowguid", - "object_id": 1701581100, - "column_id": 16 - }, - { - "name": "ModifiedDate", - "object_id": 1701581100, - "column_id": 17 - }, - { - "name": "ProductModelID", - "object_id": 1733581214, - "column_id": 1 - }, - { - "name": "ProductDescriptionID", - "object_id": 1733581214, - "column_id": 2 - }, - { - "name": "Culture", - "object_id": 1733581214, - "column_id": 3 - }, - { - "name": "rowguid", - "object_id": 1733581214, - "column_id": 4 - }, - { - "name": "ModifiedDate", - "object_id": 1733581214, - "column_id": 5 - }, - { - "name": "ProductID", - "object_id": 1765581328, - "column_id": 1 - }, - { - "name": "Name", - "object_id": 1765581328, - "column_id": 2 - }, - { - "name": "ProductModel", - "object_id": 1765581328, - "column_id": 3 - }, - { - "name": "Culture", - "object_id": 1765581328, - "column_id": 4 - }, - { - "name": "Description", - "object_id": 1765581328, - "column_id": 5 - }, - { - "name": "ProductCategoryID", - "object_id": 1781581385, - "column_id": 1 - }, - { - "name": "ParentProductCategoryID", - "object_id": 1781581385, - "column_id": 2 - }, - { - "name": "Name", - "object_id": 1781581385, - "column_id": 3 - }, - { - "name": "rowguid", - "object_id": 1781581385, - "column_id": 4 - }, - { - "name": "ModifiedDate", - "object_id": 1781581385, - "column_id": 5 - }, - { - "name": "ParentProductCategoryName", - "object_id": 1813581499, - "column_id": 1 - }, - { - "name": "ProductCategoryName", - "object_id": 1813581499, - "column_id": 2 - }, - { - "name": "ProductCategoryID", - "object_id": 1813581499, - "column_id": 3 - }, - { - "name": "SystemInformationID", - "object_id": 1829581556, - "column_id": 1 - }, - { - "name": "Database Version", - "object_id": 1829581556, - "column_id": 2 - }, - { - "name": "VersionDate", - "object_id": 1829581556, - "column_id": 3 - }, - { - "name": "ModifiedDate", - "object_id": 1829581556, - "column_id": 4 - }, - { - "name": "ErrorLogID", - "object_id": 1861581670, - "column_id": 1 - }, - { - "name": "ErrorTime", - "object_id": 1861581670, - "column_id": 2 - }, - { - "name": "UserName", - "object_id": 1861581670, - "column_id": 3 - }, - { - "name": "ErrorNumber", - "object_id": 1861581670, - "column_id": 4 - }, - { - "name": "ErrorSeverity", - "object_id": 1861581670, - "column_id": 5 - }, - { - "name": "ErrorState", - "object_id": 1861581670, - "column_id": 6 - }, - { - "name": "ErrorProcedure", - "object_id": 1861581670, - "column_id": 7 - }, - { - "name": "ErrorLine", - "object_id": 1861581670, - "column_id": 8 - }, - { - "name": "ErrorMessage", - "object_id": 1861581670, - "column_id": 9 - }, - { - "name": "AddressID", - "object_id": 1893581784, - "column_id": 1 - }, - { - "name": "AddressLine1", - "object_id": 1893581784, - "column_id": 2 - }, - { - "name": "AddressLine2", - "object_id": 1893581784, - "column_id": 3 - }, - { - "name": "City", - "object_id": 1893581784, - "column_id": 4 - }, - { - "name": "StateProvince", - "object_id": 1893581784, - "column_id": 5 - }, - { - "name": "CountryRegion", - "object_id": 1893581784, - "column_id": 6 - }, - { - "name": "PostalCode", - "object_id": 1893581784, - "column_id": 7 - }, - { - "name": "rowguid", - "object_id": 1893581784, - "column_id": 8 - }, - { - "name": "ModifiedDate", - "object_id": 1893581784, - "column_id": 9 - }, - { - "name": "CustomerID", - "object_id": 1925581898, - "column_id": 1 - }, - { - "name": "AddressID", - "object_id": 1925581898, - "column_id": 2 - }, - { - "name": "AddressType", - "object_id": 1925581898, - "column_id": 3 - }, - { - "name": "rowguid", - "object_id": 1925581898, - "column_id": 4 - }, - { - "name": "ModifiedDate", - "object_id": 1925581898, - "column_id": 5 - }, - { - "name": "SalesOrderID", - "object_id": 1957582012, - "column_id": 1 - }, - { - "name": "SalesOrderDetailID", - "object_id": 1957582012, - "column_id": 2 - }, - { - "name": "OrderQty", - "object_id": 1957582012, - "column_id": 3 - }, - { - "name": "ProductID", - "object_id": 1957582012, - "column_id": 4 - }, - { - "name": "UnitPrice", - "object_id": 1957582012, - "column_id": 5 - }, - { - "name": "UnitPriceDiscount", - "object_id": 1957582012, - "column_id": 6 - }, - { - "name": "LineTotal", - "object_id": 1957582012, - "column_id": 7 - }, - { - "name": "rowguid", - "object_id": 1957582012, - "column_id": 8 - }, - { - "name": "ModifiedDate", - "object_id": 1957582012, - "column_id": 9 - }, - { - "name": "SalesOrderID", - "object_id": 1989582126, - "column_id": 1 - }, - { - "name": "RevisionNumber", - "object_id": 1989582126, - "column_id": 2 - }, - { - "name": "OrderDate", - "object_id": 1989582126, - "column_id": 3 - }, - { - "name": "DueDate", - "object_id": 1989582126, - "column_id": 4 - }, - { - "name": "ShipDate", - "object_id": 1989582126, - "column_id": 5 - }, - { - "name": "Status", - "object_id": 1989582126, - "column_id": 6 - }, - { - "name": "OnlineOrderFlag", - "object_id": 1989582126, - "column_id": 7 - }, - { - "name": "SalesOrderNumber", - "object_id": 1989582126, - "column_id": 8 - }, - { - "name": "PurchaseOrderNumber", - "object_id": 1989582126, - "column_id": 9 - }, - { - "name": "AccountNumber", - "object_id": 1989582126, - "column_id": 10 - }, - { - "name": "CustomerID", - "object_id": 1989582126, - "column_id": 11 - }, - { - "name": "ShipToAddressID", - "object_id": 1989582126, - "column_id": 12 - }, - { - "name": "BillToAddressID", - "object_id": 1989582126, - "column_id": 13 - }, - { - "name": "ShipMethod", - "object_id": 1989582126, - "column_id": 14 - }, - { - "name": "CreditCardApprovalCode", - "object_id": 1989582126, - "column_id": 15 - }, - { - "name": "SubTotal", - "object_id": 1989582126, - "column_id": 16 - }, - { - "name": "TaxAmt", - "object_id": 1989582126, - "column_id": 17 - }, - { - "name": "Freight", - "object_id": 1989582126, - "column_id": 18 - }, - { - "name": "TotalDue", - "object_id": 1989582126, - "column_id": 19 - }, - { - "name": "Comment", - "object_id": 1989582126, - "column_id": 20 - }, - { - "name": "rowguid", - "object_id": 1989582126, - "column_id": 21 - }, - { - "name": "ModifiedDate", - "object_id": 1989582126, - "column_id": 22 - }, - { - "name": "status", - "object_id": 1993058136, - "column_id": 1 - }, - { - "name": "priority", - "object_id": 1993058136, - "column_id": 2 - }, - { - "name": "queuing_order", - "object_id": 1993058136, - "column_id": 3 - }, - { - "name": "conversation_group_id", - "object_id": 1993058136, - "column_id": 4 - }, - { - "name": "conversation_handle", - "object_id": 1993058136, - "column_id": 5 - }, - { - "name": "message_sequence_number", - "object_id": 1993058136, - "column_id": 6 - }, - { - "name": "message_id", - "object_id": 1993058136, - "column_id": 7 - }, - { - "name": "message_type_id", - "object_id": 1993058136, - "column_id": 8 - }, - { - "name": "service_id", - "object_id": 1993058136, - "column_id": 9 - }, - { - "name": "service_contract_id", - "object_id": 1993058136, - "column_id": 10 - }, - { - "name": "validation", - "object_id": 1993058136, - "column_id": 11 - }, - { - "name": "next_fragment", - "object_id": 1993058136, - "column_id": 12 - }, - { - "name": "fragment_size", - "object_id": 1993058136, - "column_id": 13 - }, - { - "name": "fragment_bitmap", - "object_id": 1993058136, - "column_id": 14 - }, - { - "name": "binary_message_body", - "object_id": 1993058136, - "column_id": 15 - }, - { - "name": "message_enqueue_time", - "object_id": 1993058136, - "column_id": 16 - }, - { - "name": "status", - "object_id": 2025058250, - "column_id": 1 - }, - { - "name": "priority", - "object_id": 2025058250, - "column_id": 2 - }, - { - "name": "queuing_order", - "object_id": 2025058250, - "column_id": 3 - }, - { - "name": "conversation_group_id", - "object_id": 2025058250, - "column_id": 4 - }, - { - "name": "conversation_handle", - "object_id": 2025058250, - "column_id": 5 - }, - { - "name": "message_sequence_number", - "object_id": 2025058250, - "column_id": 6 - }, - { - "name": "message_id", - "object_id": 2025058250, - "column_id": 7 - }, - { - "name": "message_type_id", - "object_id": 2025058250, - "column_id": 8 - }, - { - "name": "service_id", - "object_id": 2025058250, - "column_id": 9 - }, - { - "name": "service_contract_id", - "object_id": 2025058250, - "column_id": 10 - }, - { - "name": "validation", - "object_id": 2025058250, - "column_id": 11 - }, - { - "name": "next_fragment", - "object_id": 2025058250, - "column_id": 12 - }, - { - "name": "fragment_size", - "object_id": 2025058250, - "column_id": 13 - }, - { - "name": "fragment_bitmap", - "object_id": 2025058250, - "column_id": 14 - }, - { - "name": "binary_message_body", - "object_id": 2025058250, - "column_id": 15 - }, - { - "name": "message_enqueue_time", - "object_id": 2025058250, - "column_id": 16 - }, - { - "name": "status", - "object_id": 2057058364, - "column_id": 1 - }, - { - "name": "priority", - "object_id": 2057058364, - "column_id": 2 - }, - { - "name": "queuing_order", - "object_id": 2057058364, - "column_id": 3 - }, - { - "name": "conversation_group_id", - "object_id": 2057058364, - "column_id": 4 - }, - { - "name": "conversation_handle", - "object_id": 2057058364, - "column_id": 5 - }, - { - "name": "message_sequence_number", - "object_id": 2057058364, - "column_id": 6 - }, - { - "name": "message_id", - "object_id": 2057058364, - "column_id": 7 - }, - { - "name": "message_type_id", - "object_id": 2057058364, - "column_id": 8 - }, - { - "name": "service_id", - "object_id": 2057058364, - "column_id": 9 - }, - { - "name": "service_contract_id", - "object_id": 2057058364, - "column_id": 10 - }, - { - "name": "validation", - "object_id": 2057058364, - "column_id": 11 - }, - { - "name": "next_fragment", - "object_id": 2057058364, - "column_id": 12 - }, - { - "name": "fragment_size", - "object_id": 2057058364, - "column_id": 13 - }, - { - "name": "fragment_bitmap", - "object_id": 2057058364, - "column_id": 14 - }, - { - "name": "binary_message_body", - "object_id": 2057058364, - "column_id": 15 - }, - { - "name": "message_enqueue_time", - "object_id": 2057058364, - "column_id": 16 - }, - { - "name": "oplsn_fseqno", - "object_id": 2073058421, - "column_id": 1 - }, - { - "name": "oplsn_bOffset", - "object_id": 2073058421, - "column_id": 2 - }, - { - "name": "oplsn_slotid", - "object_id": 2073058421, - "column_id": 3 - }, - { - "name": "file_id", - "object_id": 2073058421, - "column_id": 4 - }, - { - "name": "rowset_guid", - "object_id": 2073058421, - "column_id": 5 - }, - { - "name": "column_guid", - "object_id": 2073058421, - "column_id": 6 - }, - { - "name": "filestream_value_name", - "object_id": 2073058421, - "column_id": 7 - }, - { - "name": "transaction_sequence_num", - "object_id": 2073058421, - "column_id": 8 - }, - { - "name": "status", - "object_id": 2073058421, - "column_id": 9 - }, - { - "name": "size", - "object_id": 2073058421, - "column_id": 10 - }, - { - "name": "commit_ts", - "object_id": 2089058478, - "column_id": 1 - }, - { - "name": "xdes_id", - "object_id": 2089058478, - "column_id": 2 - }, - { - "name": "commit_lbn", - "object_id": 2089058478, - "column_id": 3 - }, - { - "name": "commit_csn", - "object_id": 2089058478, - "column_id": 4 - }, - { - "name": "commit_time", - "object_id": 2089058478, - "column_id": 5 - }, - { - "name": "dbfragid", - "object_id": 2089058478, - "column_id": 6 - }, - { - "name": "table_id", - "object_id": 2105058535, - "column_id": 1 - }, - { - "name": "oplsn_fseqno", - "object_id": 2105058535, - "column_id": 2 - }, - { - "name": "oplsn_bOffset", - "object_id": 2105058535, - "column_id": 3 - }, - { - "name": "oplsn_slotid", - "object_id": 2105058535, - "column_id": 4 - }, - { - "name": "item_guid", - "object_id": 2105058535, - "column_id": 5 + "FK_Name": "FK_Product_ProductModel_ProductModelID", + "Parent_Table": "[SalesLT].[Product]", + "Parent_Column": "ProductModelID", + "Referenced_Table": "[SalesLT].[ProductModel]", + "Referenced_Column": "ProductModelID" + }, + { + "FK_Name": "FK_Product_ProductCategory_ProductCategoryID", + "Parent_Table": "[SalesLT].[Product]", + "Parent_Column": "ProductCategoryID", + "Referenced_Table": "[SalesLT].[ProductCategory]", + "Referenced_Column": "ProductCategoryID" } ] },