McGruff753
MIS
Just took over a new site and the activity log has been getting flooded with the following errors:
07182005 14:44:48 CUSTINFO Undefined resource referenced Resource TK OUT GRP Value 0 SpecParm 206 SpecParm 14 33 TRUNK trunk_avail 136
07182005 14:44:56 CUSTINFO Undefined resource referenced Resource TK OUT GRP Value 0 SpecParm 206 SpecParm 14 33 TRUNK trunk_avail 136
07182005 14:45:14 CUSTINFO Undefined resource referenced Resource TK OUT GRP Value 0 SpecParm 206 SpecParm 5 33 TRUNK trunk_avail 136
Went onto Aspect's eServices and found this:
12112000 07:28:23 CUSTINFO Undefined resource referenced Resource TKOUT GRP Value SpecParm 207 SpecParm 1 33 TRUNK trunk_avail 100
This is a common problem and the fix is to modify the trunk database record. Usually occurs when a trunk group is deleted by the sys admin.
The following query can locate the trunks in question. Before running the first query you may want to do a count(*) first, because when you see these errors there usually are a lot of them.
select trknum, card_num, direct, in_grp_num, out_grp_num from trunk where direct = 'B' and (in_grp_num = 0 or out_grp_num = 0) order by card_num, trk_num;
Any trunks returned by this query may be a problem. If you happen to get zeros for both and there is no trunk group 0 defined, I think it would stand to reason that no calls will be processed on those trunks.
The following query will show all the trunk groups:
select grp_num from trunkgrp;
Finally, before running the first query you may want to do a count(*), first, because when you see these errors there usually are a lot of them.
Queries provided by jmcgee.
Okay, so the step by step process is a litle Greek to me. Anyone experienced this or can make sense of the directions to repair the issue? Is this a Unix thing? If so, then I guess I have to put it back in Aspect's hands cause I don't have the access to do this then. Thanks.
07182005 14:44:48 CUSTINFO Undefined resource referenced Resource TK OUT GRP Value 0 SpecParm 206 SpecParm 14 33 TRUNK trunk_avail 136
07182005 14:44:56 CUSTINFO Undefined resource referenced Resource TK OUT GRP Value 0 SpecParm 206 SpecParm 14 33 TRUNK trunk_avail 136
07182005 14:45:14 CUSTINFO Undefined resource referenced Resource TK OUT GRP Value 0 SpecParm 206 SpecParm 5 33 TRUNK trunk_avail 136
Went onto Aspect's eServices and found this:
12112000 07:28:23 CUSTINFO Undefined resource referenced Resource TKOUT GRP Value SpecParm 207 SpecParm 1 33 TRUNK trunk_avail 100
This is a common problem and the fix is to modify the trunk database record. Usually occurs when a trunk group is deleted by the sys admin.
The following query can locate the trunks in question. Before running the first query you may want to do a count(*) first, because when you see these errors there usually are a lot of them.
select trknum, card_num, direct, in_grp_num, out_grp_num from trunk where direct = 'B' and (in_grp_num = 0 or out_grp_num = 0) order by card_num, trk_num;
Any trunks returned by this query may be a problem. If you happen to get zeros for both and there is no trunk group 0 defined, I think it would stand to reason that no calls will be processed on those trunks.
The following query will show all the trunk groups:
select grp_num from trunkgrp;
Finally, before running the first query you may want to do a count(*), first, because when you see these errors there usually are a lot of them.
Queries provided by jmcgee.
Okay, so the step by step process is a litle Greek to me. Anyone experienced this or can make sense of the directions to repair the issue? Is this a Unix thing? If so, then I guess I have to put it back in Aspect's hands cause I don't have the access to do this then. Thanks.