How to export oracle database with NLS_LANG as a requirement?
The following script to achieve that.
set NLS_LANG=AMERICAN_AMERICA.AL32UTF8
expdp username/password@database_instance_name directory=EXPORT_DIR dumpfile=FULL_EXP_databse.dmp logfile=full_exp_database.log full=y compression=all
pause
|
By:JF
0 Comments