If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
SQL command for turning off trigger and loging mode
Hi,
I have to load a 10000000-line file to a table which is with triggers, and the DB is with unbuffered loging.
What shall I do to load the fat file as quick as possible?
Is it possible to turn off trigger and loging mode in SQL language? How?
I need the SQL command and execute it for a everyday job.
There are some way, for example:
Disabled trigger, set triggers for table disabled.
Use utility dbload.
Alter table to type raw, next insert, alter table to type standard and do back-up.
Use utility onpload.