Since updating to patch 6, I started seeing the following message in the import:
===========================================================
2014-11-18 18:46:02 (+0:00:00.634) INFO: Begin applying migration version 2, direction: up
2014-11-18 18:46:02 (+0:00:00.141) ERROR: NativeException: com.ibm.db2.jcc.am.SqlSyntaxErrorException: No authorized routine named “FN_EXTRACTFIELD1M” of type “FUNCTION” having compatible arguments was found… SQLCODE=-440, SQLSTATE=42884, DRIVER=4.14.111: create or replace view dss.computer_groups as
select O.*,
case
when length(Fields) <= 1048576
then dss.fn_ExtractField1M( ‘GroupSpecificationXML’, 0, O.Fields)
when length(Fields) <= 134217728
then dss.fn_ExtractField128M(‘GroupSpecificationXML’, 0, O.Fields)
– field is huge, DB2 needs to allocate a ton of memory
else dbo.fn_ExtractField( ‘GroupSpecificationXML’, 0, O.Fields)
end as GroupSpecificationXML,
case
when length(Fields) <= 1048576
then dss.fn_ExtractField1M( ‘EvaluateMembershipOnClient’, 0, O.Fields)
when length(Fields) <= 134217728
then dss.fn_ExtractField128M(‘EvaluateMembershipOnClient’, 0, O.Fields)
– field is huge, DB2 needs to allocate a ton of memory
else dbo.fn_ExtractField( ‘EvaluateMembershipOnClient’, 0, O.Fields)
end as EvaluateMembershipOnClient
from dss.objects O
where FixletType = ‘ComputerGroup’
2014-11-18 18:46:02 (+0:00:00.011) INFO: Initialize datasource Data Source: Failed
===========================================================
Anyone else see this? Any ideas?
Thanks