One option you have for storing archive files other than a local disk is to copy them across to another destination after the archiving has completed. You could do this in a batch script, for example, and have it run via Windows task scheduler. You could perform the Blue Prism archive via the command line and then on completion, perform the copy of the files over to the new storage destination and then delete the files on the local machine. All this could be done via Windows Task Scheduler batch files.
Archiving works by copying session log data from the database tables based on how the session date is. It's possible that if you see sessions that are never archived then they may not be in a state that archiving considers them for inclusion, such as there is no enddatetime recorded for the session and therefore it could still be running (when in fact it may have terminated and not restarted).
Also consider how SQL Server manages it's space when data is removed. Depending on how you view the database table size, it can appear that after archiving and the sessions are removed from the database the disc space used does not appear to have reduced by much as you would have thought. This is because the space consumed by those sessions has not been given back to the operating system. So a table may appear to consume several gigabytes of space but in fact a lot of that space may be free and ready to be populated again by new data inserts. A good simple way of checking this is to run the Disk Usage by Top Tables report in SQL Server Management Studio : - In SSMS right click on Database, select Reports, Standard Reports, Disk Usage by Top Tables. The report will give you number of rows and kilobytes used per table, including unused.
------------------------------
John Cowell
Senior Software Support Analyst
Blue Prism
------------------------------
John Cowell
Senior Software Support Analyst
Blue Prism