My team will develop an internal (known users) application that has an architecture based on Java as front-end and PL/SQL as back-end. So, currently we are thinking in a better solution to manage the
CREATE OR REPLACE PROCEDURE GET_DISCOUNT ( v_have_list SALES_PRODUCT_TY_LIST, ... ) Is v_have_list an INOUT variable开发者_StackOverflow?The default is IN.
In simplicity, PL/SQL generally follow the following: DECLARE Variable declaration BEGIN Program Execution
As I have a lot of program logics in DB-server-side in PL/SQL I would like to find out is TDD applicable to PL/SQL. Even more it would be very god if you point me at some information resources that ha
I currently have a script that calculates the tanimoto coefficient o开发者_StackOverflow中文版n the fingerprints of a chemical library. However during testing I found my implementation could not be fe
Is there a way to set the option set feedback o开发者_StackOverflow中文版n or set feedback off permanently in Oracle SQL Developer?A method of controlling options such as this is in SQL Developer is t
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I have table \'stf_table\' under the schema \'staff\' with username \'staff\'. I have table \'emp_table\' under the schema \'employee\' with username \'employee\'.
create or replace aArr is TABLE of varchar2 index by binary_integer; create or replace bArr is TABLE of varchar2 index by binary_integer;
I execute a stored proc as follows: var myOutput varchar2 exec myproc(:myOutput) print myOutput However, this does not work.