I have set vi as default editor by editing glogin.sql
define_editor=vi
I have set vi as default editor by editing glogin.sql
define_editor=vi
Hi,
Here you have both – XML extraction to generate CSV:
http://laurentschneider.com/wordpress/2007/05/csv-format-with-select.html
Regards,
Here are are some suggestions.
Here are are some suggestions from Chris Marquez
———————–
Faster IMPORTS
———————–
Set IMP parameter COMMIT = Y.
Set IMP parameter RECORDLENGTH >= EXP RECORDLENGTH value.
Set IMP parameter BUFFER = MB (Set in the MB range not KB range)
Set IMP parameter STATISTICS = NONE (9i, n/a 8i)
Set IMP parameter RECALCULATE_STATISTICS = N. (8i, n/a 9i)
Set IMP parameter ANALYZE = N. (8i, n/a 9i)
Set IMP parameter INDEXES = N (Import them later…separately)
Set init.ora parameter LOG_ARCHIVE_START = FALSE *&* alter database
noarchivelog;
Set init.ora parameter _disable_logging = TRUE (Warning, this could be
dangerous and unrecoverable in failure. Backup immediately after import
- * Redo records (to disk) will NOT be generated (redo WAS generated in
the log buffer.) [Even with _disable_logging you still "switch" logs
when they get "full"])
Set init.ora parameter _wait_for_sync = FALSE (Warning, this could be
dangerous and unrecoverable in failure. Backup immediately after import
- _wait_for_sync: Wait_for_sync is an oracle generic parameter which,
when set to false, will allow the system to complete commits without
waiting for the redo-log buffer flushes to complete.)
Make redo logs enormous; 500MB, 1GB, etc.
Use Locally Managed Tablespaces on target database.