Re: Piping output from sqlplus

2004-12-21 Thread Chuck
Christopher Faylor wrote: On Mon, Dec 20, 2004 at 10:02:22AM -0500, Chuck wrote: Bakken, Luke wrote: I need a korn shell that will handle the windows-like path names (pdksh), and where read executes in the same shell that called it (ksh '93). Keep wishing. There are other ways of doing what you

Re: Piping output from sqlplus

2004-12-20 Thread Chuck
Bakken, Luke wrote: I need a korn shell that will handle the windows-like path names (pdksh), and where read executes in the same shell that called it (ksh '93). Keep wishing. There are other ways of doing what you need to do with sqlplus without using a pipe and read. I have dozen's of ksh

Re: Piping output from sqlplus

2004-12-20 Thread Igor Pechtchanski
On Mon, 20 Dec 2004, Chuck wrote: Bakken, Luke wrote: I need a korn shell that will handle the windows-like path names (pdksh), and where read executes in the same shell that called it (ksh '93). Keep wishing. There are other ways of doing what you need to do with sqlplus without

Re: Piping output from sqlplus

2004-12-20 Thread Christopher Faylor
On Mon, Dec 20, 2004 at 10:02:22AM -0500, Chuck wrote: Bakken, Luke wrote: I need a korn shell that will handle the windows-like path names (pdksh), and where read executes in the same shell that called it (ksh '93). Keep wishing. There are other ways of doing what you need to do with sqlplus

RE: Piping output from sqlplus

2004-12-17 Thread Dave Korn
-Original Message- From: cygwin-owner On Behalf Of Chuck Sent: 17 December 2004 12:59 -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bakken, Luke wrote: |Why would ksh behave differently under Cygwin than under Solaris? | | | cygwin ksh is pdksh. The specific set of code you

Re: Piping output from sqlplus

2004-12-17 Thread Chuck
Bakken, Luke wrote: Why would ksh behave differently under Cygwin than under Solaris? cygwin ksh is pdksh. The specific set of code you gave does not work in pdksh. Read about it here: http://web.cs.mun.ca/~michael/pdksh/ Its weak points are that there are still a few differences from ksh88 (the

Re: Piping output from sqlplus

2004-12-17 Thread Christopher Faylor
On Fri, Dec 17, 2004 at 11:26:15AM -0500, Chuck wrote: Bakken, Luke wrote: Why would ksh behave differently under Cygwin than under Solaris? cygwin ksh is pdksh. The specific set of code you gave does not work in pdksh. Read about it here: http://web.cs.mun.ca/~michael/pdksh/ Its weak points

Re: Piping output from sqlplus

2004-12-17 Thread Chuck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christopher Faylor wrote: | On Fri, Dec 17, 2004 at 11:26:15AM -0500, Chuck wrote: | |Bakken, Luke wrote: | |Why would ksh behave differently under Cygwin than under Solaris? | | |cygwin ksh is pdksh. The specific set of code you gave does not work in

RE: Piping output from sqlplus

2004-12-17 Thread Bakken, Luke
I need a korn shell that will handle the windows-like path names (pdksh), and where read executes in the same shell that called it (ksh '93). Keep wishing. There are other ways of doing what you need to do with sqlplus without using a pipe and read. -- Unsubscribe info:

RE: Piping output from sqlplus

2004-12-16 Thread Buchbinder, Barry (NIH/NIAID)
At Thursday, December 16, 2004 3:29 PM, Chuck wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm having a strange problem reading the output from sqlplus in Cygwin. Sqlplus is a windows command line program used to access oracle databases. My command looks something like this...

Re: Piping output from sqlplus

2004-12-16 Thread Christopher Faylor
On Thu, Dec 16, 2004 at 03:29:16PM -0500, Chuck wrote: I'm having a strange problem reading the output from sqlplus in Cygwin. Sqlplus is a windows command line program used to access oracle databases. My command looks something like this... sqlplus -s ! | read line user/[EMAIL PROTECTED] set

Re: Piping output from sqlplus

2004-12-16 Thread Chuck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Buchbinder, Barry (NIH/NIAID) wrote: | At Thursday, December 16, 2004 3:29 PM, Chuck wrote: | |-BEGIN PGP SIGNED MESSAGE- |Hash: SHA1 | |I'm having a strange problem reading the output from sqlplus in |Cygwin. Sqlplus is a windows command line

Re: Piping output from sqlplus

2004-12-16 Thread Chuck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christopher Faylor wrote: | On Thu, Dec 16, 2004 at 03:29:16PM -0500, Chuck wrote: | |I'm having a strange problem reading the output from sqlplus in Cygwin. |Sqlplus is a windows command line program used to access oracle |databases. My command looks

RE: Piping output from sqlplus

2004-12-16 Thread Bakken, Luke
Why would ksh behave differently under Cygwin than under Solaris? cygwin ksh is pdksh. The specific set of code you gave does not work in pdksh. Read about it here: http://web.cs.mun.ca/~michael/pdksh/ Its weak points are that there are still a few differences from ksh88 (the major one is that

RE: Piping output from sqlplus

2004-12-16 Thread Buchbinder, Barry (NIH/NIAID)
At Thursday, December 16, 2004 3:57 PM, Chuck wrote: Buchbinder, Barry (NIH/NIAID) wrote: At Thursday, December 16, 2004 3:29 PM, Chuck wrote: I'm having a strange problem reading the output from sqlplus in Cygwin. Sqlplus is a windows command line program used to access oracle databases.