1
vote
1answer
42 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, ...
4
votes
1answer
65 views

top-N query doing too much work in spite of STOPKEY optimization

This is going to be long, so here's a quick summary to draw you in: my top-N query with COUNT STOPKEY and ORDER BY STOPKEY in its plan is still slow for no good reason. Now, the details. It starts ...
-1
votes
0answers
52 views

query with low cost taking too much time [closed]

why my query is taking too much time ( 30 - 60 minutes ) to execute if the cost of the query is very low ( 209 ) Here is the image of the Current Statement Tks! Isslerman
0
votes
3answers
88 views

Performance update in Aggregate query

I would like to improve the performance of the following in aggregate query. On T_Search_Detail with 30 million records, below Query takes 12 seconds to execute? can it be written better, suggestions ...
0
votes
3answers
65 views

Avoiding multiple calculation for the same values

Is there a way that I can improve the performance of this query by avoiding multiple calculation of some repeating values like regexp_replace(my_source_file, ...
-8
votes
1answer
38 views

optimizing duplicate recored scenario [closed]

I have a requirement: i have to store a record in db when user submits request. User can submit same request multiple times. When user submits request first time i have to insert record in db and ...
2
votes
2answers
83 views

absolutely NO functions surrounding a tstamp in a SQL? Hourly historical data query

I need to obtain for some specific hours data for a specific week day back to 10 weeks. The DB I work on is Oracle. I came up with the following condtions with the time stamp field: ...
0
votes
0answers
48 views

Oracle view logic or performance tuning on case expression

I have written a view logic to extract the data based on the requirement. I need the suggestion or solution to improve the performance of the view logic. MYTABLE: |SID | SREF | STYPE | SQID ...
-3
votes
3answers
64 views

What are the ways to reduce the time taken by a Select query? [closed]

I am creating an API in JSP for my oracle database. I have two tables containing 20k records each. I need to perform a natural join, the result will be shown in a JSP page in JSON format. My problem ...
2
votes
2answers
45 views

which one should i used of Union all and union when i want to eliminate the duplicate records?

As title. i have seen this, people all saying that we should consider union all first for the performance, my question is which one should i use when i want to eliminate duplicate records. i have ...
1
vote
3answers
91 views

Should I use exception instead count(*) in functions?

I am new to Oracle and I have two functions which will used with high frequency. And I wonder which is better between them. This one: FUNCTION GET_MY_MONEY (myType IN NUMBER) RETURN NUMBER AS ...
0
votes
1answer
23 views

Looking for data in a table through colums with categories/state values

Say we have a fruits that that is having a high number of reads but also inserts though almost not update nor delete. We have 2 columns that stores values that have a small number of options. Lets ...
0
votes
1answer
37 views

Performance issue in Oracle

The requirement here is to present user with Forecast details for particular PLANT or Part Number. The Forecast Details are coming from few source tables and UNIONed by one VIEW. A materialized view ...
0
votes
1answer
56 views

Oracle execution plan cost vs speed

When building and tuning a query in Oracle, speed is generally the main concern for the developer. However, in tuning a particular query, I recently tried the FIRST_ROWS and NO_CPU_COSTING hints and ...
-2
votes
0answers
54 views

ORACLE SQL QUERY w Multiple Joins

Does anybody see anything glaring wrong with this Oracle SQL Query? This query is timing out when running. If I remove (b.Approver2 and b.Approver2Date) along with the last join (JOIN ...
1
vote
2answers
66 views

Oracle “Equal” faster than “not equal”

I have a simple question: somebody told me that the query: select a1, a2, sum(b1) from myTable where a1 ='bla' and a2='blabla' and a3 ='aaa' is faster then select a1, a2, sum(b1) from myTable ...
3
votes
3answers
61 views

Actively tracking oracle query performance

Background: We have a database environment where views are calling views which are calling views... the logic has become complex and now changes to underlying views can have significant impact on the ...
0
votes
2answers
21 views

Select fields and then join OR join and then select fields?

lets say I need to join 3 tables (T1, T2, T3) and lets say the each one of those tables has 30 columns and millions of records. Would it be faster to get the relevant fields and then join the results ...
5
votes
2answers
131 views

Performance of regexp_replace vs translate in Oracle?

For simple things is it better to use the translate function on the premise that it is less CPU intensive or is regexp_replace the way to go? This question comes forth from How can I replace brackets ...
0
votes
2answers
50 views

Load data and Validate with best performance in Oracle [closed]

We have a scenario where we need to upload data (More than 1 Lakh records) and validate them against 4 master tables. Identify the invalid records and move it to a separate table. We have one main ...
1
vote
2answers
74 views

Query Performance while using Oracle aggregate function

Below is the query in which I am using an aggregate function. The where clause is simple with an index on corpId and incoming_date . If I simply fetch all rows/count the query takes lesser than a ...
2
votes
1answer
80 views

Does OO fit this?

I have this process where in one table we have a series of item movements that are to be applied to the other table with items & stocks. Basically, the item movements table is mapped by the ...
2
votes
3answers
208 views

INSERT into temporary table GTT very slow from PL/SQL

I have a query that performs fantastic when executed from SQL. It is a join between a table and a query. Both the tables are having close to 4 mn records. There are bitmap indexes on the doc table ...
0
votes
1answer
74 views

how to pin a table to oracle dbms_shared_pool in 11G

Can I pin a table to oracle dbms_shared_pool in 11G? I see I cannot do it in 10g. the table has 4 number columns and around 100K rows, it is extremely high used and read-only(which means we will not ...
0
votes
1answer
33 views

Join in Cursro query or two cursors, which is faster?

I need some suggestions for my cursor which is expected to run against millions of records. Here is my cursor query. CURSOR items_cursor IS -- Brings only records that need to be updated ...
0
votes
4answers
75 views

Query with sub-query performs terrible

I'm having a problem with the performance of the following query, I want to get some info about saleslines and per salesline I want to find out the last date is was received in stock: SELECT ...
1
vote
1answer
50 views

Analytic function performance costly

I have a table_A (C1,C2,C3,.....,Cn, datestamp) Note : Column datestamp is indexed QRY1 select * from (select max(datestamp) dates from table_A) t, table_A where a.datestamp = t.dates QRY2 ...
2
votes
1answer
55 views

which way is appropriate to check table existence

I want check a particular table existence in Oracle, which way is more general and appropriate, I have 2 ways listed below, the way 1 run fast if table existing, because it just run one sql Handle ...
0
votes
2answers
54 views

Deleting Large Number of Data From Oracle

Which is the best way to delete large records from a table ? I have requirement in which I need to delete some 30 Million records from a table on a weekly basis. Problem here is that, there is an UNDO ...
1
vote
1answer
147 views

oracle pl/sql loading large data into temp table

I have a use case where a large amount of data sometimes a million rows added to a temporary table (session global temp table) and the table to be joined to another table to produce ...
4
votes
5answers
109 views

Poor performance on Oracle where clause

I have the following Oracle table: create table my_table( start int, end int ); insert into my_table values(1, 3); insert into my_table values(5, 7); insert into my_table values(11, 200); ...
2
votes
1answer
167 views

Which is the most efficient way to bulk insert to a Oracle database?

As a part of my requirement in office, Im required to write an C# console application that pulls bulk data from an Oracle CRM ON Demand server and pushes it to a local Oracle DB. Now, after much ...
0
votes
1answer
51 views

query to update running balance without select query

My Query Here UPDATE TBLBANKTRANSACTION SET SU_CASHBALANCE = (SELECT SU_CASHBALANCE FROM TBLBANKTRANSACTION WHERE TBLBANKTRANSACTION.ID=1)-2000.0 Can we update the balance without ...
0
votes
1answer
70 views

Oracle Performance Issues

I'm new to Oracle. I've worked with Microsoft SQL Server for years, though. I was brought into a project that was already overdue and over budget, and I need to be "the Oracle expert." I've got a ...
3
votes
1answer
57 views

Oracle: function based index using dynamic values

I have one complex SQL queries. One of the simple part of the queries looks like: Query 1: SELECT * FROM table1 t1, table2 t2 WHERE t1.number = t2.number AND UPPER(t1.name) = ...
1
vote
1answer
136 views

When to use recursive CTE in Oracle [closed]

In Oracle, I've tried to run the same hierarchial queries in different ways : with CONNECT BY and recursive CTE. According to an execution plan CONNECT BY is preferable. Are there any cases, when ...
0
votes
0answers
15 views

How to determine number of statements in the cache

I'm using Oracle UCP as my data source in a Spring application. The pool appears to be working fine, but I'd like to do some load testing to see if I've set my maxStatements parameter to an ...
2
votes
1answer
47 views

Slow queries when putting files into “LIVE” environment

Here's the situation... We have a local development server at Location A where we build all our aspx pages. Our databases are located at Location A also. When testing our files on the development ...
2
votes
3answers
54 views

efficienct SQL join for a range on large table

table1 table2 id number start end indicator 11 4 1 5 N 22 6 ...
1
vote
3answers
336 views

How to join multiple select statements in SQL

I'm an engineer with no formal education in programming, but I oftentimes find myself writing code as part of my job and I've gotten OK at it. I would like to know how a query of this form could be ...
0
votes
1answer
107 views

why do they use DBMS_STATS.GATHER_TABLE_STATS ? [closed]

I found documents explaining that oracle uses these for performance tuning etc but didn't quite understand that what does it actually do. Can some one explain it to me in simple word with very basic ...
0
votes
2answers
71 views

Oracle query performance degrades when inserting many rows in a single transaction

In a single transaction I am inserting may rows into a table, before inserting the row I perform a query to see if there is already a row with the key I am about to insert. What I see is that the ...
2
votes
2answers
76 views

Which filter is better in performance?

I'm Working in cognos 10.1 now. I'd like to find the names which start with 'AB', 'CE', 'JA'. I'm concerned about the query's performance as the query subject (table) contains about 1,000,000+ ...
1
vote
1answer
141 views

How to efficiently JOIN HUGE tables using SQL OUTER JOIN

Oracle 10g 64 bit Red Hat Enterprise Linux 5 64bit I currently have access to a Normalized third party database. These have huge volumes of data and my requirement is to expose a Materialized VIEW by ...
3
votes
4answers
124 views

Simple Oracle UPDATE Statement unusually bad performance

every month I do a simple update statement on my oracle database. But, since monday it takes very long. The table grows every month by 5 percent. Now there are 8 million records stored. The ...
1
vote
1answer
33 views

Oracle - Another way for month query?

first... sorry for my english. I have a query like this: Select * From tableA Where ( TO_NUMBER(TO_CHAR(dateA(+),'SYYYY')) = 2013 AND TO_NUMBER(TO_CHAR(dateA(+),'MM')) = 02 ...
-6
votes
3answers
147 views

Java int is run out of 2 billions, how to do

I used int as PK in Java application, now it has reached the max int value (2 billions), even in DB it can store the number more than it. but java int is only able to hold around 2 billions. I am ...
-2
votes
2answers
71 views

Is there any better way to tune this query?

I have the below query and would like to know if there is any better way to tune it? MERGE INTO target_table TARGET USING (SELECT DISTINCT g1.column_name FROM test_gtt1 g1, test_gtt2 g2 WHERE ...
-1
votes
2answers
50 views

Oracle optimizer is not accepting index hint

When I run the merge query then index cannot read and query is running very slow please advise me. Index in stage_dim_accounts(rbc_code) Index in map_rbc_etl(free_code_9) MERGE INTO ...
0
votes
2answers
58 views

Efficient progressive sum

I have the following table: +----+-------+ | id | value | +----+-------+ | 1 | 10 | | 2 | 11 | | 3 | 12 | +----+-------+ I want to calculate a column on the fly to sum value of all the ...

1 2 3 4 5 11