RE: FTP command -without user interaction

2003-07-04 Thread Saminathan_Seerangan




Hi Bruce,

Thanks for you response. Yes it is Windows environment.
I did follow exactly what you have mentioned in your mail, but i have
problem in login.

Could you please let me where i'm going wrong?

D:\Oracletype ftp_script.txt
open psrsndb2
oracle
temp123
cd sami
get 1.sql
quit
D:\Oracleftp -s:ftp_script.txt
ftp open psrsndb2
Connected to psrsndb2.i2.com.
220 psrsndb2 FTP server (SunOS 5.8) ready.
User (psrsndb2.i2.com:(none)):
331 Password required for oracle .

530 Login incorrect.
Login failed.
ftp
ftp cd sami
530 Please login with USER and PASS.
ftp get 1.sql
530 Please login with USER and PASS.
530 Please login with USER and PASS.
ftp quit
221 Goodbye.

D:\Oracleftp psrsndb2
Connected to psrsndb2.i2.com.
220 psrsndb2 FTP server (SunOS 5.8) ready.
User (psrsndb2.i2.com:(none)): oracle
331 Password required for oracle.
Password:
230 User oracle logged in.
ftp cd sami
250 CWD command successful.
ftp get 1.sql
200 PORT command successful.
150 ASCII data connection for 1.sql (10.153.11.3,4723) (238 bytes).
226 ASCII Transfer complete.
ftp: 245 bytes received in 0.00Seconds 245000.00Kbytes/sec.
ftp bye
221 Goodbye.

D:\Oracle







   
 Reardon, Bruce   
 (CALBBAY)
 [EMAIL PROTECTED]  To 
 malco.riotinto.co Multiple recipients of list 
 m.au ORACLE-L [EMAIL PROTECTED] 
 Sent by:   cc 
 [EMAIL PROTECTED] 
 .com  Subject 
   RE: FTP command -without user   
   interaction 
 07/04/2003 11:59  
 AM
   
   
 Please respond to 
 [EMAIL PROTECTED] 
com
   
   




What OS?
Since you say batch file I will presume Windows.

Use the -s:filename parameter and pass a scriptfile to the ftp command
You can generate the scriptfile on the fly with echo commands and 
symbol redirection:

eg:

   echo verbose off %ftp_tfile%
   echo open %ftp_tgt_node% %ftp_tfile%
   echo %ftp_tgt_user% %ftp_tfile%
   echo %ftp_tgt_pwd% %ftp_tfile%
   echo type ascii %ftp_tfile%
   echo cd %3 %ftp_tfile%
   echo put %1%2 %ftp_tfile%
   echo bye %ftp_tfile%

 rem Do the actual ftp using this script file
 rem TYPE %ftp_tfile%
   ftp -s:%ftp_tfile%

Example:

C:\Temptype ftpscript.ftp
open mynode
username
secretpassword
type ascii
cd sys$login
get login.com
bye
C:\Tempftp -s:ftpscript.ftp
ftp open mynode
Connected to mynode.
220 mynode FTP Server (Version V4.1-12) Ready.
User (mynode:(none)):
331 Username USERNAME requires a Password.

230 User logged in.
ftp
ftp type ascii
200 TYPE set to ASCII.
ftp cd sys$login
250 CWD command succesful.
ftp get login.com
200 PORT command successful.
150 Opening data connection for login.com (a.b.c.d,2828)
226 Transfer complete.
ftp: 1570 bytes received in 0.20Seconds 7.85Kbytes/sec.
ftp bye
221 Goodbye.

C:\Temp

HTH,
Bruce Reardon

-Original Message-
Sent: Friday, 4 July 2003 4:09 PM

Hi All,

How to execute FTP command without interaction. Basically i want to supply
hostname,username,passwors,filename thru batch script.

For example

ftp hostname userName passWord fileName

Could someone help me to do the same?

Thanks
Sami
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Reardon, Bruce (CALBBAY)
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City

Re: FTP command -without user interaction

2003-07-04 Thread Amit Nargotra
That was about ftp. That is fine. Can anyone help on how to execute the
batch file (.bat) or windows executable file (.exe) using Oracle
Procedure...?

Thanks,
Amit Nargotra

- Original Message -
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
Sent: Friday, July 04, 2003 11:59 AM


 What OS?
 Since you say batch file I will presume Windows.

 Use the -s:filename parameter and pass a scriptfile to the ftp command
 You can generate the scriptfile on the fly with echo commands and 
symbol redirection:

 eg:

echo verbose off %ftp_tfile%
echo open %ftp_tgt_node% %ftp_tfile%
echo %ftp_tgt_user% %ftp_tfile%
echo %ftp_tgt_pwd% %ftp_tfile%
echo type ascii %ftp_tfile%
echo cd %3 %ftp_tfile%
echo put %1%2 %ftp_tfile%
echo bye %ftp_tfile%

 rem Do the actual ftp using this script file
rem TYPE %ftp_tfile%
ftp -s:%ftp_tfile%

 Example:

 C:\Temptype ftpscript.ftp
 open mynode
 username
 secretpassword
 type ascii
 cd sys$login
 get login.com
 bye
 C:\Tempftp -s:ftpscript.ftp
 ftp open mynode
 Connected to mynode.
 220 mynode FTP Server (Version V4.1-12) Ready.
 User (mynode:(none)):
 331 Username USERNAME requires a Password.

 230 User logged in.
 ftp
 ftp type ascii
 200 TYPE set to ASCII.
 ftp cd sys$login
 250 CWD command succesful.
 ftp get login.com
 200 PORT command successful.
 150 Opening data connection for login.com (a.b.c.d,2828)
 226 Transfer complete.
 ftp: 1570 bytes received in 0.20Seconds 7.85Kbytes/sec.
 ftp bye
 221 Goodbye.

 C:\Temp

 HTH,
 Bruce Reardon

 -Original Message-
 Sent: Friday, 4 July 2003 4:09 PM

 Hi All,

 How to execute FTP command without interaction. Basically i want to supply
 hostname,username,passwors,filename thru batch script.

 For example

 ftp hostname userName passWord fileName

 Could someone help me to do the same?

 Thanks
 Sami
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 --
 Author: Reardon, Bruce (CALBBAY)
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- 858-538-5051 http://www.fatcity.com
 San Diego, California-- Mailing list and web hosting services
 -
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Amit Nargotra
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


Re: FTP command -without user interaction

2003-07-04 Thread Amit Nargotra
YOu have to check for your password. I am using same kind of job for working
with this batch file. All I do is use two files.. One batch file and
other the parameter file...
Below is the copy of the same...
===
Batch File
===
ftp -v -n -s:amit.txt
o--o--o
===
amit.txt contents
===
open 192.168.26.45
user anonymous try@
verbose
prompt
ascii
cd d/smsc5/server/input/
put amit.aut
close
o-o--o


Hope this helps


Amit Nargotra



- Original Message -
To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
Sent: Friday, July 04, 2003 1:39 PM






 Hi Bruce,

 Thanks for you response. Yes it is Windows environment.
 I did follow exactly what you have mentioned in your mail, but i have
 problem in login.

 Could you please let me where i'm going wrong?

 D:\Oracletype ftp_script.txt
 open psrsndb2
 oracle
 temp123
 cd sami
 get 1.sql
 quit
 D:\Oracleftp -s:ftp_script.txt
 ftp open psrsndb2
 Connected to psrsndb2.i2.com.
 220 psrsndb2 FTP server (SunOS 5.8) ready.
 User (psrsndb2.i2.com:(none)):
 331 Password required for oracle .

 530 Login incorrect.
 Login failed.
 ftp
 ftp cd sami
 530 Please login with USER and PASS.
 ftp get 1.sql
 530 Please login with USER and PASS.
 530 Please login with USER and PASS.
 ftp quit
 221 Goodbye.

 D:\Oracleftp psrsndb2
 Connected to psrsndb2.i2.com.
 220 psrsndb2 FTP server (SunOS 5.8) ready.
 User (psrsndb2.i2.com:(none)): oracle
 331 Password required for oracle.
 Password:
 230 User oracle logged in.
 ftp cd sami
 250 CWD command successful.
 ftp get 1.sql
 200 PORT command successful.
 150 ASCII data connection for 1.sql (10.153.11.3,4723) (238 bytes).
 226 ASCII Transfer complete.
 ftp: 245 bytes received in 0.00Seconds 245000.00Kbytes/sec.
 ftp bye
 221 Goodbye.

 D:\Oracle








  Reardon, Bruce
  (CALBBAY)
  [EMAIL PROTECTED]  To
  malco.riotinto.co Multiple recipients of list
  m.au ORACLE-L [EMAIL PROTECTED]
  Sent by:   cc
  [EMAIL PROTECTED]
  .com  Subject
RE: FTP command -without user
interaction
  07/04/2003 11:59
  AM


  Please respond to
  [EMAIL PROTECTED]
 com






 What OS?
 Since you say batch file I will presume Windows.

 Use the -s:filename parameter and pass a scriptfile to the ftp command
 You can generate the scriptfile on the fly with echo commands and 
 symbol redirection:

 eg:

echo verbose off %ftp_tfile%
echo open %ftp_tgt_node% %ftp_tfile%
echo %ftp_tgt_user% %ftp_tfile%
echo %ftp_tgt_pwd% %ftp_tfile%
echo type ascii %ftp_tfile%
echo cd %3 %ftp_tfile%
echo put %1%2 %ftp_tfile%
echo bye %ftp_tfile%

  rem Do the actual ftp using this script file
  rem TYPE %ftp_tfile%
ftp -s:%ftp_tfile%

 Example:

 C:\Temptype ftpscript.ftp
 open mynode
 username
 secretpassword
 type ascii
 cd sys$login
 get login.com
 bye
 C:\Tempftp -s:ftpscript.ftp
 ftp open mynode
 Connected to mynode.
 220 mynode FTP Server (Version V4.1-12) Ready.
 User (mynode:(none)):
 331 Username USERNAME requires a Password.

 230 User logged in.
 ftp
 ftp type ascii
 200 TYPE set to ASCII.
 ftp cd sys$login
 250 CWD command succesful.
 ftp get login.com
 200 PORT command successful.
 150 Opening data connection for login.com (a.b.c.d,2828)
 226 Transfer complete.
 ftp: 1570 bytes received in 0.20Seconds 7.85Kbytes/sec.
 ftp bye
 221 Goodbye.

 C:\Temp

 HTH,
 Bruce Reardon

 -Original Message-
 Sent: Friday, 4 July 2003 4:09 PM

 Hi All,

 How to execute FTP command without interaction. Basically i want to supply
 hostname,username,passwors,filename thru batch script.

 For example

 ftp hostname userName passWord fileName

 Could someone help me to do the same?

 Thanks
 Sami
 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 --
 Author: Reardon, Bruce (CALBBAY)
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- 858-538-5051 http://www.fatcity.com
 San Diego, California-- Mailing list and web hosting services
 -
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).


 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.net
 --
 Author:
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- 858-538-5051 http://www.fatcity.com
 San Diego, California

RE: FTP command -without user interaction

2003-07-03 Thread Reardon, Bruce (CALBBAY)
What OS?
Since you say batch file I will presume Windows.

Use the -s:filename parameter and pass a scriptfile to the ftp command
You can generate the scriptfile on the fly with echo commands and  symbol 
redirection:

eg:

   echo verbose off %ftp_tfile%
   echo open %ftp_tgt_node% %ftp_tfile%
   echo %ftp_tgt_user% %ftp_tfile%
   echo %ftp_tgt_pwd% %ftp_tfile%
   echo type ascii %ftp_tfile%
   echo cd %3 %ftp_tfile%
   echo put %1%2 %ftp_tfile%
   echo bye %ftp_tfile%

rem Do the actual ftp using this script file
rem TYPE %ftp_tfile%
   ftp -s:%ftp_tfile%

Example:

C:\Temptype ftpscript.ftp
open mynode
username
secretpassword
type ascii
cd sys$login
get login.com
bye
C:\Tempftp -s:ftpscript.ftp
ftp open mynode
Connected to mynode.
220 mynode FTP Server (Version V4.1-12) Ready.
User (mynode:(none)):
331 Username USERNAME requires a Password.

230 User logged in.
ftp
ftp type ascii
200 TYPE set to ASCII.
ftp cd sys$login
250 CWD command succesful.
ftp get login.com
200 PORT command successful.
150 Opening data connection for login.com (a.b.c.d,2828)
226 Transfer complete.
ftp: 1570 bytes received in 0.20Seconds 7.85Kbytes/sec.
ftp bye
221 Goodbye.

C:\Temp

HTH,
Bruce Reardon

-Original Message-
Sent: Friday, 4 July 2003 4:09 PM

Hi All,

How to execute FTP command without interaction. Basically i want to supply
hostname,username,passwors,filename thru batch script.

For example

ftp hostname userName passWord fileName

Could someone help me to do the same?

Thanks
Sami
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Reardon, Bruce (CALBBAY)
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


RE: Ftp command

2002-01-21 Thread Carle, William T (Bill), ALINF

Hi,

Here is a script that will do what you want. Just fill in the appropriate values 
for the first 5 environment variables and it should send all your files to the 
appropriate place without you having to be prompted for each file.

DEST=machine
LOGIN=yourid
PASSWD=yourpasswd
FROMDIR=fromdir
TODIR=todir
FILES=*
export DEST LOGIN PASSWD FROMDIR TODIR FILES
ftp -v -n -i $DEST FTPEND
user  $LOGIN $PASSWD
lcd $FROMDIR
cd $TODIR
prompt
mput $FILES
FTPEND   


Bill Carle
ATT
Database Administrator
816-995-3922
[EMAIL PROTECTED]

 -Original Message-
Sent:   Monday, January 21, 2002 8:55 AM
To: Multiple recipients of list ORACLE-L
Subject:Ftp command

Hallo,

anyone whom can tell me how to write the ftp command if I want to receive all files in 
the unix directory to the hard drive without to need reply yes for each file.
using the command mget I suppose but ar ethere any options I might use. The same 
question if i want to copy files from harddrive to the unix library, using th ecommand 
mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Carle, William T (Bill), ALINF
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Ftp command

2002-01-21 Thread SARKAR, Samir

At the ftp prompt, type the wordpromptin the following way :

ftp prompt

Hope this helps,

Samir

Samir Sarkar
Oracle DBA - Lennon Team
SchlumbergerSema
Email :  [EMAIL PROTECTED]
[EMAIL PROTECTED] 
Phone : +44 (0) 115 - 95 76217
EPABX : +44 (0) 115 - 957 6418 Ext. 76217
Fax : +44 (0) 115 - 957 6018


-Original Message-
Sent: 21 January 2002 14:55
To: Multiple recipients of list ORACLE-L


Hallo,

anyone whom can tell me how to write the ftp command if I want to receive
all files in the unix directory to the hard drive without to need reply yes
for each file.
using the command mget I suppose but ar ethere any options I might use. The
same question if i want to copy files from harddrive to the unix library,
using th ecommand mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


___
This email is confidential and intended solely for the use of the 
individual to whom it is addressed. Any views or opinions presented are 
solely those of the author and do not necessarily represent those of 
SchlumbergerSema. 
If you are not the intended recipient, be advised that you have received this
email in error and that any use, dissemination, forwarding, printing, or 
copying of this email is strictly prohibited.

If you have received this email in error please notify the SchlumbergerSema Helpdesk 
by telephone on +44 (0) 121 627 5600.
___

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: SARKAR, Samir
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Ftp command

2002-01-21 Thread nlzanen1



Hi,


use the -iflag. This turns off interactive mode

I believe you can also use the command prompt at the ftp prompt

Jack




[EMAIL PROTECTED]@fatcity.com on 21-01-2002 15:55:22

Please respond to [EMAIL PROTECTED]

Sent by:  [EMAIL PROTECTED]


To:   Multiple recipients of list ORACLE-L [EMAIL PROTECTED]
cc:(bcc: Jack van Zanen/nlzanen1/External/MEY/NL)

Hallo,

anyone whom can tell me how to write the ftp command if I want to receive
all files in the unix directory to the hard drive without to need reply yes
for each file.
using the command mget I suppose but ar ethere any options I might use. The
same question if i want to copy files from harddrive to the unix library,
using th ecommand mput

Thanks in advance


Roland S

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).




===
De informatie verzonden met dit E-mail bericht is uitsluitend bestemd voor
de geadresseerde. Gebruik van deze informatie door anderen dan de
geadresseerde is verboden. Openbaarmaking, vermenigvuldiging, verspreiding
en/of verstrekking van deze informatie aan derden is niet toegestaan.
Ernst  Young staat niet in voor de juiste en volledige overbrenging van de
inhoud van een verzonden E-mail, noch voor tijdige ontvangst daarvan.
===
The information contained in this communication is confidential and may be
legally privileged. It is intended solely for the use of the individual or
entity to whom it is addressed and others authorised to receive it. If you
are not the intended recipient you are hereby notified that any disclosure,
copying,  distribution or taking any action in reliance on the contents of
this information is strictly prohibited and may be unlawful. Ernst 
Young is neither liable  for the proper and complete transmission of the
information contained in this communication nor for any delay in its
receipt.
===





-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Ftp command

2002-01-21 Thread Haunschmidt Andreas VASL.FAS

Try to enter the ftp command named  prompt,
with that, you can toggle asking on and off.


HTH
Andreas

 --
 Von:  [EMAIL PROTECTED][SMTP:[EMAIL PROTECTED]]
 Gesendet: Montag, 21. Januar 2002 15:55
 An:   Multiple recipients of list ORACLE-L
 Betreff:  Ftp command
 
 Hallo,
 
 anyone whom can tell me how to write the ftp command if I want to receive
 all files in the unix directory to the hard drive without to need reply
 yes for each file.
 using the command mget I suppose but ar ethere any options I might use.
 The same question if i want to copy files from harddrive to the unix
 library, using th ecommand mput
 
 Thanks in advance
 
 
 Roland S
 
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: 
   INET: [EMAIL PROTECTED]
 
 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).
 
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Haunschmidt Andreas VASL.FAS
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Ftp command

2002-01-21 Thread Toepke, Kevin M

I think he's asking about the turning the prompt off...try typing prompt
before using the mget/mput commands.

-Original Message-
Sent: Monday, January 21, 2002 10:36 AM
To: Multiple recipients of list ORACLE-L


Is there a reason why you don't want to use the perfectly acceptable
mput/mget utilities provided with ftp ??


-Original Message-
Sent: 21 January 2002 14:55
To: Multiple recipients of list ORACLE-L


Hallo,

anyone whom can tell me how to write the ftp command if I want to receive
all files in the unix directory to the hard drive without to need reply yes
for each file.
using the command mget I suppose but ar ethere any options I might use. The
same question if i want to copy files from harddrive to the unix library,
using th ecommand mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Toepke, Kevin M
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Ftp command

2002-01-21 Thread david hill

when you connnect through ftp i always use
ftp -inv servername

that stop you from having to enter Y after each file

-Original Message-
Sent: Monday, January 21, 2002 9:55 AM
To: Multiple recipients of list ORACLE-L


Hallo,

anyone whom can tell me how to write the ftp command if I want to receive
all files in the unix directory to the hard drive without to need reply yes
for each file.
using the command mget I suppose but ar ethere any options I might use. The
same question if i want to copy files from harddrive to the unix library,
using th ecommand mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: david hill
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Ftp command

2002-01-21 Thread Seefelt, Beth


In NT there is a -i switch for ftp that will get rid of the prompts.
Don't know if its available in unix.


-Original Message-
Sent: Monday, January 21, 2002 9:55 AM
To: Multiple recipients of list ORACLE-L


Hallo,

anyone whom can tell me how to write the ftp command if I want to
receive all files in the unix directory to the hard drive without to
need reply yes for each file. using the command mget I suppose but ar
ethere any options I might use. The same question if i want to copy
files from harddrive to the unix library, using th ecommand mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the
message BODY, include a line containing: UNSUB ORACLE-L (or the name of
mailing list you want to be removed from).  You may also send the HELP
command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Seefelt, Beth
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Ftp command

2002-01-21 Thread MIGUEL ANGEL MEJIA ARGUETA

This is very easy, the only one that you have tu put with the ftp session open  is:

ftp  prompt

You will see a message :
Interactive mode off.

after that you write the mget or mput *.* and  thats all.

[EMAIL PROTECTED] wrote:

 Hallo,

 anyone whom can tell me how to write the ftp command if I want to receive all files 
in the unix directory to the hard drive without to need reply yes for each file.
 using the command mget I suppose but ar ethere any options I might use. The same 
question if i want to copy files from harddrive to the unix library, using th 
ecommand mput

 Thanks in advance

 Roland S

 --
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 --
 Author:
   INET: [EMAIL PROTECTED]

 Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
 San Diego, California-- Public Internet access / Mailing Lists
 
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).


begin:vcard 
n:Argueta;Miguel Angel Mejía Argueta
tel;work:Telcel   56253700 Ext. 1721
x-mozilla-html:FALSE
org:TELCEL;Aseguramiento de Ingresos
version:2.1
email;internet:[EMAIL PROTECTED]
title:AUDITOR
adr;quoted-printable:;;Ejercito Nacional 488=0D=0ACol. Polanco;México;D.F.;;Mexico
x-mozilla-cpt:;-19616
fn:Miguel Angel Mejía Argueta
end:vcard



RE: Ftp command

2002-01-21 Thread Sherman, Paul R.

you enter the command prompt, to flip the switch, then mget *, or mget
prefix*, or *suffix. For UNIX, using SmartTerm, I use the ftp drag 
drop tool.

Thank you,

Paul Sherman
DBA
voice -  781-501-4143 (office)
fax-  781-278-8341 (office)
email - [EMAIL PROTECTED]


-Original Message-
Sent: Monday, January 21, 2002 9:55 AM
To: Multiple recipients of list ORACLE-L


Hallo,

anyone whom can tell me how to write the ftp command if I want to receive
all files in the unix directory to the hard drive without to need reply yes
for each file.
using the command mget I suppose but ar ethere any options I might use. The
same question if i want to copy files from harddrive to the unix library,
using th ecommand mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Sherman, Paul R.
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Ftp command

2002-01-21 Thread Robertson Lee - lerobe

Good point Kevin, maybe I should read the question more thorougly next time.
Apologies Roland, I believe there is a flag to run non -interactive (-i)

Cheers

Lee


-Original Message-
Sent: 21 January 2002 16:15
To: Multiple recipients of list ORACLE-L


I think he's asking about the turning the prompt off...try typing prompt
before using the mget/mput commands.

-Original Message-
Sent: Monday, January 21, 2002 10:36 AM
To: Multiple recipients of list ORACLE-L


Is there a reason why you don't want to use the perfectly acceptable
mput/mget utilities provided with ftp ??


-Original Message-
Sent: 21 January 2002 14:55
To: Multiple recipients of list ORACLE-L


Hallo,

anyone whom can tell me how to write the ftp command if I want to receive
all files in the unix directory to the hard drive without to need reply yes
for each file.
using the command mget I suppose but ar ethere any options I might use. The
same question if i want to copy files from harddrive to the unix library,
using th ecommand mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Toepke, Kevin M
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Ftp command

2002-01-21 Thread Ball, Terry

Try prompt before issuing the mget or mput command.

Terry

-Original Message-
Sent: 21 January 2002 14:55
To: Multiple recipients of list ORACLE-L


Hallo,

anyone whom can tell me how to write the ftp command if I want to receive
all files in the unix directory to the hard drive without to need reply yes
for each file.
using the command mget I suppose but ar ethere any options I might use. The
same question if i want to copy files from harddrive to the unix library,
using th ecommand mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Ball, Terry
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Ftp command

2002-01-21 Thread Kimberly Smith

If you turn prompt off you do not get the question.

-Original Message-
Lee - lerobe
Sent: Monday, January 21, 2002 7:36 AM
To: Multiple recipients of list ORACLE-L


Is there a reason why you don't want to use the perfectly acceptable
mput/mget utilities provided with ftp ??


-Original Message-
Sent: 21 January 2002 14:55
To: Multiple recipients of list ORACLE-L


Hallo,

anyone whom can tell me how to write the ftp command if I want to receive
all files in the unix directory to the hard drive without to need reply yes
for each file.
using the command mget I suppose but ar ethere any options I might use. The
same question if i want to copy files from harddrive to the unix library,
using th ecommand mput

Thanks in advance


Roland S

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: 
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).


The information contained in this communication is
confidential, is intended only for the use of the recipient
named above, and may be legally privileged. If the reader 
of this message is not the intended recipient, you are
hereby notified that any dissemination, distribution or
copying of this communication is strictly prohibited.  
If you have received this communication in error, please 
re-send this communication to the sender and delete the 
original message or any copy of it from your computer
system.
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Robertson Lee - lerobe
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Kimberly Smith
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).