RE: NT script question ???

2001-06-05 Thread Gogala, Mladen
; >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: NT script question ??? >Date: Mon, 04 Jun 2001 16:20:49 -0800 > >Go to http://www.activestate.com, get perl, DBI & DBD::Oracle and you'll >have all the cripting t

RE: NT script question ???

2001-06-04 Thread Rachel Carmichael
cripting tools? Mladen, is that some new Egyptian software? >From: "Gogala, Mladen" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> >Subject: RE: NT script question ??? >Date: Mon, 04

RE: NT script question ???

2001-06-04 Thread Gogala, Mladen
Go to http://www.activestate.com, get perl, DBI & DBD::Oracle and you'll have all the cripting tools that you'll ever need. Associative arrays, state of the art reuglar expressions, functions, format commands and well documented ways of accessing the oracle database from within a script (O'Reilly

RE: NT script question ???

2001-06-03 Thread Reardon, Bruce (CALBBAY)
Andrew, Batch parameters are referred to as %1, %2 etc %0 is the name of the calling command. %* refers to all parameters You can use the shift command to move parameters (do help shift) As an example: C:\batch>type param_test.bat @echo off echo %1 echo %2 echo %0 echo %* C:\batch> C:\batch> C:\

NT script question ???

2001-06-02 Thread Andrea Oracle
Hi, I have couple of questions about bat file in NT 4.0 for Oracle 8.1.5. 1. how to make bat file take parameters. I had a backup.bat, and like to pass in Oracle SID, so the script can backup any database. 2. in the bat file, how to dynamically append date/time into a directory name, like ba