I need to insert around 50 tables that have bulk data in them via DBLink. I generally use the statement
insert into <table_name>
select * from <table_name>@DBLink
In some cases, it takes too long to insert. What useful database hints can be used in here to speed up the process?