Skip to content

$Database.Empty

Overview

DataTable $Database.Empty ( options )

Returns an empty data table for importing data on target table.

Arguments

object options Specifies the options of get operation. String TargetSchema Specifies the name of target schema.

 String __TargetTable__
   Specifies the name of target table.

Remarks

Examples

Get Empty Data Table

var myTable = $Database.Empty({
  TargetSchema: 'HR',
  TargetTable: 'Groups'
});

See Also