Query Performance
Posted: Sat 23 Feb 2008 00:03
Hello!
I have a Firebird Database with 65000 Rows.
When I try to filter the data with
it takes 30 seconds when I do it for the first time.
A second Filter with another value like
takes less than 1 second.
Is it possible to improve the performance in the first case?
Thanks.
I have a Firebird Database with 65000 Rows.
When I try to filter the data with
Code: Select all
Query->Filter="ID like '%2007%'";
Query->Filtered=true;
A second Filter with another value like
Code: Select all
Query->Filter="ID like '%2008%'";
Query->Filtered=true;
Is it possible to improve the performance in the first case?
Thanks.