Finding Archived Process Instance IDs for Specific Process Models

Is there is a way to query the Appian database to find archived process instance IDs for a specific process model?
I'm trying to run a portal report to get historic data but one of the models has a short archive time.

OriginalPostID-141895

OriginalPostID-141895

  Discussion posts and replies are publicly visible

Parents
  • If you have the process ID you can do the following. Assuming the process ID is 12345

    cd <APPIAN_HOME>/server/archived-process/

    find . -name "process_*12345.l"

    // Assuming this Linux command found a file called process_0002da10-ad80-8000-f92f-7f0000014e7a_20150206100023_12345.l

    cd <APPIAN_HOME>/server/_scripts/tools

    ./archiveprocess.sh unarchive -pid 12345 -file process_0002da10-ad80-8000-f92f-7f0000014e7a_20150206100023_12345.l &
Reply
  • If you have the process ID you can do the following. Assuming the process ID is 12345

    cd <APPIAN_HOME>/server/archived-process/

    find . -name "process_*12345.l"

    // Assuming this Linux command found a file called process_0002da10-ad80-8000-f92f-7f0000014e7a_20150206100023_12345.l

    cd <APPIAN_HOME>/server/_scripts/tools

    ./archiveprocess.sh unarchive -pid 12345 -file process_0002da10-ad80-8000-f92f-7f0000014e7a_20150206100023_12345.l &
Children
No Data