Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
shmkmr90
Contributor III
Contributor III

system Monitor Failure due to 0kb .xml files created

Hi,

Sytemmonitor.qvw failed due to 0kb .xml files created in the below location. As per the below blog thread, 0kb .xml files are created when a task is disabled in the QMC. There were no tasks disabled to create these 0kb files, not sure what else could be the reason.

Please share your thoughts here.

C:\ProgramData\QlikTech\DistributionService\TaskResults

https://community.qlikview.com/thread/188878

Regards,

Shyam

3 Replies
marcus_sommer

Beside the reasons why there are 0 kb files it might be helpful to check the files per filesize() before loading and skipping then the wrong ones.

- Marcus

shmkmr90
Contributor III
Contributor III
Author

Thanks Marcus for your reply. I have scheduled this application in QMC to run every 1 hour. If i understood your point correctly, The challenge would be to check every hour before  the run.

Am i correct?

Regards,

Shyam

marcus_sommer

It needs to be included within the load-script for example with an additionally check within a filelist-loop with something:

...

if filesize('$(vFileName)') then

     ... your load-statement

end if

...

Here an example of the logic: Loops in the Script.

- Marcus