1
vote
4answers
35 views

Oracle SQL How to find missing value for different users

I have 2 tables One table with questions ID Description == =========== 1 Some Question 2 Some Question 3 Some Question 4 Some Question And an other one with the awsers to each question of ...
0
votes
1answer
22 views

relationships in groups (+user & friends)

i have 3 tables like this Users table id | name ------------- 1 | s1 2 | s2 3 | s3 4 | s4 5 | s5 6 | s6 friends table friendID | ...
0
votes
1answer
22 views

Tabular column value Oracle

I am working on Oracle 10, I create view from several tables (student Id, lecture Id, details, lecturer name), then I make tabular rows for the view and I make delete button beside each row. ...
-1
votes
2answers
52 views

I need to write a query that will return specific values from an empty table [closed]

So I need to write a query that will return a single row of data consisting of 4 columns using an empty table. I also need to specify the names of the columns that will be returned. I can't use the ...
-1
votes
2answers
23 views

Two Oracle Sum Functions in one query

Here's my issue. I have three Oracle tables. Table Building: Building_Id | Building_Description ---------------------------------- B1 | Building1 Table Room: Building_Id | Room_ID | ...
-1
votes
0answers
32 views

ora-00001 when using merge inside a preparedStatement java

I'm using preparedStatement to loop though my data and insert/update by merge statement my oracle tables. My problem is that I'm getting ora-00001 (unique key violation). When I drop the PK from the ...
-4
votes
0answers
52 views

Is there a server-agnostic way to force an index (or at least give hints)? [closed]

Specifically, when comparing Microsoft SQL server to Oracle. I'm trying to write a query that will work on either and I really, really need to make it use indexing.
0
votes
2answers
47 views

Increasing a +1 to the id without changing the content of a column

I have this random table with random contents. id | name| mission 1 | aaaa | kitr 2 | bbbb | etre 3 | ccccc| qwqw 4 | dddd | qwert 5 | eeee | potentials 6 | ffffffff | toto What ...
1
vote
1answer
32 views

SQL alias select

I need to reorder my query to have the name in the first column, but I still need the rest of the columns populated as well. How would you implement an alias in oracle to achieve this query? select ...
0
votes
1answer
30 views

oracle subquery returns multiple rows

I am trying to identify a student's country of origin but the data is not clean. so i use a union to look in different places, but since data is not clean sometimes query returns 2 rows in subquery, ...
0
votes
1answer
35 views

Returning distinct email addresses of multiple users with duplicate emails

I have a database that has the following fields Create table users { id int NOT NULL, username varchar(255), email varchar(255), signup_date date, PRIMARY KEY(id) } Create index user_index On users ...
1
vote
2answers
34 views

Oracle Date Conversion

I have a query field in MS access 2010 which will convert the Date for Asia Pacific Region. My query field looks like this.This is a Calculated field. 'Employee List' is the Table Name and ...
-2
votes
2answers
32 views

ORA-00933: SQL command not properly ended (extremely basic query)

My query is just select * from table; Why would I be getting this error?
0
votes
0answers
15 views

Merge into not updating row with the same non pk value that needs to be unique

Help!! I have a written a query to merge data from a view into a data warehouse table The view has data from 3 different databases I need to update a row in the data warehouse if TFN (tax file ...
-2
votes
2answers
27 views

count child records based on parent and date sql

I am tryin to find the number of child records associated to a parent. This is based on 2 columns in the same table (master_ref for parent and ref for child). The difficulty i am finding is to only ...
2
votes
1answer
27 views

Select xpath values as separate rows in Oracle SQL

I need to select some values from an XML stored in a CLOB column in an Oracle database. The best I could come up with is the following: select extract(xmltype(COLUMN), ...
1
vote
2answers
24 views

oracle sql developer most common value with ties

At the moment I have: select username, email from memberinfo where username = (select username, count(username) as big from rankinginfo group by ...
0
votes
2answers
26 views

Select columns based on a CSV in another table

I have a table which contains the following: Table1 ID Range Rate 1 A,B,C,D,E,F 1.2 2 A,B,C 3.1 and another table: Table2 ID A B C D E F G H J K 1 1 2 1 3 4 2 4 5 8 1 2 ...
2
votes
2answers
57 views

PL/SQL: SELECT INTO raises ORA-00947

I'm using Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production I've created an object type: SQL> create or replace type TestObject as Object ( 2 id INTEGER, 3 name ...
3
votes
2answers
74 views

Query not using Index --

My question concerns Oracle 11gr2 and the use of indexes in SQL queries. Please help me with issue below, I am unable to use index on this query: SELECT ListingManagerID, FirstName, ...
0
votes
0answers
21 views

Which component is part of Teradata's open architecture? [closed]

Which component is part of Teradata's open architecture? And WHY ? A. PE B. Operating System C. NODE D. BYNET
0
votes
2answers
24 views

sql loader - check for specific field value

I have a field called "FLOATVALUE" in csv/text file. I receive this file from third party, this has below possible values NULL {} Any number When I insert this value as below ...
1
vote
2answers
60 views

Is there a workaround to the Oracle Correlated Subquery Nesting Limit?

I have a situation where I'm trying to use a correlated subquery but am running into the nesting limit in Oracle. I might be missing another feature that Oracle has, so I thought I'd post this ...
-1
votes
1answer
52 views

Creating a function to check if two items exists in the table together

I am currently working on this code to check the status of an employee and I want to create a new login function: create or replace FUNCTION get_status_by_employee_id ( p_employee_id NUMBER ...
3
votes
3answers
37 views

Oracle Join SQL Quest

I have 3 tables as per below: CREATE TABLE USER_STATUS ("UID" varchar2(7), "STAT_ID" varchar2(11)) ; INSERT ALL INTO USER_STATUS ("UID", "STAT_ID") VALUES ('UID_001', 'STAT_ID_001') INTO ...
1
vote
0answers
60 views

Count number of not exist in child table

Essentially what I'm trying to do is count the number of rows something doesn't exist in an audit/history table. I'd like the following query to return a count of one per detail. Currently it gives ...
0
votes
1answer
31 views

oracle associative array exists in case statement results in compilation failure

This is a hypothetical example. The actual problem involves updating various columns based on values, if they exist in the associative array. The following throws ORA-06550 and ORA-01747. Please help ...
0
votes
2answers
42 views

oracle sql query requirements

I have some data in oracle table abot 10,000 rows i want to genrate column which return 1 for ist row and 2 for second and so on 1 for 3rd and 2 for 4th and 1 for 5th and 2 for 6th and so on..Is there ...
0
votes
3answers
58 views

Creating a Procedure in PL/SQL to display all information from a table

As the title states, I am trying to create a procedure to display all information about employees(Employee_ID, NAME, EMAIL_ADDRESS, HIRE_DATE, and UPDATE_DATE). The catch is that if the employee_id ...
0
votes
1answer
84 views

Portable SQL : unique primary keys

Trying to develop something which should be portable between the bigger RDBMS'es. The issue is around generating and using auto-increment numbers as the primary key for a table. There are two topics ...
-1
votes
0answers
27 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
2answers
35 views

Join Supplier name and Supplier number using two queries

I have a two queries. select a.supplier_nbr from co_global_duns_xref_t a, co_global_duns_t b where a.global_duns_nbr=b.global_duns_nbr(+) and select ...
1
vote
3answers
79 views

Oracle Replace function

I need to replace the Table1's filed values from Table2's values while select query. Eg: Table1: Org Permission -------------------------------------- Company1 1,3,7 ...
0
votes
2answers
75 views

Query takes a long time

I have this query (in oracle) which takes a very long time (between 15-30secs) (query1): SELECT numcen FROM centros WHERE TO_NUMBER (centros.numcen) = TO_NUMBER (?) OR TO_NUMBER ...
1
vote
1answer
45 views

Nested inline query faster than Equal Join

Assume two tables: TRANSACTION Primary Key: REF_NO Columns: REF_NO, TXN_DATE, ITEM_CODE, QUANTITY ITEM Primary Key: ITEM_CODE Columns: ITEM_CODE, ITEM_DESC Query (1): SELECT T.REF_NO, ...
0
votes
1answer
45 views

ORA-00905: missing keyword Hibernate Query

I am trying to execute a Hibernate Query in JAVA. The query is as follows. query.append(" SELECT INV.skuNum as skuNum , ITM.regDes as des, ITM.dfltWhsUom as uom, (CASE WHEN ITM.billQty IS NULL THEN 0 ...
0
votes
0answers
17 views

PL/SQL How to forcively flush the undo log/tablespace of UNDOTBS1 [migrated]

I'm looking for a way to flush the undo logs so that the UNDOTBS1 doesn't give me an error saying that my tablespace isn't large enough. I tried using a commit, but without success, it still gives me ...
0
votes
1answer
30 views

display all records on outer join

I have one table where for a particular project, dates for 9 months are stored (given below) 01-01-13 50036 027490101 WO12PS00003 01-02-13 50036 027490101 WO12PS00003 01-03-13 ...
1
vote
2answers
90 views

Converting NOT IN to NOT EXISTS

Having a nightmare of a time understanding the usage of NOT EXISTS, primarily how to convert my NOT IN solution below so that I can actually understand how I achieved the results. Have several ...
0
votes
2answers
41 views

Making sure that the query returns null values too in the output

I am just curious on how to make sure that the query returns null values too along with other values. UPDATE: The following query is supposed to output a table with a location id, visit date visit ...
0
votes
1answer
50 views

Oracle Function In Package Fails as Part of Select

When I call my function from my package like the following, it works. It is a bit complex but there are a lot of conditional variable. resultval := TG_PKG_ENTITY_TOTAL.user_entity_total('0012345678', ...
0
votes
2answers
39 views

Oracle - Buffer two subquerys before joining they

I am trying to do something like this: SELECT * FROM (SUBQUERY A) A JOIN (SUBQUERY B) B ON A.FIELD = B.FIELD Individually, A runs really fast (about 5 seconds) and B runs in about 15 -20 ...
0
votes
3answers
44 views

11 Left Outer Join in a query and Oracle error

I have to create a sql query for a new report. The problem is that I have to do 11 Left Outer Join !!! Oh yes this is the bad part. When I execute the query Oracle generate this error : ORA-01652: ...
0
votes
1answer
26 views

Oracle flashback: Is there a way to get the REDO SQL queries?

Within the oracle database 11g the table FLASHBACK_TRANSACTION_QUERY provides the UNDO_SQL column which SQL reverses the modification done by a specific previously executed query. However, I need the ...
1
vote
2answers
39 views

Oracle ORDERED hint cost vs speed

So, a few weeks ago, I asked about Oracle execution plan cost vs speed in relation to the FIRST_ROWS(n) hint. I've run into a similar issue, but this time around the ORDERED hint. When I use the ...
0
votes
1answer
55 views

How to only select if 2 record are after another

I don't even don't how to ask this question but I'll show in example what I am trying to achieve. ID NAME ACTIVITY TIMESTAMP 1 .. book timestamp 1 .. eat timestamp ...
-1
votes
1answer
26 views

Oracle SQL Alter Table

I have two tables as below CREATE TABLE "CLIENT" ("ID" NUMBER(*,0) NOT NULL ENABLE, "FIRSTNAME" VARCHAR2(255 CHAR), "LASTNAME" VARCHAR2(255 CHAR), "TELEPHONE" VARCHAR2(255 CHAR), CONSTRAINT ...
0
votes
0answers
53 views

Execute empty nested sql script

I have a SQL*Plus script that contains several nested scipts, following this schema: @Script1; @Script2; @Script3; My problem is some of the nested script could be empty,they exist but are blank ...
0
votes
2answers
38 views

How to find regions where total of their sale exceeded 60%

I have a table interest_summary table with two columns: int_rate number, total_balance number example 10.25 50 10.50 100 10.75 240 11.00 20 My query should return in 2 columns or a string ...
0
votes
1answer
48 views

Populating values to null column based on value of some another column from another row

My requirement is pick HIST_START value where status="CANCELLED" AND table="OUTCOME_STATUS". Put this value in HIST_END column where table=("DOC_STATUS" OR "ENTRY_STATUS") AND HIST_END is NULL Eg. ...

1 2 3 4 5 213