Chinaunix

标题: cron执行包含oracle的php失败 [打印本页]

作者: xiner10    时间: 2009-12-17 10:16
标题: cron执行包含oracle的php失败
一个php文件
a.php
<?php
putenv("ORACLE_BASE=/opt/ora9");
putenv("ORACLE_HOME=/opt/ora9/product/9.2");
putenv("LANG=en_US");
putenv("TNS_ADMIN=/opt/ora9/product/9.2/network/admin");
putenv("ORACLE_SID=ora9i");
putenv("NLS_LANG=AMERICAN_AMERICA.ZHS16GBK");

$conn=ocilogon("username","password");
$stmt = OCIParse($conn, "select * from table");
$a=OCIExecute($stmt);

while (OCIFetchInto ($stmt, $row, OCI_ASSOC))
{
        $a1=$row['a'];
        $a2=$row['b'];
        $a3=$row['c'];

        echo $a1."      ".$a2." ".$a3."\n";
}
crontab -l
12 18 * * * /usr/local/php/bin/php a.php > a.txt

直接用命令行执行a.php的话没有问题,可以显示表中的数据,但写入cron中就出现问题了,我发现在如果我要把$stmt = OCIParse($conn, "select * from table");这里面的select * 中的*改为具体的字段名称就可以取出值,但是譬如说字段a是整型,a的值就可以正常显示,但如果a的是varchar2的,就会有错误提示,提示如下:
Warning: ociexecute(): OCIStmtExecute: ORA-01029: internal two task error
in /home/oracle/a.php on line 11

Warning: ocifetchinto(): OCIFetchInto: ORA-24374: define not done before fetch or execute and fetch
in /home/oracle/a.php on line 13
请问这是什么问题?
作者: renxiao2003    时间: 2009-12-17 10:31
要确定a.php的绝对路径。
作者: xiner10    时间: 2009-12-17 11:06
加上a.php的绝对路径了,但还是不行
现在就是字段是number的话可以正常显示,如果是varchar2的就提示错误

[ 本帖最后由 xiner10 于 2009-12-17 11:07 编辑 ]
作者: renxiao2003    时间: 2009-12-17 11:47
这个问题就得看看环境变量什么的了。
作者: xiner10    时间: 2009-12-17 12:52
我觉得既然number字段的值能够显示出来是不是环境变量就应该没有问题?
作者: renxiao2003    时间: 2009-12-17 17:01
NUMBER在所有的字符集下都能显示出来 。




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2