Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The distributed event form in caTissue / OS v1.1 is not compatible with that present in v2x onward. As a result, during upgrade, following error is encountered: CATISSUE_DISTRI_EVENT_PARAM: ORA-00942: table or view does not exist 

To fix the problem, follow below steps:

  1. Retrieve distributed event form ID

    select identifier from dyextn_containers where name = 'SpecimenDistributedEvent';
  2. Reset the existing form definition in database. Replace CONTAINER_ID occurring at 2 places in below SQL with the value obtained in step #1.

    update dyextn_containers set xml = '<container id="1"><id>CONTAINER_ID</id></container>' where identifier = CONTAINER_ID;
    commit;
  3. Restart OpenSpecimen


  • No labels