Re: bash error

2007-04-19 Thread raj8646
If not already solved try to escape brackets e.g exp username/[EMAIL PROTECTED] file=filename.dmp log=filename.log tables\=\(all table names separated by comma\) indexes=n grants=n direct=true srikanth4403 wrote: > > hi all, > > i am trying to take backup of oracle tables by using exp comma

RE: bash error

2007-04-16 Thread Luukkanen Tapio
This is just a basic bourne shell issue. Examine the output of the following commands in your cygwin's bash-window and make the necessary changes to your "exp" command line: bash$ echo foo=(bar,baz) bash$ echo "foo=(bar,baz)" bash$ echo foo="(bar,baz)" bash$ echo foo="("bar,baz")" -Origi

Re: bash error

2007-04-16 Thread Carlo Florendo
srikanth4403 wrote: hi all, i am trying to take backup of oracle tables by using exp command but when i am entering the command it is giving a error as below bash: syntax error near unexpected token `(' So kindly someone tell me how to rectify this and proceed for the normal export. Yes. Pl

RE: bash error

2007-04-16 Thread Dave Korn
On 16 April 2007 08:40, srikanth4403 wrote: > hi all, > > i am trying to take backup of oracle tables by using exp command but when i > am entering the command it is giving a error as below > bash: syntax error near unexpected token `(' > > So kindly someone tell me how to rectify this and proce

Re: Bash error in quote handling

2005-02-14 Thread Arthur I Schwarz
Pechtchanski To: Arthur I Schwarz <[EMAIL PROTECTED]> <[EMAIL PROTECTED] cc: cygwin@cygwin.com .edu> Subject: Re: Bash er

Re: Bash error in quote handling

2005-02-14 Thread Igor Pechtchanski
On Mon, 14 Feb 2005, Arthur I Schwarz wrote: > I think this is an error? Huh? What is? What exactly are the commands you're trying to run? What exactly is the output? What is wrong with the output? Let me try to guess (below): > a. star="*"; echo $star > b. star=*; echo $star You're sa