If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to REGISTER before you can post. To start viewing messages, select the forum that you want to visit from the selection below.
Hey I wann confirm something.. actually my problem is:
I have one Explict cursor that is getting some value from Oracle DB. I want to use that with Orabbix. So just wann confirm is it possible to use Explict cursor in Orabbix? Please reply asap. Thanks
This is the Cursor i have in my query.prop file in orabbix.-->
test_cursor.Query= declare
cursor testcursor is
select avgtime, tmptime from testing.testing_event_log where avgtime>100;
testcursordata testcursor%rowtype;
temp_avgtime NUMBER := 0;
begin
open testcursor;
loop
exit when testcursor%NOTFOUND;
fetch testcursor into testcursordata;
temp_avgtime := temp_avgtime + TO_NUMBER(testcursordata.avgtime);
END LOOP;
dbms_output.put_line(temp_avgtime);
CLOSE testcursor;
End;
test_cursor.NoDataFound=none
I have created the item in Zabbix also. But its showing not supported. If I use normal query then it will show the graph. But if i use this code this its showing not supported.
Comment