Hi,
I have about 150gb data that I'd like to bulk load into a table partitioned
by month. I'm wondering if I could use the COPY command with a trigger on
table to copy this in directly?
At the moment, I'm doing:
copy command into table_x
then sql command:
insert into master_table_a
select * from table_x
thanks,
Danny