RE: how to generate unique file names on Windows.

2003-09-30 Thread Bob Metelsky
=yourPREFIX_%pre: =_%%Hour: =_%%Mins: =_%%Secs: =_%%Mill:=_%.txt ## hth bob I am trying to write a script on windows that would export the db every night. Can someone tell me how to generate unique file names on windows... What I am looking

how to generate unique file names on Windows.

2003-09-24 Thread Murali_Pavuloori/Claritas
Hello, I am trying to write a script on windows that would export the db every night. Can someone tell me how to generate unique file names on windows... What I am looking for is the windows equivalent of echo `date +%m%d%y` Thanks in advance. Murali. -- Please see the official ORACLE-L

Re: how to generate unique file names on Windows.

2003-09-24 Thread Wolfgang Breitling
on windows that would export the db every night. Can someone tell me how to generate unique file names on windows... What I am looking for is the windows equivalent of echo `date +%m%d%y` Thanks in advance. Murali. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: INET

RE: how to generate unique file names on Windows.

2003-09-24 Thread Khedr, Waleed
. Can someone tell me how to generate unique file names on windows... What I am looking for is the windows equivalent of echo `date +%m%d%y` Thanks in advance. Murali. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: INET: Murali_Pavuloori/[EMAIL PROTECTED] Fat

RE: how to generate unique file names on Windows.

2003-09-24 Thread Jamadagni, Rajendra
Title: RE: how to generate unique file names on Windows. IIRC (this is from memory) type somefile.bat for /f tokens=1-4 delims=/ %%a in ('date /t') do set newdate=%%b%%c%%d rename abc.txt abc.txt_%newdate% this will append mmdd to the file but it will work in batch file only. Raj

RE: how to generate unique file names on Windows.

2003-09-24 Thread Branimir Petrovic
-Original Message- From: Murali_Pavuloori/[EMAIL PROTECTED] [mailto:Murali_Pavuloori/[EMAIL PROTECTED] Sent: September 24, 2003 1:45 PM To: Multiple recipients of list ORACLE-L Subject: how to generate unique file names on Windows. Hello, I am trying to write a script

Re: how to generate unique file names on Windows.

2003-09-24 Thread Jared . Still
a script on windows that would export the db every night. Can someone tell me how to generate unique file names on windows... What I am looking for is the windows equivalent of echo `date +%m%d%y` Thanks in advance. Murali. -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author