4
votes
6answers
124 views
Why is PLSQL slower than SQL*Plus
I have several Oracle queries that perform well when run through SQL*PLUS. However when they are executed as a part of a PL/SQL package, they take MUCH longer.
Our DBA has watche …
1
vote
3answers
57 views
Problem With Simple PL/SQL Program
Here is my simple PL/SQL program:
DECLARE
CURSOR c1 is
SELECT typ, specifikacia_typu, spz FROM Auta
WHERE (substr(spz, 1, 2) = 'KE' OR substr(spz, 1, 2) = …
1
vote
4answers
41 views
How do I debug Oracle dynamic sql in sqlplus?
I have a PL/SQL statement that uses EXECUTE IMMEDIATE to execute a query. However, I'm having difficulty figuring out how to even get the text of the query that's being executed. …
0
votes
3answers
67 views
How to get stored procedure’s returning value?
I have made stored procedures in oracle.
I'm calling it through my asp.net code.
The procedure is :
PROCEDURE prc_GetNewQuestionNo(iNextQuestionNo IN OUT NUMBER)
IS
iQuest …
0
votes
3answers
82 views
VARCHAR(MAX) versus VARCHAR(n) in Oracle
Similar question, but for Oracle.
Why would I not always want to choose VARCHAR(MAX)?
-2
votes
2answers
71 views
can i get procedure sample in oracle ?
hi
i try to understand procedure..... but still dont.....
i need simple sample for procedure.
i need procedure that i'll insert Fname and Lname, and i get table with the result …
3
votes
4answers
94 views
Freeware tool for PL/SQL development
I'm currently looking for a good (free) tool to do some PL/SQL development on Windows against an Oracle XE database. I'm looking to develop some stored procedures, functions and pa …
1
vote
2answers
35 views
what is the difference between oracle “create or replace type” and “type type_name is…” syntax
hi guys,
i'm a pl/sql newbie. now i have a question about oracle type. i saw there are two types of type :
CREATE OR REPLACE TYPE "TYPE_NAME1" AS OBJECT
(
temp_trans_id …
0
votes
2answers
27 views
Pivot rows to columns based on content in Oracle 10g PL/SQL
I have a table in my database, user_answers that stores users answers to a series of questions, with rows; user_id, question_id, answer_id and text_entry. Question text and answer …
0
votes
2answers
50 views
Oracle Dynamic SQL for columns
I am writing a stored procedure for which I need to populate a table based on the data being reported on.
In this situation, I will be pulling in three values per day for a certai …
3
votes
3answers
111 views
In Oracle, is it possible to INSERT or UPDATE a record through a view?
In Oracle, is it possible to INSERT or UPDATE a record (a row) through a view?
0
votes
2answers
24 views
Oracle - Java - wrong number or types of arguments in call to ‘SP_GET_MENU_PARENTS’
Hi,
Below is my Oracle Procedure. When i call this procedure using java, it throws error like this.
CREATE OR REPLACE PROCEDURE sp_Get_Menu_Parents
(
v_inMenuID IN VARCHAR2 DEF …
0
votes
3answers
64 views
Using Ref Cursor in Oracle SQL Developer
I am using Oracle SQL Developer, but I am having an issue seeing results from a package that returns a ref cursor. Below is the package definition:
CREATE OR REPLACE package inst …
2
votes
4answers
88 views
pl/sql stored procedure: parameter name same as column name
Hello Oracle Experts
I have a Stored Procedure like this
procedure P_IssueUpdate
(
Id in integer,
ModifiedDate in date,
Solution in varchar2
) AS
BEGIN
update T_Issue …
1
vote
2answers
36 views
Encoding strings in XML from Oracle query
I'm producing XML right from PL/SQL in Oracle.
What is the preferred way of ensuring that outputted strings are XML-conformant, with regards to special characters and character …
