Tagged Questions
2
votes
1answer
62 views
plsql remote debug breakpoints not working
I have a weird situation with debugging pl sql code.
I set sql developer to listen for debug connections. In java code I attach debugger with following code:
CallableStatement cstmt = null;
...
1
vote
1answer
55 views
Using PL/SQL to develop relationship among two tables?
I am new to the PL/SQL language and I am working on a problem and was looking for advice to the right direction to go. Any help would be greatly appreciated!
I have an Employee table and a Building ...
1
vote
2answers
51 views
Using sequences as primary key
I have one table called INTER and I want to transfer some data from INTER to FINAL (a new table which is already created and empty) using a procedure.
I have to make use of sequence as a primary key ...
0
votes
0answers
65 views
Oracle import from flat file
I'm trying to import data from a csv delimited text file into oracle table. I've created a table with the required columns and trying to use the import option(right click and select import option) and ...
0
votes
3answers
272 views
ORA-06502: Numeric or Value Error on very basic string function, what gives?
Here's the code... this isn't the complete code. I trimmed it down to where the first error occurred:
FUNCTION get (
p_sql_o OUT VARCHAR2
) RETURN VARCHAR2 AS
...
0
votes
1answer
92 views
stored procedure always returns “Process exited” error always
I am working on a table structure similar to the below and trying to get the output as mentioned.
To acheive this, I written the below PL SQL procedure:
CREATE OR replace PROCEDURE ...
0
votes
2answers
197 views
SQL Developer debugging for all calls to package
I have a package on my Oracle database, that I have compiled for debug and set breakpoints in. From SQL Developer I am then able to press ctrl+shift+F10 to run the debug and select which procedure I ...
0
votes
1answer
529 views
Execute immediate dbms_output.put_line
I have code like this:
set serveroutput on
declare
v_str varchar2(200);
begin
v_str := q'!dbms_output.put_line('Hello world');!';
Execute immediate v_str;
end;
Oracle SQL Developer says that ...
1
vote
1answer
715 views
SELECT INTO and multiple variables for UPDATE
I'm a neophyte with Oracle and PL/SQL; I'm having some issues with a select into several variables. What I'm trying to do is search for multiple items in one table (SA_SPECIFICATION_DETAILS) and ...
-1
votes
2answers
1k views
Export data as insert with SQL Developer from script? [closed]
I need to make a PL/SQL script that automatically exports data from tables of schema in Oracle SQL Developer, any ideas?
0
votes
1answer
290 views
Export DDL of View in SQL Developer
I have a view vw_Monitor in database
how can I export DDL of creation of this table into a file in Oracle SQL Developer?
0
votes
2answers
861 views
query multiple database connections with sql developer
I have 2 database in ORACLE SQL DEVELOPER connections, con1 and con2 (with different schemas)
I need to create a view, based on columns from both db's , the method:
Create VIEW testviewAS (SELECT ...
0
votes
1answer
294 views
ORA-06502 String Buffer Too Small from PHP OCI call but not SQL Developer
I have written a PL/SQL (Ora10gR2) package which contains a stored procedure. The header looks like this:
procedure updateAddress(
sid in varchar2,
addID in out number,
roomNo ...
0
votes
2answers
362 views
PL/SQL How to get X day ago from a Date as Date?
I want to get 100 day ago from 08-APR-13, as date.
How to do it with pl/sql?
1
vote
1answer
65 views
Unable to modify this value in Debug
I can't set any value for input data, while debugging my procedure in Oracle SQL Developer.
When I try to change the value from NULL to any other I getting the following error. What is the problem? ...
2
votes
2answers
1k views
Validating a PL/SQL Stored Procedure OUT REF CURSOR in SQL Developer's Unit Testing framework
I am developing a series of PL/SQL Stored Procedures in a package that open REF CURSORs that are passed to the caller as OUT parameters for purposes of interoperability with another framework. I am ...
2
votes
0answers
244 views
Debugging an Oracle PL/SQL WEB Application hangs browser and dev tool
I am fairly new to PL/SQL and have been assigned to maintain a PL/SQL system that uses WEB pages generated with PL/SQL as a front end (PL/SQL Web Application?). Because of the complexity of the ...
0
votes
1answer
143 views
SQL Developer unit testing encoding fault
I've managed to configure our Oracle DB to run SQL Develper's unit tests. I've created a sample unit test, which needs to be able to use non-ASCII characters (for logging purposes). However, I've ran ...
0
votes
2answers
131 views
Calling procedure from package in JOBS
I work in Oracle SQL Developer, I made a package "XXX" and a procedure UPDATE_CUSTOMERS_RECORDS in the package body. I tested this procedure and it worked.
But I want to call this procedure in ...
1
vote
1answer
158 views
First program in PL/SQL
I'm trying to learn some PL/SQL but I'm having an issue with my first program:
declare
v_string_tx varchar2(256):='Hello World!';
begin
dbms_output.put_line(v_string_tx);
end;
When I run ...
0
votes
2answers
143 views
inserting in table before declaring cursor
Can I use the insert statement with values coming from a select statement on another table in EXECUTE IMMEDIATE?
Like :
execute immediate('insert into table values(select rowid from table where ...
0
votes
1answer
280 views
Define Procedures inside Packages
I have created some Procedures in SQL Developer, and they are working fine. However I am now creating a Package to include all those Procedures, and can't seem to figure out the right way to code the ...
1
vote
1answer
786 views
oracle SQL developer debug output
I am using SQL Developer to debug code like below, the output result will be shown on debug dialog ONLY after I finish all stored procedure. Do I need to turn on some configurations ?
Thanks
FOR j ...
0
votes
2answers
707 views
Oracle Stored procedure - NOT IN (SUBQUERRY) CONSUMES A LOT OF TIME
I have Oracle procedure which does the same work as following:
create or replace
PROCEDURE My_TEST_PROCEDURE
(
cur out sys_refcursor
)
AS
BEGIN
open cur for
SELECT * FROM MYTABLE1
WHERE ...
8
votes
3answers
9k views
How do I declare and use variables in PL/SQL like I do in T-SQL?
In Sql Server, often times when I'm testing the body of a stored procedure, I copy the body into SSMS, DECLARE the variables at the top of the page, set them to some sample values, and execute the ...
1
vote
1answer
1k views
Including the schema name when calling a PL/SQL procedure doesn't work in one schema but does in another
This problem came up when trying out the Unit Testing capabilities of SQLDeveloper.
When running a test for a procedure that is created within my schema I am seeing an error however when the same ...
1
vote
3answers
301 views
Doing datetime math in a function call in an Oracle query
Ok, I got the first part of my question answered, so here's the second part. :-) In a PLSQL query, I have criteria that looks like this:
where Doc3.clinicalDate >= ...
0
votes
2answers
2k views
Binding a date literal to a parameter in an Oracle SQL Developer query
I have a query in Oracle that looks (in part) like this:
where Doc3.clinicalDate >= ml.convert_date_to_id(:DateBegin)
and Doc3.clinicalDate < ml.convert_date_to_id(:DateEnd)
When I put ...
0
votes
1answer
615 views
TimeZone Time/Date Formats with Oracle and .NET
I am new to Oracle and hope someone can clarify this scenario for me.
I have written a very large query that returns a set of dates with it (Oracle 10g).
In SQL Developer, these dates appear in ...
-2
votes
3answers
631 views
SQL Developer: Load Data Date error
I am using Oracle SQL Developer 3.0.03. I am trying to upload an Excel file to an Oracle data table. I am getting an error for the date. The column in the database is a timestamp and I don't know what ...
0
votes
2answers
266 views
PL/SQL Comparing Tables
I have task of matching candidates in my database with suitable job vacancies based on skill and availability, using sql and pl/sql only.
I have managed to write the following code which matches ...
3
votes
1answer
7k views
Rudimentary issue: basic PL/SQL console output?
I am using SQL Developer and want to output the contents of a variable to the console using DBMS_OUTPUT.PUT_LINE(). I am running the following code that adds the numbers 1 through 5 inclusive but I'm ...
0
votes
2answers
613 views
How to find the error causing ora-06575?
Recently I had to write an oracle function, and the error ora-06575 popped up awfully a lot.
Usually it was because of missing colon from assignment, such as: z = 5 (vs. z := 5)
Or a missed ';' at the ...
0
votes
1answer
232 views
SQL developer unit testing bug?
I have decided to start using unit testing in PL/SQL, since it could be fun and improve the quality of the code.
So, Ive read several resources available and picked SQL Developer and its unit testing ...
0
votes
1answer
219 views
pl/sql script having problems running a simple procedure
I have a stored procedure called logger(message), where message is of type varchar2.
When I execute just
exec logger('hello');
it says anonymous block completed, and what this procedure does is ...
0
votes
2answers
1k views
SQL DEVELOPER can`t create package body
CREATE OR REPLACE PACKAGE packet AS
TYPE tip IS RECORD(a1 INT,a2 VARCHAR2(20));
FUNCTION getrow return tip;
PROCEDURE setrow(v tip);
END packet;
/
CREATE OR REPLACE PACKAGE BODY packet AS
...
2
votes
2answers
10k views
How to see refcursor result/output in Oracle SQL Developer? [duplicate]
Possible Duplicate:
Best way/tool to get the results from an oracle package procedure
Oracle SQL Developer: Show REFCURSOR Results in Grid?
I am new to Oracle SQL Developer. I am using ...
0
votes
1answer
327 views
Wrong quantity or types of arguments error while using dbms_output.put_line in Oracle PL/SQL
I have a problem with the command dbms_output.put_line().
I have a variable pres_name and I would like to print the value on the screen. Therefore I use dbms_output.put_line() but the command doesn't ...
1
vote
1answer
169 views
to_char produces different outputs depending on where the procedure is called
We're using a stored procedure provided by a remote system. For testing purposes, I call this procedure from my development machine. Now the problem is if I call the procedure from Toad, everything is ...
2
votes
2answers
258 views
How can I read functions and procedures body/ddl while they are in a package?
TASK:
Move all the functions and procedures in packages to the current Oracle schema. (you can imagine a case when you could need that, if not - take it like a challenge!)
QUESTION:
How can ...
-3
votes
2answers
246 views
How do I connect to a sql database through sql developer? [closed]
So, I have a .sql file that I have downloaded and was wondering how I connect to it via sql developer which I have also downloaded. Do I need to create a connection with hostname and port etc? can I ...
0
votes
1answer
317 views
SQL Developer setting for Feedback
Is there a way to set the option set feedback on or set feedback off permanently in Oracle SQL Developer?
1
vote
3answers
3k views
Date query ran in PL/SQL Developer shows time, but does not show in Oracle SQL Developer
The same query ran in PL/SQL Developer shows time, however it does not show in Oracle SQL Developer. Is there a way to get the time in SQL Developer?
In SQL Developer:
In PL/SQL:
This is the ...
2
votes
3answers
5k views
display select results inside anonymous block
I'm trying to debug a SELECT inside a procedure, and I'm trying to this using a anonymous block. I would like that SQL Developer simply return the last SELECT statement, but I get the error:
...
2
votes
2answers
3k views
how do I read a local file in SQL Developer?
I want to read a file on my local machine that contains query parameters when I execute a query in Oracle SQL developer. The examples that I've found on the web so far are inadequate. I keep getting ...
4
votes
2answers
4k views
Is there any hash function in PL/SQL?
I'm looking for a Hash function in PL/SQL, to get the hash of a varchar. I found a package in Oracle 10 called dbms_crypto with a function dbms_crypto.hash and even other package dbms_sqlhash.getHash, ...
0
votes
1answer
539 views
Why is this an error : “Encountered the symbol ”/“ ”?
I'm compiling a collection of store procedures in SQL Developer for the Mac. The code looks like this:
// ... some other code ....
END procedureX;
END thePackageBodyName;
/
show error
grant ...
4
votes
2answers
14k views
Run sql code with variables in Oracle SQL Developer code window
I'm writing code using Oracle SQL Developer. I have a simple select statement that works:
SELECT
CFS.CAE_SEC_ID,
CFS.FM_SEC_CODE,
CFS.LAST_USER_ID,
case
when 1 ...
1
vote
3answers
2k views
Output results of Oracle stored proc from SQL Developer
I'm trying to call an Oracle stored proc using SQL Developer. The proc outputs results using a sys_refcursor. I right click in the proc window which brings up the Run PL/SQL window. When I choose the ...
3
votes
5answers
555 views