Transfere file from database server to client
841424Apr 2 2011 — edited Apr 5 2011Dears
I am generating file in csv format on database server (using custom application)
The file is generated in database server but when trying to copy it to the client PC i receive not transferred where i were doing the same action on the test server (but it was including the database and Apps on the same sever) and it working fine
I am using code like that:
IF NOT webutil_file_transfer.as_to_client ( 'c:\TEMP\'|| 'p_name'|| '.csv' , 'c:\TEMP\'|| 'p_name'|| '.csv')
THEN
MESSAGE ('Not Transferred');
...
...
...
...
The first parameter is the database localhost and the second parameter is the server host (while the application is running using application server on different server)
I need to copy the file from the datable server directly or to copy on Apps server first and then to the Client PC
Can anybody help?
Thanks In Advance