Installation guide

Removing Client queues from Job Manager
(Topic number: 11640)
12.
IMPAX 6.5.3 no longer supports cached Clientsonly cacheless and standalone Clients. You must
therefore remove previous Client queues, which are now obsolete, from the Job Manager.
To remove Client queues from Job Manager
1. Retrieve the AE_REF of each cached 5.2 or 5.3 Client station. In CLUI, type
select ae_ref from map_ae where ae_title = 'DISPLAY_STATION_AE'
2. Generate a list of cache volumes for that AE. Type
select * from osr_volume where volume_type = 'C' and ae_ref = ae_ref_from_step_1
3. To check if any images exist in those caches, type
select count(*) from osr_location where volume_ref in (list_of_volume_refs_from_step_2)
4. If the count in step 3 is greater than 0, to check that those images exist elsewhere in the system,
type
select location_ref from osr_location ol1 where volume_ref in
(list_of_volume_refs_from_step_2)
To check that the images do not exist elsewhere in the system, type
select location_ref from osr_location ol2 where ol1.object_ref = ol2.object_ref and
ol2.volume_ref not in (list_of_volume_refs_from_step_2)
5. If images exist elsewhere in the system, delete them from this cache. Type
delete from osr_location where volume_ref in (list_of_volume_refs_from_step_2)
If images appear that do not exist elsewhere in the system, stop this process and determine
whether these images should exist in another cache.
6. Repeat the query in step 3 and once it returns zero, delete the caches. Type
cache remove volume_ref
7. Delete the services running on this AE. Type
go service
query
delete service_refs_for_AE_title
AS300 Upgrade Guide—IMPAX 5.2 or 5.3 to IMPAX 6.5.3 72
Agfa Company Confidential—Subject to Non-Disclosure Obligation