|
|
|
|
|
|
| Author |
Message |
devmcg03@gmail.com *nix forums beginner
Joined: 18 Jul 2006
Posts: 5
|
Posted: Tue Jul 18, 2006 3:18 pm Post subject:
sql plus handling spaces...
|
|
|
Hi everyone,
I need an answer to a very urgent problem with sqlplus.
I try to launch (from a Java class) sqlplus or plus80, or plus80w, on
Win
NT, with the following command line:
sqlplus -s user/password @path\sqlfile1
The problem comes when the "path" includes spaces (for example
c:\program
files\myapp\sql\).
In this case sqlplus tries to load the file c:\program.sql !!!
I discovered that if I use single quotes the problem is solved for the
command line:
sqlplus -s user/password @'path\sqlfile1'
But, if the "sqlfile1" calls itself a new sql file like in
....
@@sqlfile2
....
which is supposed to use the same path like sqlfile1 (the caller),
again
sqlplus tries to find the file c:\program.sql
Is there any solution to this problem? Is it possible to load in
sqlplus a
file from a directory which has spaces in its name, and this file to
call
other files from the same directory (with @@)?
I will appreciate any help. |
|
| Back to top |
|
 |
Rauf Sarwar *nix forums Guru
Joined: 03 May 2005
Posts: 353
|
Posted: Tue Jul 18, 2006 4:15 pm Post subject:
Re: sql plus handling spaces...
|
|
|
devmcg03@gmail.com wrote:
| Quote: | Hi everyone,
I need an answer to a very urgent problem with sqlplus.
I try to launch (from a Java class) sqlplus or plus80, or plus80w, on
Win
NT, with the following command line:
sqlplus -s user/password @path\sqlfile1
The problem comes when the "path" includes spaces (for example
c:\program
files\myapp\sql\).
In this case sqlplus tries to load the file c:\program.sql !!!
I discovered that if I use single quotes the problem is solved for the
command line:
sqlplus -s user/password @'path\sqlfile1'
But, if the "sqlfile1" calls itself a new sql file like in
...
@@sqlfile2
...
which is supposed to use the same path like sqlfile1 (the caller),
again
sqlplus tries to find the file c:\program.sql
Is there any solution to this problem? Is it possible to load in
sqlplus a
file from a directory which has spaces in its name, and this file to
call
other files from the same directory (with @@)?
I will appreciate any help.
|
1) Don't place sql files in a directory with spaces in names.
2) Change long names (with spaces) to DOS 8.3 short name e.g.
C:\>for /F "tokens=*" %A in ("c:\program files\your file.sql") do echo
%~sA
3) Change current directory to where the sql files are before launching
sqlplus.
Regards
/Rauf |
|
| Back to top |
|
 |
Google
|
|
| Back to top |
|
 |
|
|
The time now is Thu Jan 08, 2009 6:39 am | All times are GMT
|
|
Debt Consolidation | Mbna | Credit Cards | Bankruptcy | Bankruptcy
|
|
Copyright © 2004-2005 DeniX Solutions SRL
|
|
|
|
Other DeniX Solutions sites:
Unix/Linux blog |
electronics forum |
medicine forum |
science forum |
|
|
Privacy Policy
|
Powered by phpBB © 2001, 2005 phpBB Group
|
|