Topic Options
Rate This Topic
#58568 - 12/20/01 02:40 PM Question on AL Wait
Anonymous
Unregistered


I'm trying to fire one active link, then create a pause for 5 seconds, and have the second active link fire. Any ideas? Is there a SQL command that I can run as a "direct SQL" action in my active link?

ARS 4.5.2. SQL Server 7.

Top
#58569 - 01/29/02 03:01 AM Re: Question on AL Wait [Re: Anonymous]
Anonymous
Unregistered


a) Create a dumyy table
b) Implemt your active link to run direct sql to update this table
c) Implement a triger to observee the change on this table and pause for 5 secounds by using pl/sql or t./sql utility in Oracle/MS SQl or syb

Top
#58570 - 01/29/02 08:52 AM Re: Question on AL Wait [Re: Anonymous]
Matt Reinfeldt Offline
Old Hand
***

Registered: 06/12/01
Posts: 1419
Loc: Madison, WI
you could try writing a perl or shell script that would look something like this:
#!/usr/bin/perl
sleep(5);
return(1);

so, do a set fields using $PROCESS$ calling this script.... the script would 'sleep' for five seconds and then return the value '1' to your AL...

Enjoy!
_________________________
Matt Reinfeldt
I belong to the following Professional Networks:
http://www.naymz.com/search/matt/reinfeldt/1524717
http://www.linkedin.com/in/mreinfeldt

Top