This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- description: find in IFS files | |
-- using ACS 1.1.9.2 this will prompt you for starting path and search term | |
-- forced uppercase, if you know the case remove the "upper()", it may run faster | |
with ifsobjs (path, type) as ( | |
select path_name, object_type | |
from table(qsys2.IFS_OBJECT_STATISTICS( | |
start_path_name => ?, -- use /path/to/start/in | |
subtree_directories => 'YES')) a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT Jr.Journal_Receiver_Library,Jr.Journal_Receiver_Name,Jr.Size | |
,Jr.Descriptive_Text,Jr.Journal_Library,Jr.Journal_Name | |
,Jr.Attach_Timestamp,Jr.Detach_Timestamp | |
FROM Qsys2.Journal_Receiver_Info Jr | |
WHERE NOT EXISTS (SELECT J.Journal_Name | |
FROM Qsys2.Journal_Info J | |
WHERE J.Journal_Library = Jr.Journal_Library | |
AND J.Journal_Name = Jr.Journal_Name) | |
; |
OlderNewer