Feb 21, 2001 #1 olmsteadf IS-IT--Management Jul 19, 2000 8 US I am looking for a .bat file that can do a procopy and a truncate thru an NT batch file. Can anyone help ?
I am looking for a .bat file that can do a procopy and a truncate thru an NT batch file. Can anyone help ?
Sep 19, 2001 #2 samsoysa IS-IT--Management Sep 18, 2001 17 AU Hi, You can write a simple bat file using the normal batch commands and it will work. eg: in your batch file you can say procopy source-db-name target-db-name -g bi-file -silent -------------------- -silent means: Suppresses the output of work-in progress messages. But this will work only if the path are set. If not you can include the following lines before the procopy line set DLC=<dlc_directory> set PATH=%PATH%%DLC%\bin Good luck Samantha Upvote 0 Downvote
Hi, You can write a simple bat file using the normal batch commands and it will work. eg: in your batch file you can say procopy source-db-name target-db-name -g bi-file -silent -------------------- -silent means: Suppresses the output of work-in progress messages. But this will work only if the path are set. If not you can include the following lines before the procopy line set DLC=<dlc_directory> set PATH=%PATH%%DLC%\bin Good luck Samantha