Search found 58 matches

by userXXX
Fri Dec 29, 2017 4:03 pm
Forum: General Discussion
Topic: VBScript: Start Task and wait for it
Replies: 1
Views: 6678

VBScript: Start Task and wait for it

Hello Oleg, can you please tell me, how to start a task and then wait until it ends in VBScript? I tried, but I don't know VBScript. It seems, that between starting a task and checking its status, I need to wait for a few seconds. But I'm not sure. My version for "Delay" makes the CPU busy...
by userXXX
Wed May 31, 2017 11:50 am
Forum: General Discussion
Topic: Start Task
Replies: 6
Views: 23303

Re: Start Task

The warning "Try to start the task again" means that specified task is already running now. No, the sub-task was definitely not running before: 07.PNG It was started by the main-task and the same main-task is trying to start it again immediately. You use "Required start" option....
by userXXX
Wed May 31, 2017 9:54 am
Forum: General Discussion
Topic: Start Task
Replies: 6
Views: 23303

Re: Start Task

Sub-task is ending: 04.PNG So far OK. But then, this happens: Main task continues: 05.PNG OK. But the sub-task is starting again without being asked to do so: 06.PNG That means, tasks are out of control and we are in a kind of trouble now. What do you think is going on? There's no reason like a loop...
by userXXX
Wed May 31, 2017 9:47 am
Forum: General Discussion
Topic: Start Task
Replies: 6
Views: 23303

Start Task

Hello,

in one of my tasks there's sometimes a weird behaviour when starting a sub-task:
01.PNG
01.PNG (13.92 KiB) Viewed 23303 times
02.PNG
02.PNG (13.23 KiB) Viewed 23303 times
Question is, why is it trying to start again?

Sub-task shows this log entries:
03.PNG
03.PNG (2.2 KiB) Viewed 23303 times
This is fine.

- to be continued in next entry -
by userXXX
Thu Feb 23, 2017 5:20 pm
Forum: General Discussion
Topic: Encoding of .tsk files
Replies: 1
Views: 8018

Encoding of .tsk files

Hello, my older task files on our file share are all encoded in "ANSI" (shown by notepad++). If I create new tasks now, they all get encoded in "UTF-8 without BOM". Using special german characters in task names and importing this data into out database, I'm now seeing wrong chara...
by userXXX
Thu Feb 23, 2017 4:56 pm
Forum: General Discussion
Topic: Issue with "Oracle Provider for OLE DB"
Replies: 2
Views: 9863

Re: Issue with "Oracle Provider for OLE DB"

The problem wasn't caused by the driver but by "/*+ parallel */ clauses" used to improve performance while filling tables. With this clauses we got an issue with blockings causing long wait times. After dropping this clauses performance is better now.
by userXXX
Thu Feb 16, 2017 11:27 am
Forum: General Discussion
Topic: Issue with "Oracle Provider for OLE DB"
Replies: 2
Views: 9863

Issue with "Oracle Provider for OLE DB"

Hello, we are using a Oracle 12c database, Robotask is running on a VM with Oracle client 12.xxx and Oracle Provider for OLE DB 12.xxx. A SQL with some CREATE and MERGE statesments takes 3-4min when starting from a local PC within Oracle SQL Developer and there are no issues with CPU ressources. Run...
by userXXX
Fri Dec 02, 2016 12:34 pm
Forum: General Discussion
Topic: FileMonitor
Replies: 8
Views: 28299

Re: FileMonitor

You could try to use a file counting loop around the other loop, like this: ;***************************** ;* RoboTask Task file ;* Do not edit in text editor! ;***************************** [Root] ActionAfterRun=INTEGER|0 Actions=FOLDER Automat=INTEGER|0 CatID=INTEGER|740980707 Comment=STRINGLIST C...
by userXXX
Thu Sep 01, 2016 11:54 am
Forum: General Discussion
Topic: "WAIT FOR FILE" => File doesn't exist.
Replies: 4
Views: 17026

Re: "WAIT FOR FILE" => File doesn't exist.

Thank you, Oleg.
by userXXX
Thu Sep 01, 2016 9:21 am
Forum: General Discussion
Topic: "WAIT FOR FILE" => File doesn't exist.
Replies: 4
Views: 17026

Re: "WAIT FOR FILE" => File doesn't exist.

Hello Oleg,

thank you.

I see, this is not the functionality I'm looking for.

My scenario is:
Task A has to wait until Task B has created a file (Task A knows path and name of the file). Task A cannot wait until Task B has finished, so it has to wait for the file.

Any idea?