Is it possible to run Firebird 2.5 query in parallel mode? -
colleagues, have query looks like
for select first 100 contracts.doc table_1 :contr begin insert tmp_port ( dt, ....) select :in$dt dt, ... p_procedure (0, :contr , :in$dt); end
the problem proprietary procedure p_procedure
works slow. can't optimize p_procedure
.
in oracle, remember, can increase speed of execution using parallel
.
is there similar (like hint 'parallel') in firebird 2.5? there other approaches increase execution speed? thank advice.
Comments
Post a Comment