Hi, if i refactor a code block in a pacahte to extract it as procdures all works fine but the 'IS' is missing :
Karl
Ps.: Refactoring is a great feature!
Code:
-- Refactored procedure Cleanup_en_gb
procedure Cleanup_en_gb
begin
DELETE Textresource Tr
WHERE (Tr.Key, Tr.Locale, Tr.Category) NOT IN
(SELECT Itr.Key,
Cn_En_Gb,
Itr.Category
FROM Imp_Textresource Itr)
AND Tr.Locale = Cn_En_Gb;
Eventlogmgr.Logappinfo(0,
SQL%ROWCOUNT || ' ' || Cn_En_Gb ||
' resources cleaned up',
'Textresource_Util',
'Import');
end Cleanup_en_gb;
Ps.: Refactoring is a great feature!