Show / Hide Table of Contents

Class Pivot

Pivot operator has one input and one output. Pivot operator takes group by columns, a pivot key with values and aggregations. Output is the pivoted table.

Inheritance
object
Operator
Pivot
Inherited Members
Operator.Key
Operator.ModelVersion
Operator.ParentRef
Operator.Name
Operator.Description
Operator.ObjectVersion
Operator.InputPorts
Operator.OutputPorts
Operator.ObjectStatus
Operator.Identifier
Operator.Parameters
Operator.OpConfigValues
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class Pivot : Operator

Properties

GroupByColumns

Declaration
[JsonProperty(PropertyName = "groupByColumns")]
public DynamicProxyField GroupByColumns { get; set; }
Property Value
Type Description
DynamicProxyField

MaterializedGroupByColumns

Declaration
[JsonProperty(PropertyName = "materializedGroupByColumns")]
public MaterializedDynamicField MaterializedGroupByColumns { get; set; }
Property Value
Type Description
MaterializedDynamicField

PivotKeys

Declaration
[JsonProperty(PropertyName = "pivotKeys")]
public PivotKeys PivotKeys { get; set; }
Property Value
Type Description
PivotKeys
In this article
Back to top