2
votes
2answers
53 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
55 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
41 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 ...
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
61 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
31 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
54 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
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 ...
-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
86 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 ...
1
vote
1answer
28 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
1answer
74 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
110 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
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
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
111 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
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 ...
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
36 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
77 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 ...
0
votes
1answer
72 views

CASE conversion from IIF

I started off with SQL (access) IIf(Len([CAT]) < 3, Left([CAT],1) & 0 & Right([CAT],1), [CAT]) AS CAT1, [HD0] & IIf([TABLE].[HD1]<>"00", " / " & [HD1_ABR], Null) & ...
0
votes
1answer
25 views

Round statement in access to sql developper

I'm trying to duplicate a query and I'm having problems with this line. Can someone help? Round([AMOUNT]*[AG_COEF],0) AS Exp, gives: Error at Command Line:6 Column:9 Error report: SQL Error: ...
1
vote
2answers
38 views

Extract id along with count of other columns

I have four columns in my table CUSTOMER, TRANSACTION(UNIQUE) PRODUCTA PRODUCTB Product A or Product B is either 0 or 1 depending on the item bought. Both are not equal to 1 as each row corresponds ...
1
vote
1answer
56 views

Count total of each activity type - oracle - sql

I have 3 activity types and need to display how many people have taken part in each event. So for example I need the query to display: activity type ----------- total Snowboarding --------- ...
-3
votes
1answer
167 views

sql developer run script (f5) works but run statement (f9) is not working for some tables [closed]

sql developer run script (f5) works but run statement (f9) is not working for some tables. I am using Oracle DB. There is no credential issue.
0
votes
2answers
177 views

Invalid identifier when selecting from table with fieldnames in lower case

I imported data from a csv file and created a new table. The first row was the header. When I am trying to run some simple queries to these tables I get an ORA-00904 invalid identifier error. The ...
0
votes
3answers
269 views

ORA-06502: Numeric or Value Error on very basic string function, what gives?

Here's the code... this isn't the complete code. I trimmed it down to where the first error occurred: FUNCTION get ( p_sql_o OUT VARCHAR2 ) RETURN VARCHAR2 AS ...
1
vote
2answers
768 views

Find table from querying column name in oracle SQL developer

I want to query a database for a column name to find the table without knowing the table name (there are a huge number of tables) I am working with a huge database at the moment and trying to find ...
0
votes
1answer
130 views

Is there a way to find ddl scripts for creating users in Oracle Sql Developer

In Toad, it's easy to look for a ddl script that creates a user with all its grants and roles: In Oracle SQL Developer, I find a similar option but it's not complete: Is there a way to have same ...
0
votes
1answer
170 views

for looping in sql developer

Again there is a ourageously freaking error.. "not a single-group group function" I have got an empty table mig_temp1, which I want to fill with observations)) what is wrong about this select?? ...
0
votes
1answer
604 views

Importing excel column names to sql developer to create table

i have an excel spreadsheet with 55 columns. Is there a way to import these columns names into oracle sql developer so i don't have to create a table and insert these 50 columns name and data type ...
0
votes
1answer
81 views

Oracle build-automation?

I have a created number of table, function, view, and procedure scripts to support reporting. Due to the complicated environment, migrating scripts (development-->testing) can be a chore. The DBA ...
0
votes
1answer
174 views

Oracle: Connection intermittent issue using JDBC url

SQL developer provides multiple methods to connect to a database instance. If I choose the Basic method, which provides hostname, port and SID into input box separately, database connection runs ...
0
votes
2answers
96 views

Do I need to install oracle db before using sql developer?

do I need to install oracle db before using sql developer? I just install Oracle Sql Developer and I'm getting a message box saying: "Enter the full pathname for java.exe". It looks to me like Oracle ...
0
votes
1answer
124 views

Oracle package debug doesn't stop on breakpoint

I have the following structure: A package PCK_LANCAMENTOSERVICO within a procedure called P_Integra. This procedure calls another procedure in another package PCK_LANCAMENTO called ...
1
vote
3answers
560 views

Compare tables from two different databases SQL Developer

I am using SQL developer to connect to the databases, I am currently involved in Replication Testing: Here are the links for the Source and Target: **Source** Host Name - n****-s**n.o*s.lab Port - ...
1
vote
1answer
299 views

Oracle Delete Statement: how many rows have been deleted by cascade delete

I'm executing a statement like DELETE FROM USER WHERE USER_ID=1; In SQLDeveloper. As the user is referenced in many tables (for example the user has an order, settings, ...) we activated ON DELETE ...
0
votes
1answer
313 views

What is the maximum statement length in Oracle

I'm building a SQL statement that contains data, and I'm wondering if I would break some maximum statement length in Oracle 10g. The statement would be about 3 200 000 bytes, cannot be split, and ...
0
votes
0answers
52 views

SQL Developer Data Modeler 3.1 wheres the template?

I remember back on 3.0 there was a Tree Item with the Templates for default keys, indexes and columns generation . I deffinitly can't find them on 3.1. Where they are?!
0
votes
1answer
90 views

stored procedure always returns “Process exited” error always

I am working on a table structure similar to the below and trying to get the output as mentioned. To acheive this, I written the below PL SQL procedure: CREATE OR replace PROCEDURE ...
0
votes
2answers
196 views

SQL Developer debugging for all calls to package

I have a package on my Oracle database, that I have compiled for debug and set breakpoints in. From SQL Developer I am then able to press ctrl+shift+F10 to run the debug and select which procedure I ...

1 2 3 4 5 6