files are extracted using a sas code on a AIX environment data _null_; call symputx('timestamp',put(datetime(),B8601DT.)); run; PROC EXPORT DATA=CORE_BANK_OUTT&i OUTFILE="/sas/SASConfig/Lev1/Applications/SASComplianceSolutions/FCFBU1/reports/risk_rating_report/Finished/SAS_CORE_BANK_OUT&i._×tamp..txt" DBMS=dlm REPLACE; DELIMITER='|'; RUN; where &i represents the sequence of the file the need is to give permission to all files starting with the fixed prefix "CORE_BANK_OUT"
... View more