0
votes
1answer
119 views

Oracle SQL Check Exists Constraint

I have two simple tables in Oracle SQL Developer (Train and Driver) each with a common attribute (driverid). Essentially what i want to do is to not allow any updates on a particular driver tuple in ...
1
vote
4answers
503 views

Identify if at least one row with given condition exisits

Employee table has ID and NAME columns. Names can be repeated. I want to find out if there is at least one row with name like 'kaushik%'. So query should return true/false or 1/0. Is it possible to ...
0
votes
3answers
271 views

ORA-06550 when trying to check if a table exists

I'd like to check weather a table exists before creating one, in an Oracle database. Though, the following statement is not working throwing error ORA-06550 on line 7 (CREATE). DECLARE cnt NUMBER; ...
2
votes
3answers
108 views

Change IN to EXISTS

I have this 2 query : Query #1 SELECT A1.clrn_id ,A1.gpgroup ,A1.cl_id FROM p_dtl A1 WHERE A1.PYMT_DT = TO_DATE(:1 ,'YYYY-MM-DD') and A1.clrn_id in ( select clrn_id ...
0
votes
1answer
247 views

Oracle - using multiple exists to check record availability

I have a situation in my application for displaying the count of data which match different criterion. Since the performance of counting is degrading with respect to the growth of database, we decided ...
1
vote
4answers
9k views

Checking whether an item does not exist in another table

My tables are set up something like this: table name: process fields: name, id_string table name: value_seach fields: id_string, value I want to construct a select statement that will display all ...
2
votes
2answers
76 views

Will the following two queries give the same output consistently?

We want to find the deptno of those departments having employees who can do some work done by employee in depertment 20. SELECT deptno FROM dept WHERE EXISTS(SELECT * FROM emp x ...
0
votes
3answers
77 views

Distinct Users Information and Limited by records count query

I have two tables: User_Id and Shopping tables: Shopping Table (10000 records) ---------------------------- User_Id | Purchased_Items_Id 1 | 1 1 | 2 2 | 4 2 | 6 .... User_Id ...
0
votes
4answers
1k views

Check if a table exists in an oracle sql database with c#

this code: SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='xxx' The above code throws an exception: ORA-00900: invalid SQL statement What do I wrong? The above code worked long ...
0
votes
1answer
83 views

Selecting column from an exists statement

This is a follow-up to my previous question: Optimisation of an oracle query I am now using the query as follows select t1.column1, t2.column2 from table1@dev t1 where exists ( ...
1
vote
1answer
419 views

How to make a SUM with conditions?

I need to create an SQL query for the calculation of hours of employees who work for a specific customer (n°108538). We differentiate two types of counting: those who worked the whole week (37h50) and ...
2
votes
5answers
13k views

Oracle sql return true if exists question

How do I check if a particular element exists in a table - how can I return true or false? I have a table that has user_id user_password user_secretQ Verbally, I want to do this: If a ...
4
votes
2answers
790 views

Oracle EXISTS query is not working as expected - DB Link bug?

I'm completely baffled by the results of this query: select count(*) from my_tab mt where mt.stat = '2473' and mt.name= 'Tom' and exists (select * from company_users@colink.world cu, ...
5
votes
4answers
8k views

Fast way to determine if an field exist in a ORACLE table

I am looking for a fast sql sentence for determine when a field exist or not in a table . actually i am using this sentence Select 1 from dual where exists (select 1 from ...
1
vote
4answers
5k views

Oracle: Check if rows exist in other table

I've got a query joining several tables and returning quite a few columns. An indexed column of another table references the PK of one of these joined tables. Now I would like to add another column ...
3
votes
2answers
2k views

Oracle JOIN USING + Subquery : ora-00904 string: invalid identifier

i m having a little syntax problem in my query (simplified) : select * from table1 t1 inner join table2 t2 using (pk1) inner join table3 t3 using (pk2) where not exists (select1 from table4 t4 where ...
2
votes
2answers
6k views

Checking if a collection element exists in Oracle

I create a simple type: create or replace TYPE SIMPLE_TYPE AS OBJECT (ID NUMBER(38), NAME VARCHAR2(20)); Simple test: DECLARE TYPE ObjectList IS TABLE OF SIMPLE_TYPE; tmp SIMPLE_TYPE := ...
2
votes
3answers
385 views

Oracle performance and memory

I have two queries, and I want to understand which is better in terms of performance and memory. I also welcome other alternatives for these two. Query 1: SELECT DISTINCT a.no, a.id1 , ...
0
votes
4answers
5k views

Oracle checking existence before deletion in a trigger

I have analyzed a hibernate generated oracle database and discovered that a delete of a row from a single table will spawn the firing of 1200+ triggers in order to delete the related rows in child ...