Oracle and large tables

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
halley73to
Posts: 29
Joined: Wed 07 Oct 2009 07:24

Oracle and large tables

Post by halley73to » Thu 31 Jan 2013 10:25

Hi,
i've a simple select on two tables: one with 600000 records and other with 7000000. Two tables don't have foreign key.

The query syntax is simple

select field1,
field2,
...,
fieldn
from table1,
table2
where table1.key = table2.key and
table1.field1 = parameter

It take 1 minute for extract 15 rows.

If i add another criteria like rownum <= 1000 it take 2 or 3 second for the same 15 rows.

What it can be?

AlexP
Devart Team
Posts: 5530
Joined: Tue 10 Aug 2010 11:35

Re: Oracle and large tables

Post by AlexP » Thu 31 Jan 2013 11:36

Hello,

Please test the query execution speed with the Oracle standard utility - SQL Plus - and if the results are different from the results of query execution in our components, contact us again.

Post Reply