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

Popular posts from this blog

c++ - What's the differece between of link to a dynamic file and as a input object? -

javascript - Feed FileReader from server side files -

Android Unit Testing / Mockito: android.location.Location not mocked -