Tagged Questions
Oracle SQL Developer is a free IDE (Integrated development environment) for working with SQL in Oracle databases. It is written in Java.
16
votes
4answers
29k views
Oracle TNS names not showing when adding new connection to SQL Developer
I'm trying to connect to an oracle database with SQL Developer.
I've installed the .Net oracle drivers and placed the tnsnames.ora file at
C:\Oracle\product\11.1.0\client_1\Network\Admin
I'm using ...
14
votes
5answers
31k views
Oracle pl-sql escape character (for a '&')
While attempting to execute SQL insert statements using Oracle SQL Developer I keep generating a "Enter substitution value" prompt:
Insert into AGREGADORES_AGREGADORES (IDAGREGADOR,NOMBRE,URL) values ...
12
votes
4answers
21k views
How do you connect to a MySQL database using Oracle SQL Developer?
I have Oracle SQL Developer already installed and am able to connect to and query Oracle databases.
Using Help -> Check for Updates I was able to install the Oracle MySQL Browser extension but there ...
11
votes
2answers
4k views
SQL Developer multiple table view
In Oracle SQL Developer, one can list the data in a table using the Data tab when viewing a table. there where can add, delete, edit or just viewing records of table currently viewd
the problem is ...
10
votes
3answers
17k views
how to export query result to csv in Oracle SQL Developer?
I'm using Oracle SQL Developer 3.0. Trying to figure out how to export a query result to a text file (preferably CSV). Right clicking on the query results window doesn't give me any export options.
10
votes
2answers
9k views
How to avoid variable substitution in Oracle SQL Developer with 'trinidad & tobago'
When I try to execute this statement in Oracle SQL Developer 2.1 a dialog box "Enter Substitution Variable" pops up asking for a replacement value for TOBAGO,
update t set country = 'Trinidad and ...
9
votes
8answers
3k views
Does anybody know what encrypting technique is JDeveloper/SQL Developer using to persist credentials?
I'd be more than interesting for me to understand which technique is being used here to persist sensible data since I'm needing to implement a similar solution. Here's a sample connection ...
8
votes
1answer
252 views
XML Schema for Oracle SQL Developer Data Modeler
Oracle Data Modeler uses xml as file format to save models.
Has anybody a clue, whether there is a xml schema available that these files confirm to?
Thanks in advance!
8
votes
1answer
719 views
Best way/tool to get the results from an oracle package procedure
EDIT: Clarified the question
In MS SQL Server if I want to check the results from a Stored procedure I might execute the following in Management Studio.
--SQL SERVER WAY
exec sp_GetQuestions('OMG ...
7
votes
6answers
23k views
How to redirect the output of DBMS_OUTPUT.PUT_LINE to a file?
I need to debug in pl/sql to figure times of procedures, I want to use:
SELECT systimestamp FROM dual INTO time_db;
DBMS_OUTPUT.PUT_LINE('time before procedure ' || time_db);
but I don't understand ...
7
votes
6answers
16k views
How can I find which tables reference a given table in Oracle SQL Developer?
In Oracle SQL Developer, if I'm viewing the information on a table, I can view the constraints, which let me see the foreign keys (and thus which tables are referenced by this table), and I can view ...
7
votes
4answers
17k views
Understanding the results of Execute Explain Plan in Oracle SQL Developer
I'm new to Oracle and to SQL Developer. I'm trying to optimize a query but don't quite understand some of the information returned from Explain Plan. Can anyone tell me the significance of the OPTIONS ...
5
votes
4answers
16k views
How to export data with sql developer?
How to export oracle DB data with sql developer? I need all data, tables, constrains, structure and so on.
Thanks
5
votes
3answers
953 views
SQLDeveloper using over 100MB of PGA
Perhaps this is normal, but in my Oracle 11g database I am seeing programmers using Oracle's SQL Developer regularly consume more than 100MB of combined UGA and PGA memory. I'd like to know if this ...
5
votes
4answers
5k views
Oracle SQL Developer: how to view results from a ref cursor?
If I have a function which returns a reference cursor for a query, how can I view the result set of this in SQL Developer? Toad has a special tab for viewing the results of a reference cursor, this ...
4
votes
5answers
72 views
store only time in HH24:MM format in a table? is it possible?
I want to know if I can store a field called flight_time this is the time the flight departs not how long it takes like someone else suggested making me use the wrong data type of interval....
I want ...
4
votes
3answers
2k views
SQL Developer - Using start and end date variables in where clause of my query
I have a query that I run everyday that requires a StartDate and EndDate value. The StartDate and EndDate used to be a manual input but I am trying to get away from that and calculate the StartDate ...
4
votes
2answers
936 views
SQL Developer explain plan broken
Trying to generate an explain plan in SQL Developer, the program puts up a message box with title "failed to query plan_table" complaining "invalid column name". The plan is not generated or ...
4
votes
3answers
268 views
I have problem to connect oracle DB with SQL developer
I try connect to my oracle db with oracle SQL developer and received that message:
pic (pictures 1 and 2)
if i try connect with sql plus, all well.
command : select userenv('LANGUAGE') from dual;
...
4
votes
5answers
23k views
How can I use Oracle SQL developer to run stored procedures?
* EDIT6: * This is what ended up working for me (from accepted answer):
var ret1 number
var tran_cnt number
var msg_cnt number
var rc refcursor
exec :tran_cnt := 0
exec :msg_cnt := 123
exec ...
4
votes
2answers
3k views
SQl Developer Single Query result tab please
In the free application SQL-Developer (provided by Oracle), I tried searching around for this but couldn't immediately find a solution. I find the opening of multiple SQL query result window/tabs ...
4
votes
1answer
587 views
Oracle performance via SQLDeveloper vs application
I am trying to understand the performance of a query that I've written in Oracle. At this time I only have access to SQLDeveloper and its execution timer. I can run SHOW PLAN but cannot use the auto ...
4
votes
3answers
2k views
SELECT SUM as field
Suppose i have this table
table (a,b,c,d). Datatypes are not important.
I want to do this
select a as a1,b as b1,c as c1,
(select sum(d) from table where a=a1 and b=b1) as total
from table
...
4
votes
5answers
45k views
Print text in Oracle SQL Developer SQL Worksheet window
I am using Oracle SQL (in SQLDeveloper, using the SQL Worksheet). I would like to print a statement before my select, such as
PRINT 'Querying Table1';
SELECT * from Table1;
What do I use to Print ...
3
votes
1answer
48 views
How to increase buffer size in Oracle SQL Developer to view all records?
How to increase buffer size in Oracle SQL Developer to view all records (there seems to be a certain limit set at default)? Any screen shots and/or tips will be very helpful.
3
votes
1answer
56 views
how to insert new record based on old record and make them different?
For example, there is a table:
Table: PATIENT_DETAIL
PATIENT_NAME(varchar),
DISEASE(varchar),
SICK_DEGREE(number),
START_TIME(date),
END_TIME(date)
There are 1000 patients in the table and ...
3
votes
2answers
99 views
Why does this CREATE TABLE statement cause “ORA-00922 missing or invalid option”?
I have exported a schema from one Oracle database using SQL Developer (tools -> unload database). It has created "create table" statements similar to this one :
CREATE TABLE "APP_USER"
( "ID" ...
3
votes
1answer
74 views
Update record across multiple tables with a calculation (total invoice) using an Oracle SQL Script
I have a SERVICE table that stores amounts for services in one table then links to a LINE table which connects to an INVOICE.
I want to create a trigger that updates the total per line based on the ...
3
votes
1answer
297 views
SQLDeveloper displays no tables under connections where it says tables
I am not sure why but I just installed SQLdeveloper 32 bit (3.0.0.4). When I click to expand the tables/views/indexes or etc it displays nothing at all!
But when I do the following:
SELECT owner, ...
3
votes
1answer
1k views
Excel Date Field Import Problem in Oracle SQL Developer
I have an Excel file (which has data imported from Oracle 10G Database) one of the fields is a
Date Filed which has values like 28-JAN-11 03.25.11.000000000 PM ( Date field is Oracle Time
Stamp(6) ...
3
votes
2answers
161 views
Oracle d/b Create Index error
I am getting missing expression on the below sql when running in sql developer (though i believe it has nothing to do with oracle client) though everything seems to be all right.
CREATE UNIQUE ...
3
votes
2answers
458 views
Solving the mutating table problem in Oracle SQL produces a deadlock
Hey, I'm trying to create a trigger in my Oracle database that changes all other records except the one that has just been changed and launched the trigger to 0. Because I am updating records in the ...
3
votes
2answers
104 views
What exactly is an early adopter version - SQL Developer?
I notice that the current version of SQL developer is "Early adopter 3.0". Is this just a fancy name for a Beta release or a GA release, RC or whatever the name is this week.
3
votes
2answers
216 views
a question about oracle sql developer?
i have created tables and views, and insrted some test data, but i want to know where i can get the sql code that i used to create and insert the data, i tried to look in the sql history, but its no ...
3
votes
3answers
268 views
3
votes
5answers
8k views
Run Stored Procedure in SQL Developer?
I am trying to run a stored procedure that has multiple in and out paramaters. The procedure can only be viewed in my Connections panel by navigating Other Users | | Packages | |
If I right click ...
3
votes
1answer
2k views
Oracle SQL Developer: Show REFCURSOR Results in Grid?
As a follow-up to the question "Get resultset from oracle stored procedure", is there a way to show the results of a stored procedure that returns a REFCURSOR in a grid (instead of the plain text ...
3
votes
4answers
2k views
Run 2 queries at the same time on Oracle SQL Developer?
I need to retrieve quite a bit of data from our oracle DB and to do so I need to run 20+ queries. Is there any way to run more than one query at a time on the same connection?
I tried using / to ...
3
votes
1answer
896 views
How to prevent “parameter PLSQL_DEBUG is deprecated” compiler warning in Oracle SQL Developer
When I execute a package body DDL statement SQL Developer warns,
Warning: PLW-06015: parameter PLSQL_DEBUG is deprecated; use PLSQL_OPTIMIZE_LEVEL=1
How can SQL Developer be configured to not use ...
3
votes
1answer
558 views
How to see columns of different type in Oracle SQL developer
Say a table has several subclass types. How can I see all columns from different types in sqldeveloper? In table view, only can see common columns. Thanks.
3
votes
3answers
2k views
find database size in Oracle SQL developer
In phpmyadmin, it's able to see database disk usage. I was wondering if there's such thing in Oracle SQL developer. Thanks!
3
votes
1answer
2k views
How to use Oracle SQLdeveloper with HSQL / Hypersonic DB's JDBC driver
I'd like to use Oracle's SQLdeveloper to visualize my HSQLDB tables.
An instruction on how to use it with MySQL can be found on http://blogs.techrepublic.com.com/programming-and-development/?p=564 ...
3
votes
5answers
8k views
insert if not exists oracle
I need to be able to run an Oracle query which goes to insert a number of rows, but it also checks to see if a primary key exists and if it does, then it skips that insert. Something like:
INSERT ...
3
votes
2answers
4k views
Access and Filter predicates in Oracle execution plan
What is the difference between Access and Filter predicates in Oracle execution plan?
If I understand correctly, "access" is used to determine which data blocks need to be read, and "filter" is ...
3
votes
2answers
1k views
Bad screen redrawing in Oracle SQL Developer
I have a problem with Oracle SQL Developer. When I use it on a Windows Server 2003 machine, it works fine. When I use it on my Windows 7 desktop, I get a lot of redraw problems in the query results ...
3
votes
2answers
1k views
Oracle SQL Developer: sharing configuration via Dropbox
I would like to share my Oracle SQL Developer configuration across my several computers that use Dropbox.
How can I do this?
2
votes
1answer
44 views
Check status sql query or percentage
Does anyone know if there is a way to check the status of a job currently running in the database or the status of how many % has actually been executed.
I am running a job but the job is taking a ...
2
votes
0answers
63 views
v$version still showing 9i in sql developer after upgrade to 10g
I was working on Oracle 9i. I got it upgraded to 10g 3 hr. back. But when I query v$version to check the version in SQL Developer, it shows Oracle 9i.
Could you please let me know if I need to ...
2
votes
2answers
51 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 ...
2
votes
2answers
96 views
In Oracle SQL Devleoper, when I copy the results, how can I copy the column headings too?
In Oracle SQL Devleoper, when I copy the results, how can I copy the column headings too?
For example, I don't want:
doucette matthew xona.com etc.
I want:
lastname firstname url etc.
...