web-dev-qa-db-fra.com

Ligne de commande SQLPLUS avec fichier de commandes Windows

Je veux créer un fichier batch qui ouvrira SQLPLUS [CLI] et exécutera un fichier sql stocké et stockera également la sortie dans un fichier texte.

J'ai donc créé ce fichier batch [qui ne fonctionne pas].
Ce fichier SQL contient du SQL qui renvoie le nombre maximum d'une table.

sqlplus scott/tiger@DB
@sql1.sql>data1.txt
@sql2.sql>data2.txt

Le problème est qu'il n'exécute pas les fichiers SQL après l'ouverture de SQLPLUS

  • Windows XP
  • Oracle 9i
7
Sourav

Qu'en est-il du SQL natif * plus la mise en file d'attente?

run.bat:

sqlplus hr/hr@sandbox @d:\run.sql

run.sql:

spool d:\run.log
set echo on 

select * from dual
/
exit

run.log:

01:50:20 HR@sandbox> 
01:50:20 HR@sandbox> select * from dual
01:50:20   2  /

D
-
X

Elapsed: 00:00:00.00
01:50:21 HR@sandbox> exit
12
be here now
SET Oracle_SID=<YOUR SID HERE>

sqlplus scott/tiger@DB < sql1.sql > data1.txt
sqlplus scott/tiger@DB < sql2.sql > data2.txt
3
valex

Pour votre information et pour le reste de la communauté, j'utilisais cette ligne de commande dans un fichier DOS:

sqlplus.exe SIEBEL/mypass@mydb @D:\App\Siebel\EIM\sql\my_sql_command.sql

et la sortie était:

SQL*Plus: Release 11.2.0.1.0 Production on Mar. Sept. 13 11:53:52 2016

Copyright (c) 1982, 2010, Oracle.  All rights reserved.

ERROR:
ORA-12154: TNS : .....

en fait, j'ai eu une erreur dans la ligne de commande ....

sqlplus.exe SIEBEL/mypass@mydb**%** @D:\App\Siebel\EIM\sql\my_sql_command.sql
1
Roland