Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/three.js/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在sqlplus中,ttitle显示错误_Sqlplus - Fatal编程技术网

在sqlplus中,ttitle显示错误

在sqlplus中,ttitle显示错误,sqlplus,Sqlplus,我在spool和spool off之间的一些SQL文件中使用ttitle left'blabla'来显示SQLPlus中生成的文件中的一些标题 有时它起作用,有时它抛出: SP2-0734: unknown command beginning 'left 'blabla' - rest of line ignored. 你知道问题出在哪里吗 我曾考虑过DOS和UNIX之间的文件转换,但事实并非如此 多谢各位 代码示例 spool $P_LOG/Amia_Autr clear columns c

我在spool和spool off之间的一些SQL文件中使用ttitle left'blabla'来显示SQLPlus中生成的文件中的一些标题

有时它起作用,有时它抛出:

SP2-0734: unknown command beginning 'left 'blabla' - rest of line ignored.
你知道问题出在哪里吗

我曾考虑过DOS和UNIX之间的文件转换,但事实并非如此

多谢各位

代码示例

spool $P_LOG/Amia_Autr
clear columns
column  ident   format a40    heading  'Identifiant'
column  montant  heading  'Montant     '
column montant  format  B999999,99
column euro heading ' '
column  modpai  heading  'Mode de paiement'
column  today   noprint new_value datejour 

ttitle left _nomregion skip 2 -
   left 'Edition du ' FORMAT DATE datejour skip 1 -
   left 'Application AGATA ' _numvers ' de ' FORMAT DATE _datvers skip 3 -
   left '         LISTE DES ALLOCATAIRES NON PAYES PAR VIREMENT' skip 1 - 
   left '         =============================================' skip 3 -
   left 'Echéance du ' FORMAT DATE _dtech skip 3 

select ......

ttitle off
set heading off
select 'Fin de la liste des allocataires non payes par virement' from dual;
set heading on
spool off

您的代码实际上是什么样子的?我们能看一些摘录吗?