Oracle SQL Developer is a free IDE (Integrated development environment) for working with SQL in Oracle databases. It is written in Java.

learn more… | top users | synonyms

0
votes
1answer
11 views

SQL: Cross tab query to unpivot column names to rows

Sorry If I'm unclear. This is what I have: Table A And this is what I want to achieve: Table B Basically, instead of having a column for each item, I want to put all of the items under one column ...
0
votes
0answers
6 views

How to back up Complete Schema at one go in Oracle?

[oracle@test ~]$ expdp {user_name}/{Password} dumpfile={Dump file name} directory={Name of directory } logfile={Log file Name} schemas={Backup schema Name} This is not working. Is there any other ...
0
votes
5answers
40 views

How to exclude holidays between two dates?

I have two dates and I have to find out the number of Sundays and holidays fall between those two dates. Can I do this using BETWEEN? If so, how? SELECT date1, date2, trunc(deposit_date - ...
0
votes
0answers
33 views

How to exclude non-working days and holidays in between two dates?

SELECT date1, To_Char(date1,'DY'), date2, To_Char(date2,'DY'), Trunc(date2-date1) Days FROM Table_Name WHERE Trunc(date2-date1) > 0 This gives me the records which have the day-difference of more ...
1
vote
1answer
24 views

How to remove weekend non-working hours in PL/SQL?

IF (To_Char(Date1,'Day') = 'Sunday' Or To_Char(Date2,'Day') = 'Sunday') Then SELECT columns ... FROM Table_Name; ELSE SELECT columns ... FROM Table_Name; This is not working!
1
vote
1answer
25 views

Multi-schema select statement doesn't work in PL/SQL procedure?

I'm trying to create a procedure to run multiple PL/SQL statements, but I haven't gotten very far. The select statement works fine if I run it out of a procedure, but if I try to execute it inside one ...
-1
votes
0answers
32 views

Procedure that takes two input and inserts a record

I want to create a procedure in oracle that takes a query as a input and compares the query result with a expected output, that too need to be passed as a variable.If that matches it inserts a record ...
0
votes
0answers
22 views

SQLDeveloper exclude tables from generate db doc

I'm looking to generate html documentation for an Oracle 11g database using Oracle SqlDeveloper's 'Generate DB Doc' command (right click on database in connections panel). The problem is that I don't ...
0
votes
0answers
18 views

How can I arrange / control the order of objects beeing exported from SQL Developer to a sql-file? [migrated]

I want to define a specific order in SQL Developer, if I export the database. I.E. First the Tables, then the package, afterwards the views etc. Is it possible? I'm using Oracle 11g and SQL ...
0
votes
2answers
17 views

Oracle SQL Developer - Database Diff - How to choose a different schema

I have Oracle SQL Developer 3.2 installed. I want to a a Tools -> Database Diff. How do I choose a schema other the user's own schema? I looked through the settings and am not able to find it. ...
1
vote
2answers
21 views

Export to a file from SQL Developer?

I am trying to run the export command in SQL Developer. I get the error message "Unknown Command". Searching the web, I am told by many to run catexp.sql. I don't have that file, and I don't know how ...
-1
votes
1answer
24 views

Inserting into or Creating a table from one table and one view in Oracle

I'm trying to either create a new table or insert into a currently existing one. The data I need is contained in two seperate places. One is a table, we'll call it T and it contains one column of data ...
0
votes
1answer
45 views

Managing common code used in multiple SQL Statements

I use SQL Developer to create PL/SQL statements querying our corporate Oracle 10g database and I've found that there are many common components to these queries, such as a set of joins or criteria ...
0
votes
1answer
29 views

Can Eclipse or SQL Developer automatically unquote Java Strings?

I'm aware that SQL Developer can craft Java Strings using the Advanced Format option (Ctrl+Shift+F7), but can it or Eclipse do the reverse? Is there a quick command to evaluate (or at least ...
1
vote
0answers
16 views

Scheduler Job sql failed

Hi I am running some SQL in sql developer scheduler jobs select to_char(mmsdate,'dd/mm/yyyy'), count(*) but it returning fail with error 6550. Kinldy help.
2
votes
3answers
60 views

Display multiple rows with one column

I have two tables. Title and Order. Title has title_num. Order has title_num and order_num. Each title has many orders. I would like to display title_num and all of its orders. But I would like to ...
0
votes
1answer
26 views

Oracle SQL query issue

I am using oracle's SQL Developer. To begin with, I have this table: Name Null Type -------------- -------- ------------ EMPLOYEE_ID NOT NULL NUMBER(6) FIRST_NAME ...
1
vote
1answer
75 views

PL/SQL UTL_FILE read trouble on anonymous block

DECLARE data_line VARCHAR2(200); -- Data line read from input file data_file UTL_FILE.FILE_TYPE; -- Data file handle my_dir VARCHAR2(250); -- Directory containing the data file ...
1
vote
1answer
41 views

Using variables in Oracle SQL Developer 3.2

I am extremely new to SQL, and manage to extract from some other queries we use the following syntax: --VARIABLES undefine PF_PROD --product; undefine PF_PSG --shop; --QUERY SELECT * FROM ET1250 ...
2
votes
2answers
197 views

Any Free Alternative for Oracle SQL Developer

I'm having a little hard time using the SQL Developer, like when doing lengthy scripts and there's an error somewhere, I have to go at most line by line searching the error. I recently shifted from ...
0
votes
2answers
50 views

Exporting a large data from oracle

I want to export a large amount of data from oracle something like 7 million records and then import it in mysql. but during the exporting a data from oracle(using oracle sql developer), the sql ...
2
votes
2answers
180 views

Oracle SQL Developer spool output?

I am using Oracle SQL Developer 2.1.1.64 to spool the results of a query to a text file Here is what I am running to call the quesry and spool the results SET NEWPAGE 0 SET SPACE 0 SET PAGESIZE 0 SET ...
1
vote
1answer
48 views

403 Forbidden returned when attempting to save to database

I'm trying to save/update several records at a time to my database (sql-developer) using Spring and Hibernate. I pass my data via an ajax call through my controller, to the service layer, to the Dao, ...
-1
votes
0answers
33 views

Why am I not able to select debug my sql script in Oracle SQL Developer? [closed]

All options are disabled to debug in SQL Developer. I am not even able to select toggle points. Can you please give me idea what happened and how to run step by step code? Please give me steps to ...
0
votes
0answers
41 views

UPDATE table from another TABLE using database link

I need to add values to username field in table1 from table2 in different connection. What I have so far is: UPDATE conn1.table1 SET table1.USERNAME = ( SELECT MSUSERNAME ...
0
votes
3answers
60 views

Connection from a Java program to a SQL Developer database

I would like to access to a Oracle database (SQL Developer) from a Java program. I never used JDBC before. Here is what i wrote: Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); String url = ...
0
votes
1answer
175 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
67 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
75 views

ORA-00907 when quering from my Java application but works fine in SQL Developer

My query that I put into a prepared statement is: select * from ( select seq, audit_ts, message_type from log2 where 1 = 1 and message_type in ('SOURCE', 'DEST') ...
0
votes
2answers
77 views

How to extract week number in sql

I have a transdate column of varchar2 type which has the following entrees 01/02/2012 01/03/2012 etc. I converted it in to date format in another column using to_date function. This is the format ...
0
votes
0answers
12 views

Entity manager for appcelerator mobile

I know that joli library is a ORM for appcelerator but I want to know that is there any entity manager for appcelerator mobile?
2
votes
1answer
93 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; ...
2
votes
2answers
110 views

before a date in Oracle SQL

ONE Date is given for eg ( 11th May 2013 i.e Saturday). I have to find 7 business days(MON-FRI) before this date. That is 3rd MAY 2013 i.e fri. I know how to find out the business days beteen two ...
0
votes
1answer
173 views

SQLDeveloper will not launch

I've just installed Oracle 11g on Windows, but I can't seem to launch SQLDeveloper. I get the following error: "Windows is searching for SQLDEVELOPER.BAT". To locate the file yourself, click Browse". ...
0
votes
1answer
41 views

How do I select a variables value in SQL Developer

Problem I just want to see the value of a variable. I don't understand why this has to be so difficult. My SQL Statement --set serveroutput on format wrapped; Tried this too SET SERVEROUTPUT ON; ...
1
vote
1answer
53 views

add check constraint, get invalid data type error

Using Oracle SqlDeveloper Table T has two columns ID (Number) Desc (VARCHAR2) I try the following query to add the check: ALTER TABLE T ADD CONSTRAINT 100chk CHECK (ID BETWEEN 0 AND 100); ...
0
votes
0answers
33 views

Oracle document generation

I need to generate the documentation of an Oracle database. I use SQL Developer's Generate DB Doc tool, but the generated html it's empty ( it has all the links to tables, index etc, but that html ...
1
vote
1answer
62 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 ...
0
votes
1answer
81 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
32 views

Selecting MYSQL database in SQL-Developer

I have created a database in MYSQL naming "X" (for example). When i create a new connection and select the database in SQL-Developer, i get only "information_schema" and "test", the default table ...
-1
votes
1answer
44 views

Oracle DB sqlplus issue

I have a Oracle Server DB 11g Release 11.2.0.1.0 installed on my local pc. When i try to run the command select * from idc_geraet with sqldeveloper i get the expected result, but if i run the same ...
0
votes
2answers
25 views

oracle sql developer: identify fields in table that have changed over time

Oracle version: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod My table structure: Field 1: Name Field 2: Year Field 2: Sales_Rev Field 3: Rep_Cat There are three types of ...
0
votes
1answer
43 views

correct usage of Substitution variable in SQL Developer

My question is on the usage of Substitute variable in SQL Developer. select &C1, &C2 from X where &C1 = 'abc123' and &C2 = 9999; I wanted the above statement to ask for my inputs on ...
1
vote
1answer
31 views

Oracle error:Throws Not a Valid Month error in debugger but runs fine in Oracle SQL developer

This query runs fine in Oracle SQL developer but throws an error in the code while debugging. It throws an error: Not a valid month. Why the same query would run fine in SQL developer but break in the ...
0
votes
1answer
89 views

SQL query using Decode

Hello I am trying to create a query that will list all students who have ever taken a course without having all the prerequisites for that course before taking the course. A prerequisite must be ...
0
votes
0answers
19 views

Can anyone tell me how to write this query

List ALL Plans and the count of Members that have subscribed to those plans. (use either the right or left join). List the PlanID, plnDescription, plnCost and the count of Members for each plan. ...
0
votes
0answers
44 views

SQL Developer Task Status Window Disappears

When viewing a task in SQL Developer, the task status pop-up window (or line in the embedded task status window) disappears upon successful completion of said task. Is there a way to change this ...
1
vote
1answer
53 views

Viewing MSSQL data to Oracle

Hello I have created a Database Link from Oracle to MSSQL Server 2008 using Oracle Gateway. DB LINK: create public database link mssql connect to "user" identified by "password" using 'gateway-SID'; ...
0
votes
0answers
53 views

Generate SQL (Insertion) script of CLOB/NCLOB fields in Oracle

I want to generate Sql(Insertion) script for my tables in Oracle. Some of the tables contains CLOB/NCLOB columns. I have used Oracle Sql Developer 1.5.5. That generate the script perfectly but in ...
-1
votes
1answer
402 views

SQL Error: ORA-00942 table or view does not exist

I use SQL developer and i made a connection to my database with the system user, after I created a user and made a another connection with that user with all needed privileges. But when I try to ...

1 2 3 4 5 10