Attached to this article is the "qtool_script.txt"
This script should allow the files to be reinserted in smaller chunks.
===============SCRIPT====================
@echo off
e:
cd "\Program Files (x86)\Nimsoft\hub\q"
qtool -f test.sds -s | find "count:" > DoCntLog.txt
SET /P VALUE_FROM_FILE= < DoCntLog.txt
for /f "tokens=2" %%G IN ("%VALUE_FROM_FILE%") DO echo %%G >cnt2.txt
SET /P var_Cnt= < cnt2.txt
echo Line Count: %var_Cnt%
for /l %%x in (1, 10000, %var_Cnt%) do (
echo %%x
qtool -f test.sds -R 10000 -p -x
)
qtool -f test.sds -R 10000 -p -x
qtool -f test.sds -t test2.sds
===============SCRIPT====================
• Rename the script to .bat and edit the .sds file names that you find in the script to match what your large filename (nameofqueuefile.sds)
• For understanding what the script is doing refer to the
Help doc.