From ssharma1@fcsltd.com Mon, 02 Jul 2001 01:01:44 -0700 From: "Saurabh Sharma" Date: Mon, 02 Jul 2001 01:01:44 -0700 Subject: Re: EXECUTING DOS COMMAND IN A STORED PROC? Message-ID: MIME-Version: 1.0 Content-Type: text/plain hi,   i think u should make use of ocopy utility instead of simple copy command. this is provided in oracle_home\bin   jsu replace copy with ocopy.   Saurabh Sharma   saurabh.sh@usa.nethttp://www.geocities.com/saurabh00pc/stride.html
----- Original Message -----
From: Bunyamin K. Karadeniz To: Multiple recipients of list ORACLE-L Sent: Wednesday, June 27, 2001 8:37 PM Subject: EXECUTING DOS COMMAND IN A STORED PROC? Hi gurus, I want to create a stored procedure to move some files to a different location.   CREATE OR REPLACE PROCEDURE  move_file (file_name varchar2) IS begin host copy  C:\file_name.txt D:\file_name.txt; end; /   But does not recognize COPY command here. How can I do that??   Thank you