Example: Load data with BulkLoad

The following example uses BulkLoad in the SET clause of an UPDATE statement to populate the existing time series in the daily_stocks table:
insert into daily_stocks values
   (999, 'IBM', TSCreate ('daycal',
      '2011-01-03 00:00:00.00000',20,0,0, NULL));

update daily_stocks
   set stock_data=BulkLoad(stock_data,'sam.dat')
   where stock_name='IBM';