Oracle - 函数中的Null或Blank参数值

时间:2018-06-18 20:28:00

标签: oracle performance function collections bulk-operations

我正在尝试从进行查询的函数中获取结果,处理字段e返回集合。

如果我接受函数的查询并分别执行,它将在大约10分钟内返回,具体取决于我输入的参数。如果我将相同的参数传递给函数,它会继续处理,并且在45分钟后我无法获得任何结果。

在查询之后,我只有几个if检查零值或高于其他值的值。

我认为问题是我传递的参数为null或空白,这会导致查询崩溃。这是我的问题:

我有一个类型:

CREATE OR REPLACE TYPE TypeForFunction is OBJECT (
    -- all my fields here
 )
/

然后制作一个集合:

CREATE OR REPLACE TYPE TypeForFunctionTable AS
    TABLE OF TypeForFunction
/

然后我的功能是这样的:

CREATE OR REPLACE FUNCTION MyFunction
(
  /* here i have five parameters and in the case that the query crashes, 
     two of them i'm trying to pass blank or null */

  COL in varchar2, -- This I pass a valid value
  INDEX in number, -- same here
  REF in varchar2, -- This one I'm trying to pass Blank ('') or Null and i 
                      get no result no matter wich one I pass.
  P in varchar2,   
  BLOQ in varchar2 -- Same null or blank here

) RETURN TypeForFunctionTable
IS  
  result_table TypeForFunctionTable;
  i integer := 0;
begin 
     select      
            TypeForFunction(

                /* Here i have some subquerys that I use the parameters null wich 
                   I use the same way as parameter REF. Like: */ 

                and (MyTable.FieldP = P or P is null)
                and (MyTable.FielBloq = BLOQ or BLOQ is null)

            ) BULK COLLECT into result_table   
     from              
        myTables

     where
        -- here i have a clause like

        (MyTable.FieldREF = REF or REF is null)
     ;  
     For i in 1..result_table.count loop                 
         /* Here I have some if's, but nothing to crash the query like it happens. 
            Things like: */

         if MyVar > 0 then
            COL = REF;
            INDEX = INDEX + 100;



     end loop;        
     return result_table;     

end MyFunction;
/

要调用我尝试的功能:

select * from table(MyFunction('59', 1, '', 'IV18', ''));

还可以尝试:

select * from table(MyFunction('59', 1, Null, 'IV18', Null));

无论如何,我得到相同的结果,45分钟后功能不返回或发出任何错误。

有没有更好的方法来处理我可能会或可能不会传递值的参数?

1 个答案:

答案 0 :(得分:0)

我无法使查询更快。事实证明,此查询已在不久前被优化,并且根据我工作的公司(巴西的一家女装工厂)的上一个季节,它返回了下一个季节的生产赌注,因此很繁琐。

但是随后我编写了一个程序来进行三个简单的更新,并且遇到了同样的问题,它一直挂起,没有给我该程序运行的任何结果,但是单独运行的更新查询工作正常。

我开始搜索并找到以下答案:

Stored procedure hangs seemingly without explanation

这是一个SQL Server anwser,但是随后我开始搜索问题是否也影响了Oracle,并且我发现了这篇文章:

https://dba.stackexchange.com/questions/198443/does-oracle-database-suffer-from-parameter-sniffing-issue

所以我在函数和过程中都声明了局部变量,并且该变量接收了参数。

现在我的函数如下:

// Enable the USB Wake-up interrupt
NVICInit.NVIC_IRQChannel = USB_FS_WKUP_IRQn;
NVICInit.NVIC_IRQChannelPreemptionPriority = 1;
NVIC_Init(&NVICInit);

然后我在所有查询中都使用了“ LOCAL”变量,它运行良好。解决了问题。由于我的声誉,我不能感谢那些对原始帖子发表评论的人,但我非常感谢。

也非常感谢您的答复!