I was trying to recompile PL/SQL package and no avail. because something obtained t开发者_Python百科he lock and that wasn\'t released for long time.As soon as I kill all sessions I was able to recompi
I am using the Oracle Data Provider. I am having trouble calling开发者_Python百科 a function that returns a record type defined as TABLE_NAME%ROWTYPE. How do you do this from C# ODP.net does not work
Below I\'m using simple example, real tables are bigger, I cannot store devices in one table, I can not merge device1 and device2 tables.
I am converting GTT\'s to oracle types as explained in an excellent answer by APC.however, some GTT\'s are being updated based on a select query from another table.For example:
I did following: create or replace type my_row as object ( 开发者_高级运维lname varchar2(30), fname varchar2(30),
My main goal with this question is optimization and faster run time. After doing lot of processing in the Stored Proc I finally return a count like below:
If I have a simple query like: OPEN cursor FOR SELECT USER_ID FROM USER_TABLE WHERE USER_ID = V_SOME_USER;
I want to store more than one Email IDs in the Email id column of a ta开发者_开发技巧ble, as a multivalued attribute. How can I do this in oracle?The traditional, relational way of doing this would be
I have a cursor defined in PL/SQL, and I am wondering what the best way to use it from ProC is. Normally for a cursor defined in ProC you would do:
In SQL I (sadly) often have to use \"LIKE\" conditions due to databases that violate nearly every rule of normalization. I can\'t change that right now. But that\'s irrelevant to the question.