Load data with the BulkLoad function

You can load data into an existing time series with the BulkLoad function. This SQL function takes an existing time series and a file name as arguments. The file name is for a file on the client that contains row type data to be loaded into the time series.

The syntax for using BulkLoad with the UPDATE statement and the SET clause is:
update table_name
   set TimeSeries_col=BulkLoad(TimeSeries_col, 'filename')
   where col1='value';

The TimeSeries_col parameter is the name of the column that contains the row type. The filename parameter is the name of the data file. The WHERE clause specifies which row in the table to update.