Table 1921 Profiling Node in 27

App
System Application
Namespace
System.Tooling

Fields, 13Keys, 6

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Performance Profiler/src/ProfilingNode.Table.al86 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Tooling;

/// <summary>
/// A buffer table containing the information recorded by a performance profiler.
/// </summary>
table 1921 "Profiling Node"
{
    Access = Public;
    TableType = Temporary;
    InherentEntitlements = X;
    InherentPermissions = X;

    fields
    {
        field(1; "Session ID"; Integer)
        {
        }
        field(2; "No."; Integer)
        {
        }
        field(3; "Hit Count"; Integer)
        {
        }
        field(4; "Object Type"; Text[250])
        {
        }
        field(5; "Object ID"; Integer)
        {
        }
        field(6; "Object Name"; Text[250])
        {
        }
        field(7; "App Name"; Text[250])
        {
        }
        field(8; "App Publisher"; Text[250])
        {
        }
        field(9; "Line No"; Integer)
        {
        }
        field(10; "Method Name"; Text[1024])
        {
        }
        field(11; "Self Time"; Duration)
        {
        }
        field(12; "Full Time"; Duration)
        {
        }
        field(13; Indentation; Integer)
        {
        }
    }

    keys
    {
        key(PK; "Session ID", "No.")
        {
            Clustered = true;
            SumIndexFields = "Self Time", "Full Time";
        }
        key(key1; "Object Type", "Object ID")
        {
        }
        key(key2; "Object Type", "Object ID", "Method Name")
        {
        }
        key(key3; Indentation)
        {
        }
        key(key4; "Self Time")
        {
        }
        key(key5; "Full Time")
        {
        }
    }
}

Fields, 13

IdNameTypeObsolete
1Session IDInteger-
2No.Integer-
3Hit CountInteger-
4Object TypeText[250]-
5Object IDInteger-
6Object NameText[250]-
7App NameText[250]-
8App PublisherText[250]-
9Line NoInteger-
10Method NameText[1024]-
11Self TimeDuration-
12Full TimeDuration-
13IndentationInteger-

Keys, 6

NameFieldsObsolete
PK, clusteredSession ID, No.-
key1Object Type, Object ID-
key2Object Type, Object ID, Method Name-
key3Indentation-
key4Self Time-
key5Full Time-