Bragi Docs Help

AppendDataToWarehouseTable

Given a schema, table name e.g. dbo.myTable and a DataTable appends the data from DataTable into the Warehouse Table. Note that the DataTable declaration must match the warehouse table e.g. column names and data types.

Task AppendDataToWarehouseTable(string schema, string name, DataTable appends);

Parameters

  • schema: Schema e.g. "dbo"

  • name: Table name e.g. "myTable"

  • appends: The DataTable which matches columns and data types with the schema and table Warehouse table

15 September 2025