How to take database export through form 6i [message #86683] |
Tue, 19 October 2004 02:04  |
Tatjana Paunova
Messages: 2 Registered: October 2004
|
Junior Member |
|
|
Please tell me How to take database export through form 6i.
Thanks in advanced!
p.s. I tried with procedure Win_Api_Shell.WinExec in event button-pressed in syntax Win_Api_Shell.WinExec('C:oracledev6iBINifrun60.exe module=G:prg_orc_dev6ifinsnimanje.fmx',WIN_API.SW_SHOWNORMAL,true); but in forms runtime, when I click this button,the forms runtime produced an error "FRM-40735 WHEN-BUTTON-PRESSED trigger raised unhanded exception ORA-06508".
When I had compiled all my routines and completed successfully
Thanks a lot
Tatjana
|
|
|
Re: How to take database export through form 6i [message #86686 is a reply to message #86683] |
Tue, 19 October 2004 03:45   |
Himanshu
Messages: 457 Registered: December 2001
|
Senior Member |
|
|
Privet Tatjana,
In order to take DB export from your form you may simply use Hsot command to call EXP utility.
Make sure that you provide complete command line paramaeters to it.
HOST('exp userid=scott/tiger@dbn005 file=E:exp_dev.dmp log=E:himan.log grants=Y full=Y buffer=1024000');
HTH
Regards
Himanshu
|
|
|
|