Subject | Re: [firebird-support] Re: calling an sp indirectly |
---|---|
Author | Dimitry Sibiryakov |
Post date | 2006-01-10T08:16:56Z |
On 5 Jan 2006 at 20:39, Marcelo wrote:
using of isql. Try to find it somewhere.
A little trick: you can select your sps names making a script from
them and then execute it immediatelly. Something like this:
SET HEADING OFF;
OUT tmp.sql;
select 'EXECUTE PROCEDURE '||proc_name||';' from your_table;
OUT;
INPUT tmp.sql;
COMMIT;
--
SY, Dimitry Sibiryakov.
>> you could do it on the client side.At Firebird Conference Paul Reeves gave a nice talk about advanced
>
>I want to avoid this approach completely, as Oracle WF does, the only
>client app that I would allow is isql (with an sp argument) attached
>to cron.
using of isql. Try to find it somewhere.
A little trick: you can select your sps names making a script from
them and then execute it immediatelly. Something like this:
SET HEADING OFF;
OUT tmp.sql;
select 'EXECUTE PROCEDURE '||proc_name||';' from your_table;
OUT;
INPUT tmp.sql;
COMMIT;
--
SY, Dimitry Sibiryakov.