Tagged Questions
PL/SQL Developer is an Integrated Development Environment that is specifically targeted at the development of stored program units for Oracle Databases.
8
votes
2answers
157 views
Why is Oracle eating my string?
i currently try to execute the following query on an Oracle DB
select tzname || ' (UTC'|| tz_offset(tzname) || ')' from v$timezone_names
It not seems to be very complicated. Just the name of the ...
4
votes
1answer
240 views
Oracle PL/SQL get server's IP v4?
How can I get the IP v4 Of the server by using PL/SQL ? UTL_INADDR.GET_HOST_ADDRESS gives me IPv6, while I need IPv4
what I did I disabled the IPv6 on the sever, still it's bringing me the the IPv6 ...
4
votes
1answer
344 views
Oracle & PL/SQL Developer - Access predicates and Filter predicates no longer shown
I'm using Allround Automation PL/SQL Developer with Oracle 10g, and today I've noticed that explain plans no longer display anything for Access Predicates or Filter Predicates. The only thing that's ...
4
votes
2answers
158 views
What does “/” do in PL/SQL?
I reviewing some PL/SQL code and I came across the following in the scripts:
/
SHOW error
grant execute on someName1 to someName2;
/
SHOW error
Reviewing the documentation for PL/SQL I could not ...
3
votes
1answer
242 views
Add Fonts to PL/SQL Developer
How can I add more fonts in PL/SQL Developer? Should I use the font.properties file?
2
votes
3answers
208 views
How to parse comma delimited string in PL/SQL?
I have a comma delimited string in a PL/SQL script (e.g. data:= 'a,b,c,d,e'), that I need to parse out within the script.
I would like to loop through the string and process each item. Like a ...
2
votes
2answers
309 views
PL/SQL Developer: Multiple statements?
I have a script that generates a text file containing several SQL UPDATE statements:
UPDATE TableX SET Field1 = 'New value 1' WHERE Field2='1';
UPDATE TableX SET Field1 = 'New value 2' WHERE ...
2
votes
2answers
464 views
How to test an Oracle Stored Procedure with RefCursor return type?
I'm looking for a good explanation on how to test an Oracle stored procedure in SQL Developer or Embarcardero Rapid XE2. Thank you.
2
votes
1answer
141 views
PL/SQL package type vs schema type
What I'm trying to do is the following:
create or replace
package MyPackage
as
type string_list_t is table of varchar2(32767);
function GetPrimaryKeys ( p_table_name varchar2, p_owner ...
2
votes
2answers
514 views
Oracle stack trace line number does not match source code!
I got a stack trace from Oracle saying there was a problem on Line 299. No problem, I looked at that line in the package in question, and say that it's a line in an initialization block that sets a ...
2
votes
2answers
717 views
Why do I get an open transaction when just selecting from a database View?
If I execute a simple select statement in pl/sql developer against a database table, I get a standard set of results back as I would expect.
Recently, I pasted a query from a stored procedure that ...
2
votes
1answer
321 views
Utl_file fseek function giving error with large absolute offset?
I have to make a program that will use fseek to read data from pirticular position.
i have to read data line by line,and in pirticular line i have to use fseek to read data.
But when i am using fseek ...
2
votes
1answer
54 views
Regarding sql reporting
i am doing a spool of sql select output. i have the below sql settings
SET FEEDBACK OFF
SET HEADING OFF
SET LINESIZE 800
SET PAGESIZE 50000
SET TRIMSPOOL ...
2
votes
1answer
6k views
allround automations pl/sql developer on windows 7 - TNS over IP connect to remote db
I am really having very hard time making PL/SQL developer PL/SQL Developer work on my windows 7 64-bit OS. I have Oracle 10g standard edition installed already. I tried with PL/SQL developer version 7 ...
2
votes
1answer
1k views
How to select results between two dates or by single year/month/day in oracle? (to_date, extract,sysdate)
I have a table for orders and it has 2 column with DATE types: delivery_date and order_date.
In my sqldeveloper, all the dates I've inserted via Java or by hand are in the format 10.01.25 for the ...
2
votes
2answers
19k views
How to connect to remote Oracle DB with PL/SQL Developer?
I have a database "TEST", to which I connect at address 123.45.67.89:1521.
How do I connect to it using PL/SQL Developer?
1
vote
2answers
46 views
Spacing reading from a String in SQL
I have a string (with spaces) from which i want to separate the last word. For example:
"Steve Jobs" => Jobs
"Stack OverFlow Question" => Questions
Is there any function in PL/SQL or SQL so ...
1
vote
2answers
70 views
how to convert a string date to date format in oracle10g
My date value is stored as varchar2 and the value is 15/August/2009,4:30 PM how to convert this to a proper date format like DD-MM-YYYY.
1
vote
2answers
42 views
Cannot connect Oracle 32bit on X64 machine
I have installed the Oracle Client 10.2.1 32bit in an X64 WIN7 laptop. I have Installed also TOAD and PLSQLDeveloper but both of them are not working and the error is: ORA-12154:TNS could not resolved ...
1
vote
0answers
130 views
How to insert data into NVARCHAR2 field with plsql developer?
Oracle version: 11gr2,
NLS_CHARACTERSET: WE8MSWIN1252,
NLS_NCHAR_CHARACTERSET: AL16UTF16,
client NLS_LANG: AMERICAN_AMERICA.WE8MSWIN1252,
PL/SQL Developer version: 8.0
I have a table which has a ...
1
vote
1answer
68 views
PL/SQL Developer: How to find variable references?
In a Oracle package, How can I find out all the references for a variable? Like you would do it in Eclipse or Visual Studio.
Is this feature supported in any Oracle IDEs like TOAD, Sql Developer or ...
1
vote
1answer
150 views
Can somebody verify this for me in sql or teradata
I have a line of code in Oracle and I had to convert it into Teradata.
The Oracle query is
/* add to avoid invalid number due to junk in column */
AND regexp_instr(table.column, ''[^[:digit:]]'', ...
1
vote
2answers
251 views
PL/SQL send email with attachment?
we have a table with files saved as BLOB
I write a code that email these files as an attachment!
everything works fine so far, but the files (EXCEL,PDF, ... what ever) are not readable by the ...
1
vote
1answer
65 views
PL/SQL data type support for size greater than NVarchar2
PL/SQL has data type NVARCHAR2(size) where the size is 32767 bytes; equivalent to 4095 records.
Now, what data type should i give as an alternative to NVARCHAR2 that could support more than 4k ...
1
vote
1answer
1k views
PL/SQL developer import dump
I have a dump file which includes two tables. Now I need to import this dump file. I was instructed to create two tablespaces beforehands.Now how do I import this dump file to these tablespaces. I'm ...
1
vote
2answers
348 views
Overloading problem: Error(83,5): PLS-00307: too many declarations of 'REPORTEQ' match this call
So I am trying to use overloading but I am having some troubles. My package has 4 procedures with the same name but different type of arguments (VARCHAR2, NUMBER, BOOLEAN, DATE). The packahe header ...
1
vote
0answers
16 views
row level Trigger code
HI
I have a table A and Table B
I need to write trigger on table A for each row insert on table A same row should get inserted in Table B
Table A and Table B have same structure.
Please help me with ...
1
vote
1answer
183 views
How to find number of rows in cursor
I would like to find the number of rows in a cursor. Is there a keyword that can help? Using COUNT, we have to write a query. Any help will be greatly appreciated.
1
vote
3answers
1k views
display resultset from oracle 10g stored procedure
I am using PL/SQL Developer and i have written a procedure to run a report and i need to procedure to output the resultset.
The procedure accepts input parameters and needs to output the resultset.
...
1
vote
2answers
411 views
Oracle SQL Developer - Help for debugging
I am trying to debug a package with in the SQL Developer. The method that i am trying to debug takes 2 parameters
PROCEDURE procedure_name (dblink IN CHAR, bDebug IN BOOLEAN DEFAULT FALSE)
When i ...
1
vote
3answers
73 views
Problem with Execute immedite
I am trying to run this code below using Execute Immediate but its not working and values are correct.
Please suggest the correct code.
declare
v_count number:=1;
v_conc_name varchar2(400);
...
1
vote
4answers
219 views
Call for a function with a variable name?
I have one package that has different procedures, and one main procedure through which I am calling other procedures.
Through the front end, I am passing the procedure name into main(). Is there any ...
1
vote
2answers
443 views
Invoking a function call in a string in an Oracle Procedure
I writing an application using Oracle 10g.
I am currently facing this problem. I take in "filename" as parameter of type varchar2.
A sample value that filename may contain is: 'TEST || ...
1
vote
4answers
110 views
Upper Bound in FOR loop does not get altered in loop,Why?
I am trying to change the value of upper bound in For loop ,but the Loop is running till the upper bound which was defined in the starting.
According to logic loop should go infinite, since value of ...
1
vote
1answer
162 views
DOT(.) after Ampersand (host variable)& considering as a part of variable name?
I know heading is not so clear.This is the picture
I am using &a it is considering it as $a. ,in the output &a and &a. is giving the same output. and why single .(DOT) after &a is ...
1
vote
5answers
126 views
Concatenation with Zero is not occurring properly in code?
I was trying to reverse a number in PL/SQL. It's working fine, but when my number contains any 0, the output is unexpected. For example:
1234 output 4321
1000 output 1
1203 ouput 3021
10001 output ...
1
vote
2answers
752 views
to_date function pl/sql
undefine dates
declare
v_dateInput VARCHAR(10);
v_dates DATE;
begin
v_dateInput := &&dates;
v_dates := to_date(v_dateInput,'dd-mm-yyyy');
DBMS_OUTPUT.put_line(v_dates);
end;
Not ...
1
vote
1answer
53 views
regist payment for each month of the year using oracle data
I have the following tables:
Employees with level (rank or wtv you may call it): income_value,id, etc.
INCOME that stores the rank vs. the income value (very tinny and static)
REGIST_INCOME ...
1
vote
3answers
384 views
if-else, case or decode inside of a ref cursor
I have this big code where I want 3 things in my search:
1- look for all the orders (delivered and not) that match the search:
2- look for all the pendent orders that match the search;
3- look for ...
1
vote
5answers
525 views
scope of raise exception, handling your own exceptions in PLSQL code
I have this procedure:
create or replace PROCEDURE CONVERTE
IS
CURSOR oldemployees IS
SELECT *
FROM emp1
WHERE data_saida= NULL;
new_ndep emp1.num_dep%type;
...
1
vote
3answers
400 views
Customize PL/SQL exceptions in Oracle
Frequently I found myself doing some functions to insert/delete/update in one or more tables and I've seen some expected exceptions been taken care of, like no_data_found, dupl_val_on_index, etc. For ...
1
vote
1answer
242 views
Update attribute of an element in a nested table
I have created this type:
create or replace type PRODTABLE as table of PROD_OBJ;
and I use that PRODTABLE in the follow PLSQL code:
FUNCTION INSERT_PRODUCTS (
a_supplier_id IN ...
1
vote
6answers
3k views
How to test an Oracle function that contains DML in PLSQL Developer?
Selecting the return value of an Oracle stored function that doesn't contain DML can be done by simply selecting the function:
select function_name() from dual;
If the function contains DML (in ...
1
vote
6answers
587 views
oracle pl/sql bug: can't put_line more than 2000 characters
Has anyone else noticed this phenomenon where dbms_output.put_line is unable to print more than 2000 characters at a time?
Script is:
set serveroutput on size 100000;
declare
big_str ...
0
votes
1answer
38 views
Import and Export Data plus schema using SQLDeveloper 3.0.04
i am newbie to oracle and i like to export database from remote database and import it on local machine. eOn both machines i have oracle 10.2.
I need to know how to export/import schema and data from ...
0
votes
1answer
34 views
How to access concatenated columns in Record using FOR Cursor Loop
Trying to use records with the cursor and later index by table in the mix.
DECLARE CURSOR emp_cur IS
SELECT employee_id, first_name||' '|| last_name "name"
FROM employees
ORDER BY ...
0
votes
0answers
48 views
SQL*NET not properly installed
I am new to Oracle, I am starting to work on my first project. I have installed Oracle Client ora11 and pl/sql. I have set tns names files under network/admin(tns names file is ok, I copied it from a ...
0
votes
1answer
46 views
PL/SQL compilation error during update
Query
DECLARE
v_vendor_id NUMBER;
BEGIN
FOR vp_rec IN ( SELECT * FROM vpprocess )
LOOP
SELECT i.vendor_id INTO v_vendor_id FROM item i, lineitems l WHERE l.itemid = i.itemid AND l.id = ...
0
votes
0answers
55 views
Debugging Oracle Triggers using PL\SQL Developer 7.0.2?
I am able to debug the procedures and functions in PL\SQL Developer but when i set break points for Trigger its not taking them as a valid break points. Can we debug code in triggers using pl\sql ...
0
votes
2answers
58 views
mail body size limit in utl_smtp
I have a procedure to send mail using utl_smtp.
What is the maximum mail body size that I can send and if my mail body size exceeds this limit, then how can I send it?