Oracle SQL Developer is a free IDE (Integrated development environment) for working with SQL in Oracle databases. It is written in Java.
1
vote
2answers
663 views
Read xml tag value from oracle using sql developer
<wbi:appData>
<wbi:content wbi:name="1st_status">
<wbi:value xsi:type="xsd:string">Success</wbi:value>
</wbi:content>
</wbi:appData>
...
1
vote
1answer
718 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?
1
vote
2answers
180 views
SQL Query Not Exists [closed]
I want to do a query with this: What are the names of the hospitals where all doctors work that work on his country.
Example:
In country C only exists two hospitals, H1 and H2.
In hospital H1 work ...
0
votes
0answers
268 views
sql developer does not start
I have come across a rather weird scenario, not sure if anyone has seen it.
I have a sql developer version 3.xx installed and working properly for years until this morning.... when I tried to export a ...
0
votes
1answer
291 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?
1
vote
3answers
160 views
Display all views on oracle database
Is there a way to display all the views currently set on an oracle database via sql developer?
Thanks.
0
votes
1answer
157 views
halt on compilation error in a sqlplus script
I am deploying pl/sql code using several sql files that are called with @@file. If a package got a compilation error the script continues to the end.
Is there a way to stop on every compilation ...
0
votes
1answer
42 views
How to get table from value in another table
I am trying to create query:
I have a table with names of other tables. how can i get the table from the values ?
example
tables
users
users2
users3
i want to create dynamic sql that knows how to ...
0
votes
2answers
863 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 ...
9
votes
3answers
466 views
Querying mysql database with SQLDeveloper doesn't return correct values
I have a mysql database with a charset utf8 of all the tables.
I am using SQLDeveloper to access and query the database with the latest JConnector JDBC driver.
When executing a simple query such as ...
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
0answers
476 views
How can I import XML using SQL Developer [closed]
How can I import XML using SQL Developer? Note: It's the XML exported by SQL Developer.
0
votes
0answers
61 views
Query and Subquery SQL DML
I have tried to this query:What are the names of the hospitals where work all the doctors that work on it's country. But the result isn't what I expected and it has a syntax error.
I have these ...
0
votes
0answers
83 views
pls-00330:invalid use of type name or subtype name,pls-00302:component count must be decalred [closed]
my code is here
create or replace
PACKAGE BODY EMPKS_EMP_DETAILS IS
FUNCTION FNC_EMP_DETAILS(val in val123,ic_EMP_ID IN VARCHAR2,ic_EMP_NAME IN VARCHAR2,ic_COMPANY IN VARCHAR2,err_msg out ...
0
votes
1answer
901 views
Oracle SQL Developer for SQL Server 2008?
This is very basic question. Can we use Oracle SQL developer tool to develop things in SQL Server 2008 database?
Thanks
0
votes
2answers
179 views
MIN and COUNT Oracle SQL Query
I have tried to this query: What are the hospitals for each country with the lower number of doctors. (1st column: name of the country; 2nd column: name of the hospital. In case of there is more than ...
0
votes
1answer
57 views
Generate SQL for multiple indexes with sqldeveloper
I have recently exported an Oracle database to a new environment. Unfortunately, many of the indexes failed to create. I would like to know if there is a way to generate sql for a variety of these.
...
0
votes
2answers
364 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?
0
votes
1answer
2k views
Import .sql file in Oracle?
I have .sql file. I need to import that to oracle 11g.
.sql file contains ddl queries for all tables.
How can i import .sql file to oracle 11g.
I have sqldeveloper tool.
Thanks in Advance.
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? ...
0
votes
3answers
83 views
Making “CREATE TABLE” statements from data of table
I have table TABLE_INFO with columns TNAME, CNAME, DTYPE, COLCOMMENT
I need to create a SQL script in Oracle SQL Developer, which creates new table with table name from column TNAME, columns from ...
1
vote
1answer
28 views
Putting a UPR page into a set of tables with SQL
I am trying to put a UPR pages into a set of tables for a database, so far I have come up with the following tables
UPR:
CODE,
NAME,
STRUCTURES,
APPENDICES,
DOCUMENTS
STRUCTURES:
STR_NAME,
STR_CODE
...
0
votes
0answers
71 views
Invalid Identifier But table DOES exists
This is a procedure to enable data insert into multiple tables. the code is shown below however it is saying that at line 44.16 musicdatabase.songs.songid is an invalid identifier.
Any reasons why ...
0
votes
1answer
105 views
Query an Oracale database and display the results on Splunk
Does anyone knows if it is possible to query a database using an application like Splunk and representing the data in a Dashboard ?
I am looking to query an Oracle database as I see Splunk have some ...
1
vote
1answer
87 views
SQLDev limiting results
TIA for any help/advice/further reading.
I'm trying to make SQLDev do a count of how many packages customers have had and then only show the top 10 of those results.
So I have this....
select ...
-1
votes
1answer
251 views
ORA-00904 when inserting/querying data from tables
I'm getting the flowing error:
Error starting at line 1 in command:
INSERT INTO driver (registration, make, model, gvw, year, body) VALUES('4585 AW','ALBION','RIEVER',20321,1963, ' ');
Error at ...
2
votes
2answers
875 views
SQL Developer help enter a substitution variable
I'm trying to enter around 15,000 lines of data into my table using a script, but when I run the script I get a popup window asking me to enter a substitution variable.
How do I stop that from ...
1
vote
2answers
187 views
SQL Developer help missing comma error
I am creating a table in Oracle.
On doing the following insert I keep getting missing comma error but no comma is missing from what I can see
INSERT INTO driver
(employee_no, first_name, ...
1
vote
0answers
61 views
Force SQLDev to read more rows than it seems to be. SQL Dev, Win7 Ult 64
TIA for and help/advice. This is coursework so pointers to further reading would be great!
Basically I have built and normalised a db concerning a transport company and various things like driver ...
2
votes
2answers
1k views
Oracle SQL Developer copy database step by step
I'm having big trouble in copying an Oracle DB to the same server but with another name, to use as a development DB.
I'm used to SQL Server, I'm new to Oracle (11g).
I wanted to use the 'Database ...
0
votes
0answers
93 views
I can ping a database, should I be able to connect with the correct credentials?
I am able to ping a database server from my machine but am having a hard time connecting. Should I be able to connect or could there be other network features that are getting in the way?
I am trying ...
0
votes
0answers
154 views
Internal error on Oracle SQL Developer 3.2.20.09
I am trying ton insert few data on my existing table but it's showing internal error on all tables.
Here is my simple insert into code where sql developer shows the error:
Insert into STUDENTS ...
0
votes
1answer
1k views
SQL developer: Export schema script with data/index tablespace name?
Currently using SQL Developer with no complaint, now there is a question about how to export schema script with data/index tablespace name on it.
There is an option when right click table => Export ...
0
votes
1answer
295 views
Need to count records and group count by date on oracle db using sql developer
I have a table like the following
ID created sent type
-----------------------------------------------------
0001463583000051783 31-JUL-12 1 270
0081289563000051788 ...
1
vote
1answer
737 views
Oracle SQL Developer how to dynamicly run sql scripts
I have the following challange;
I would like to execute a batch of *.sql files on one database. The sql files are assumed to be named in ascending order of their execution sequence. So the main sql ...
0
votes
3answers
110 views
Update table with joining another table
I want to set field f1 in table t1 with the value 122 if field f2 in table t2 has value 134. Suppose field f34 is the key between table t1 and t2.
How would I write the query for this in SQL ...
0
votes
0answers
136 views
Oracle 11g cannot access nls data file, while connecting via sqldeveloper
When i try to connect via sqldeveloper i getting "cannot access nls data file" ORA-12705 error. NLS lang is in SOFTWARE\ORACLE\KEY_XE with value RUSSIAN_RUSSIA.CL8MSWIN1251. Connection via sql plus ...
0
votes
1answer
92 views
Cant USE databaseName against mysql using SQLDeveloper
Yesterday I installed and ran mysql and used it to create a DB called "classicmodels" (Its for cars not women, for the record).
I then connected to it using SQLDeveloper and tried to run a query to ...
0
votes
0answers
57 views
Using sqldeveloper for data modelling [closed]
I have been trying to model the relationship between my entities with crow-foot's notation in sqldeveloper. I am trying to do something like this ...
2
votes
1answer
114 views
Manual testing a stateless function in oracle sql in SQL developer
I've coded the most complex sql function ever:
function abc() RETURN 7;
I'd like to verify my function actually does what I think it does : to return a 7.
What's the easiest way to accomplish that ...
3
votes
1answer
61 views
How to create a table with date by range
I am trying to get a result from oracle developer.
I need to join 3 table with dates, the output should be :
Date sum count num
2012-10-01 5000 30 15
2012-10-02 0 0 0
...
0
votes
1answer
337 views
Importing sql history into sql developer [closed]
I recently upgraded to Windows 7 from XP, and downloaded the most recent version of SQL Developer. I exported my sql history and have a large amount of xml files. Is there a way to import the sql ...
0
votes
2answers
3k views
Oracle SQL Developer: If Exists Update Else Insert Missing Right Parenthesis Compiler Error
I have been attempting to write a SQL Query in Oracle's SQL Developer that will update a row if it exists and insert one if it doesn't. Besides the primary key(UNITOFMEASURE_USERID), there are three ...
0
votes
0answers
305 views
oracle SQL developer giving Null pointer exception [closed]
Am using oracle sql developer. am getting the following exception. can anyone tell me what am doing wrong? Am getting this error when am trying to open my database through SQL developer.
...
1
vote
2answers
1k views
SQL Developer is returning only the date, not the time. How do I fix this?
Here's what SQL Develoepr is giving me, both in the results window and when I export:
CREATION_TIME
-------------------
27-SEP-12
27-SEP-12
27-SEP-12
Here's what another piece of software ...
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
2answers
403 views
Oracle SQLDeveloper Table Name autocompletion setting
Am using Oracle SQLDeveloper 2.1.1.64 versoin. Table Name autocompletion is not happening.Checked in autocompletion settings but in vain.Any ideas about it?
0
votes
2answers
525 views
Debugging In SQLDeveloper over SSH Tunnel
I am using SQL Developer over an SSH tunnel to my database server without any problems. However, it fails when I try to use the debugger. The debugging window shows:
Executing PL/SQL: CALL ...
0
votes
1answer
183 views
SQL Developer - cannot see some of the rows at the end?
I know that I have about 180 rows in my table. But, SQL developer lets me scroll down and see only 100. The scroll tab/field shows that there are more than 100. But, when i pull the scroll bar down, i ...

