Oracle SQL Developer is a free IDE (Integrated development environment) for working with SQL in Oracle databases. It is written in Java.
0
votes
0answers
21 views
Why am I not able to select debug my sql script in Oracle SQL Developer?
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
20 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
26 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 = ...
-1
votes
1answer
60 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
54 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
56 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
42 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
10 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
61 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
99 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
64 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
32 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
32 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
28 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
55 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 ...
-1
votes
0answers
15 views
Commit SQL developer testcases into SVN [closed]
i am working on TDD for PL SQL and found SQL developer unit testing framework as a handy tool for testing and coverage. However i am unable to commit the unit test cases into SVN and maintain a ...
0
votes
1answer
56 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
16 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
40 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
22 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
21 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 ...
0
votes
1answer
23 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
87 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
16 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
29 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
33 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
35 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
167 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 ...
0
votes
1answer
75 views
Oracle SQL. How to execute query one by one
Could you help me, how can I execute query one by one in Oracle SQL Developer?
When there's one query system works correctly.
But when I write 2 or more and press "ctrl" + "enter", System marks out ...
0
votes
2answers
115 views
Oracle SQL Developer - How to remove double quotes in generated DDL
I am using Oracle SQL Developer 3.0. When I script out the BONUSES table under the DEPT schema, just as an example, it produces this DDL.
CREATE TABLE "DEPT"."BONUSES"
( "NEW_EMPLOYEE_ID" ...
0
votes
0answers
61 views
Creating a View Script based on data from a table (Oracle SQL, using SQL Developer)
I have a mapping table whose data I am using as column labels and column names to create a view.
MAPPING TABLE
ColumnLabel | ColumnName
What We Want To see | The Name of the Column
So ...
1
vote
1answer
81 views
SQL query to list only the 'non null' fields in result
I have a table with 70 plus columns. I often search the table for a single row.
Ex:
select * from customer where customer_id='xyz';
The customer_id is unique.
In the result, there will most ...
0
votes
0answers
46 views
Converting Time Zone Issue
I want to get all records created on 1-Apr-2013. As the time and date in DB are stored in UTC, and user input would be in local time, I apply timezone conversion on user input, to convert the ...
0
votes
0answers
50 views
Query on record's created time doesnt returns correct record
I am trying to generate a report using sql. The problem is that the record that satisfy the query (record 1-24440984) is not fetched.
This is my original query. (I have included the record number, ...
1
vote
2answers
51 views
Using sequences as primary key
I have one table called INTER and I want to transfer some data from INTER to FINAL (a new table which is already created and empty) using a procedure.
I have to make use of sequence as a primary key ...
1
vote
2answers
85 views
SET TRANSACTION error , C# , Oracle
I have procedure in my C# device application app. This is how it looks:
private void stk_crane_start_movement()
{
conn.Open();
OracleCommand cmd = new OracleCommand();
...
1
vote
2answers
67 views
complex sql select
I can't figure out how to make this sql select statement...Here are my tables :
I opened the tables concerned by the request
So basically I want to select the number of albums for each interpret.
...
1
vote
0answers
21 views
Is there a way to disable view data copy when copying a schema (objects and data) with SQLDeveloper?
I've been playing around with copying a schema using SQL Developer's Database Copy tool. I have a view that selects from a table in the same schema. When I do the copy SQL Developer generates inserts ...
-1
votes
1answer
92 views
run a sql query everyday using Sql Developer automatically [closed]
I want to run a SQL query everyday at 5.30 p.m. Can you please help me to do this automatically and place the output in a folder. I use only SQL developer to connect to database. But my database does ...
1
vote
2answers
64 views
oracle sql developer table column without quotations
I'm using SQL Developer to create oracle tables. I'm trying to create the columns without quotes, but after creating the table, when I see the DDL, all columns and table names are in quotations. I ...
1
vote
0answers
98 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
113 views
To fetch more than 1000 records using an IN clause [duplicate]
I am using sql developer on an oracle database. My requirement is to pull out more than 8000 rows at once using primary key ID's that I have. sql developer doesn't allow me to fetch more than 1000 at ...
0
votes
0answers
65 views
Oracle import from flat file
I'm trying to import data from a csv delimited text file into oracle table. I've created a table with the required columns and trying to use the import option(right click and select import option) and ...
0
votes
1answer
33 views
Code generation for “scheduler chain” in SQLDeveloper 3.2
I use the visual editor to create schduler chains in sqldeveloper3.2. But faced with a problem - can not get the SQL code of the chain, namely the sequence of requests create_chain, define_chain_step, ...
3
votes
0answers
107 views
SQL Developer stripping inline hints
I'm using SQL Developer 3.1.07. I ran a query to Oracle with an inline hint --+ hint in it but SQL Developer seems to have stripped the hint before submitting it to the database. Multi-line hints ...
1
vote
2answers
41 views
Count minutes between first and last tuple and group by username
I have a table that stores data regarding users that visit a system. As the user is browsing the system, I am storing their location, username, date and time in an Oracle 11g database. My table looks ...
1
vote
1answer
75 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 ...
0
votes
1answer
33 views
Connect to Oracle server from local network client
i want to connect to oracle on IP 192.168.1.18 from a client IP 192.168.1.200 through SQL developer
i setup oracle server on the server
what i must set up on the client except sql developer?
...
-1
votes
1answer
37 views
Case statement taking in null [closed]
SO I now have my query which reads HD0/HD1/HD2/HD3/HD4 but running into an issue, where if i have a null value i then get duplicate // ei. hd0///hd3/
any ideas
Hd0
||'/'||
Case
When table.hd1 ...
0
votes
2answers
79 views
CASE Statement error in SQLDEveloper [duplicate]
I am getting an error in my case statement can someone please help
Case
When length(cat) < 3
Then SubStr(cat,1,1) || '0' || SubStr(cat,-1,1)
Else cat
End cat1,hd0,
Case
When GEMS_CMN_HD1_ABREV.hd1 ...

