douwen9534 2011-09-13 14:30
浏览 300
已采纳

OCI_CONNECT是否会导致ORA-01438:值大于此列允许的指定精度?

I'm wondering if oci_connect() can cause a 1438 error, because i get this all the time:

Warning: oci_connect() [function.oci-connect]: ORA-00604: error occurred at recursive SQL level 1 ORA-01438: value larger than specified precision allowed for this column ORA-06512: at line 8 in /xxxxxx/some.php on line 220

It's not depending on which table is being queried. It seems like oci_connect() is inserting some trackingstaff in some sys table, or maybe a trigger is related with the logon. But i don't have the permission to figure out this problem in sys.

Any Idea what could be the cause for this error?

Update

Does oracle do some logging somewhere automatically out of box without configured to specifically? Can i somehow let oracle or PHP show me which table or column is affected?

Update I found out that, when i call the PHP Script in Bash directly, it does work fine. But a call from web will cause titled problem. Any Idea?

  • 写回答

2条回答 默认 最新

  • duangejian6657 2011-10-17 13:36
    关注

    The message error occurred at recursive SQL level 1 suggests to me that the error is arising within a trigger. My guess is that there is an AFTER LOGON ON SCHEMA or DATABASE trigger, and for some reason it causes an error when your web server process attempts to connect.

    Here's an example of how to generate the error you're getting. I have a table called TINY, with a single column that can only take values up to 99:

    SQL> desc tiny;
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     N                                                  NUMBER(2)
    

    Now let's create a user account and verify that they can connect:

    SQL> create user fred identified by fred account unlock;
    
    User created.
    
    SQL> grant connect to fred;
    
    Grant succeeded.
    
    SQL> connect fred/fred
    Connected.
    

    Good - let's log back in as me and create a trigger that will cause an error if FRED attempts to connect:

    SQL> connect luke/password
    Connected.
    SQL> create or replace trigger after_logon_error_if_fred
      2    after logon on database
      3  begin
      4    if user = 'FRED' then
      5      insert into tiny (n) values (100);
      6    end if;
      7  end;
      8  /
    
    Trigger created.
    

    Recall that our TINY table can only store values up to 99. So, what happens when FRED attempts to connect?

    SQL> connect fred/fred
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01438: value larger than specified precision allowed for this column
    ORA-06512: at line 3
    
    

    Other than the line number, and the bit PHP added, that's exactly the message you got.

    If you want to see whether there are any AFTER LOGON triggers in your database, try running the query

    SELECT trigger_name, owner FROM all_triggers
     WHERE TRIM(triggering_event) = 'LOGON';
    

    On my database (Oracle 11g XE beta), I get the following output:

    TRIGGER_NAME                   OWNER
    ------------------------------ ------------------------------
    AFTER_LOGON_ERROR_IF_FRED      LUKE
    

    I don't believe Oracle does any logging out-of-the-box, and I'd be surprised if PHP's oci_connect does either.

    I can only speculate as to why the error arises only for your web server and not when you run PHP from a bash script. Perhaps the trigger is querying V$SESSION and trying to figure out what user account is trying to connect to the database?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 解决一个加好友限制问题 或者有好的方案
  • ¥15 关于#java#的问题,请各位专家解答!
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验
  • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃
  • ¥50 MATLAB实现圆柱体容器内球形颗粒堆积
  • ¥15 python如何将动态的多个子列表,拼接后进行集合的交集
  • ¥20 vitis-ai量化基于pytorch框架下的yolov5模型
  • ¥15 如何实现H5在QQ平台上的二次分享卡片效果?
  • ¥30 求解达问题(有红包)