1
Hello, the problem I’m facing is: I have a table with 120,353 records need to make a general correction on the table and how hard I try FDTable.Active := True
is in process endlessly... I’m using Firebird 2.5...
What You Do?
table index
CREATE INDEX IDX_AND_PRO_AUX ON ANDAMENTOS_PROCESSUAIS(NUMERO_PROCESSO_AUX);
CREATE INDEX IDX_PUBLICACAO ON ANDAMENTOS_PROCESSUAIS(CODIGO_PUBLICACAO);
Would you have any way to open the table without loading all records?
what do you mean 'I need to make a general correction'? It’s a Edit to one/several existing records? A Insert?
– Tiago Rodrigues
It is why I opened the table by the system is slow and I need to fix this and the general question is why knowing how to repair I will see if it is applicable to the other tables in the
dataModule
.– Edu Mendonça
But in your app you just want to open the table to show users a grid, or you want to browse the logs to make changes to the data by Fdtable (Fdtable.Edit, changes, Fdtable.Post)?
– Tiago Rodrigues
no use want... is the table itself... this happens when I open the system and at first I have to open 3 tables...
DataModuleGeral.tbAndamentosConsulta.Open;
 DataModuleGeral.tbPublicacoesConsulta.Open;
 DataModuleGeral.tbAudienciasConsulta.Open;
– Edu Mendonça
no use want... is the table itself... this happens when I open the system and at first I have to open 3 tables...
DataModuleGeral.tbAndamentosConsulta.Open;
 DataModuleGeral.tbPublicacoesConsulta.Open;
 DataModuleGeral.tbAudienciasConsulta.Open;
,It takes about 50 seconds to 2 minutes to open...– Edu Mendonça
You can use Fdquery’s to do virtually the same as Fdtable’s. The only difference is that instead of just saying the table name, you had to put the SQL Query there in Fdquery. But it turns out to be more flexible...
– Tiago Rodrigues
How’s the Mode property? Fdtable.FetchOptions.Mode
– Andrey
Table.FetchOptions.Mode := fmOnDemand
– Edu Mendonça
@If I was able to help with my answer, you can accept the answer by clicking on the left side of it. If you need any more help, let us know.
– Tmc