Community forum

Please note that VisualCron support is not actively monitoring this community forum. Please use our contact page for contacting the VisualCron support directly.


Cron2250
2015-01-17T23:52:19Z
How do I work with the results of a SQL query or stored procedure? For example, what kinds of result-set formatting is supported so that I can get one or more values back and use those values in a later step? One specific thing I'm looking to do is a job that calls a stored procedure in a loop, with the condition of the loop being a value returned from the stored procedure (i.e. the stored procedure returns X, call it again if X is greater than Y (up to some limit to make sure it doesn't get stuck in an endless loop), but if X is less than Y, exit the job as "successful"). This is a simple example that only needs to return one variable, but what if I needed to return more than one? If this is discussed in the documentation, I couldn't find it, but please point me there if it is. A few examples of this kind of job would be nice, too.
Sponsor
Forum information
thomas
2015-01-19T10:07:30Z
Hi

I suggest you take a quick look at the video tutorials first (under the support menu). Generally speaking I would say that in you case, it sounds like you should do all the work in a procedure. Create the loop (if you cannot solve it set-based) in t-sql , and call the procedure once.

Anyways, I created a simple example in a word document you can look at if you wish

Thomas
File Attachment(s):
proc.doc (285kb) downloaded 181 time(s).
Cron2250
2015-01-19T22:06:55Z
Very useful information. Thank you!
Scroll to Top