Oracle SQL Developer is a free and fully supported graphical tool for database development.

learn more… | top users | synonyms

-1
votes
1answer
41 views

sqlldr not found when using SQL*Loader in a shell script [closed]

I would like to create shell script, AUTOLOAD that will, when ran, execute SQL*Loader with a set of instructions. All this is in my Linux environment. SQL*loader will then import data to SQL ...
2
votes
2answers
50 views

how can my sql script determine whether it is running in sqldeveloper or sqlplus?

I'm trying to work around the SQLDeveloper linesize bug by writing my script to detect whether it's SQL*Plus or SQLDeveloper. Something like: COLUMN SET_THE_LINE new_value TARGETLINESIZE noprint ...
1
vote
2answers
32 views

Why the Oracle procedure not compiling?

CREATE OR REPLACE PROCEDURE ResetVersionNumberValue IS sql_stmt VARCHAR2(2000); BEGIN FOR sql_stmt IN (select 'update '|| table_name || ' set version = 0' ...
0
votes
0answers
11 views

J2SE SDK configuration in oracle sql developer

I installed oracle sql developer in my machine. When I try to open sqldeveloper.exe, I get a popup that prompts me to select a file path for java.exe I have java.exe at C:\Program ...
0
votes
3answers
40 views

Dividing 2 SELECT statements - 'SQL command not properly ended' error

I'm getting the ORA-00933 error referenced in the subject line for the following statement: select (select count(name) as PLIs from (select a.name, avg(b.list_price) as list_price from ...
2
votes
1answer
27 views

Appending trailing zeros to a oracle number in Oracle

I need to format the NUMBER data type in Oracle as follows: Problem Statement: -> Append trailing zeros to the ATM_CARD-NUMBER whose length is 14 My Attempt: SELECT ...
0
votes
1answer
54 views

How to add a connection to tnsnames.ora [closed]

I want to use SQL loader to load data in to sql developer from csv file. However, I am getting the following error C:\app\sai\product\11.2.0\dbhome_1\network\admin\sqlnet.ora TNS-03505: Failed to ...
0
votes
1answer
27 views

Oracle SQL suming value without using aggregate function

I am studying for my SQL class and I'm stuck on a about writing a SQL query without using aggregate functions. For example, we have table item. item_id | price 1 | 10 2 | 20 3 | 40 ...
0
votes
1answer
14 views

Confusion on connecting to either Oracle SQL Developer Databse or Oracle 11G?

I'm working on a school project requiring me to use a our schools server as a database. They have an Oracle 11G Standard Server. I'm using Putty to tunnel data to Oracle SQL Developer. Once I've ...
0
votes
1answer
44 views

How create a procedure from a select query

I have a query that give me access of each user by identified UserID: My query is : SELECT A.ACTIONID,A.ACTIONNAME,A.ALLOWWRITE,A.ALLOWREAD FROM ...
0
votes
0answers
24 views

Dynamic Oracle function

Is it possible to create a function that will get the id and name of a table as parameters in a select statement? I want to check whether the status is 1 or 0 from different tables. eg. CREATE OR ...
0
votes
1answer
26 views

Stored Procedure to comapre 2 fields and return mismactch in another table

I am creating stored procedure in Oracle SQL Developer. I am trying to compare two columns form 2 tables and if any table has more records , I need to collect them and store it in ( another table) ...
0
votes
1answer
47 views

Quickly open table in SQLDeveloper

I use Oracle SQL Developer for a pretty big project, with a great number of tables. Is there a way I can quickly open a table by typing its name ? For example, in IntelliJIDEA, the ctrl + shift + N ...
0
votes
1answer
240 views

Oracle SQL Developer: Unable to find a JVM

I'm trying to open Oracle SQL Developer on my Windows7 64-bit. When I tried to open SQL Developer it asked for java.exe path and I gave C:\Java\jdk1.6.0_34\jre\bin\java.exe I got an error from ...
1
vote
1answer
35 views

oracle sql minus with truncation

I want to compare two tables using the minus command in sqldeveloper (oracle sql). One table (TABLE A) was generated with a procedure (procedure A) that produced values in column X with the following ...
-2
votes
1answer
138 views

SQL Developer, Java 1.7.0_07 error [closed]

So, while trying to open Oracle SQL Developer on my Windows 7 machine, I get the following error: You are attempting to run with Java 1.7.0_07 Running this product is supported with a minimum Java ...
1
vote
0answers
97 views

Loading Java file through Oracle SQL Developer tool

I'm new to Oracle SQL Developer. I have an Oracle database which is connected via Oracle SQL Developer tool. I have a DB function which in turn calls a Java method. I have created a DB function under ...
0
votes
1answer
58 views

Error in Parameters of Stored Procedure when Dynamic SQL is used

I am using Oracle Sql Developer to write a Stored Proc, which accepts a list of values separated by "," (dynamic sql) and use this variable in "in" clause to fire a query from a table. But i am ...
1
vote
1answer
36 views

how to enforce xmlforest creat elements even if expression value is null

I would like to use the oracle XMLFOREST fonction. (Link for definition) Example Syntax: XMLFOREST( [value expression AS alias], [...]) My problem is that if value expression is NULL, then no ...
1
vote
1answer
136 views

display multiple blob images in a single page

Hi I am using servlets to read BLOB images form oracle database and display it in a html page My example code is protected void doGet(HttpServletRequest request, HttpServletResponse response) ...
0
votes
1answer
97 views

ORA-00904: Invalid identifier when using dbms_random.value

This article here suggests using dbms_random.value to select random values from a table. My query select value1, value2 from (select value1, value2 from my.table order by dbms_random.value) where ...
0
votes
1answer
165 views

How to get values between two dates from a table which have no data some days

i am getting a total from my table by grouping date. For example if you look at below picture when i try to get values between '08.03.2013' AND '22.03.2013'. There are no data for 18.03.2013 and ...
2
votes
2answers
61 views

Get Data Of Third Column Based on Two other Columns

This is a sample table ID STOREA STOREB STOREC AB BC CA ABC --- ------- ------ ------- -- -- --- --- 10 1 0 0 10 0 1 0 10 0 1 0 29 0 ...
1
vote
1answer
74 views

Need help- Query to insert an image into a table in sql developer3.0

Hi I am using sql developer 3.0. I need to store images as a BLOB in a table. I created a table as follows: CREATE TABLE Account_images(img_id NUMBER, MP_ID NUMBER, icon BLOB); The images i need ...
-1
votes
1answer
48 views

Call a procedure, into a procedure

I have a procedure, that insert a line into one of my table. After the INSERT in the procedure, I want to find all the lines into another table, and then, call the insert procedure of the second ...
0
votes
1answer
52 views

Cast returned value into x digit long integer

Is it possible to return a value as a 7 digit integer? I'm only finding it possible to just return as an integer with no other options.
0
votes
4answers
39 views

Count DateTime Stamp For Results

I have a table containing a list of userids and a datetime stamp for when a transaction is carried out. It looks like the following: UserId | Stamp John11| 01/01/2013 01:15:27 I would like to ...
1
vote
1answer
65 views

Oracle Sql Developer connections

Where does Oracle SQL Developer-3.2.20 store connections? It used to be in IDEconnections.xml but in the latest version I do not see this file.
1
vote
3answers
36 views

How get specific rows in grouped result

i need to group some data but because there are 4 store images , sql query return 4 result for every store. How can i get only one for a store by using sql query ? select ...
0
votes
1answer
103 views

Oracle Data Modeler: Switch to Crow's Foot notation

This is the standard notation: I would like something like this: Can be it changed somehow?
0
votes
2answers
37 views

How to merge two result

I have two type of sql query it returns same data, i need to merge two of them, if i use Union it puts second result to first result but i dont need this, i need merge date or are there a way to ...
1
vote
3answers
33 views

Food Selection Query

I have a table food which has the following constraints Food Name(which has the dish name) category (cuisine name) DeskNo(The table that it is placed on) Food: Name Category Deskno ...
1
vote
1answer
30 views

How to open a specific table on startup or connect?

In my current environment I have a HUGE list of tables to scroll down through and finding that specific table I need to double-click is tedious (almost like trying to find a needle in a haystack). Is ...
5
votes
1answer
349 views

How does “cancel query” work in SQL Developer

In SQL Developer, clicking on the Cancel Task button stops the execution of a query immidiately. I have to implement the same functionality in our project. I am using BC4J as an ORM tool to execute ...
0
votes
2answers
63 views

SQL Update from one table to another table, no common data

In my Customer table, there is a row called *inactive_status*, which is always set to 'Active'. This is unless *is_paid* (located in the Billing_Info table) is set to 0. I need to use the Update ...
0
votes
2answers
152 views

oracle sql date comparison doesn't work as expected

I have a table X with 'insert_date' column. This column is od type DATE and contains only one value for all records: "17-JAN-13". I would expect that following query return no results at all: SELECT ...
0
votes
1answer
84 views

Export table with `to_timestamp` instead of `to_date`

I need to export the data from a table i.e. insert statements for that table. The date needs to be in to_timestamp format instead of to_date. This is how it needs to be ...
0
votes
2answers
31 views

Loop not working in package

I have two tables :- Person and bank details Person table :--- person_id employee_number 393829 X1029 648494 x9494 393939 X2299 Bank details :--- person_id ...
0
votes
1answer
359 views

How to change the timezone to Oracle SQL Developer / Oracle Data Modeler?

Each time I run Oracle SQL Developer or Oracle Data Modeler I receive this error message: ora-01882 "timezone region not found" Digging a this issue, I found that both Oracle SQL Developer and ...
0
votes
1answer
126 views

Oracle Sql Developer 3.1 Unable to see Stored Procedure

Hi I am using Oracle SQL Developer 3.1.06 and connected to 11g EE. Whenever I will click edit in any procedure in the left pane, showing "create or replace" in the right side window.. I am not able to ...
0
votes
0answers
31 views

Auto-Fit in Oracle SQL Developer [closed]

Is there a way for me to set my Oracle SQL Developer tool to Auto-Fit all columns when the data is returned? I always get chopped off headers or chopped off data, and I am wondering if there is a ...
0
votes
0answers
646 views

Read text file to insert data into Oracle SQL table

I am studying Oracle SQL develop. What I am doing is reading text file line by line from the folder. Then Inserting data to the SQL table. I am able to compile my PROCEDURE, however, it doesn't seem ...
0
votes
0answers
75 views

Charset for exporting from SQL developer

When exporting from Oracle SQL Developer I've been mostly using 'Macroman', but this causes some problems when I further want to manipulate the data with Python, or when I import the CSV-files into ...
0
votes
1answer
174 views

Oracle SQL Developer debug error - “The file-based source <Package Name> is not present in the database.”

I'm using SQL Developer to try to debug a package-level function. After I compile both the header and the body of the package for debug, I find my function in the source (which was loaded from the DB ...
0
votes
3answers
63 views

Returning 1 or 0 in specific SQL query

I have three columns in the table MYTABLE (ID, NUM, NAMES). There is a column NAMES. I need to check on NAMES column to see if the first name is JACK or BRUCE and the corresponding NUM column = 0. If ...
3
votes
3answers
77 views

Finding minimal distance between objects from different tables

I have two tables, both contain objects with XY coordinates: Table A: ID_A | X | Y -----|------|------ 100 | 32.2 | 25.6 101 | 36.2 | 22.1 102 | 31.7 | 39.2 103 | 42.7 | 15.6 104 | 24.5 | ...
0
votes
0answers
129 views

Oracle SQL Developer - Unit Test - How to create a table during startup process

I'm going mad with an apparently simple task, but I cannot find the way to do it. I want to create a table during the startup process of SQL Developer unit test. The wizard gives me two options: 1) ...
1
vote
2answers
833 views

ORA-01799: a column may not be outer-joined to a subquery

Here is my query SELECT COUNT(C.SETID) FROM MYCUSTOMER C LEFT OUTER JOIN MYCUSTOPTION CO ON (C.SETID = CO.SETID AND C.CUST_ID = CO.CUST_ID AND ...
0
votes
2answers
86 views

Rewriting query to format sql results differently

I have the following query to get the number of products of various types available on each day of a week. select product_type, availDate, quantity from myTable where availDate between '2013-02-15' ...

1 2 3 4