DECLARE
directory_name_ CONSTANT all_directories.directory_name%TYPE := 'OUT_DIR';
file_ist_ Intface_File_Types := Intface_File_Types();
BEGIN
-- get file list
file_ist_ := Intface_Server_File_API.File_List(directory_name_);
FOR i IN 1..file_ist_.count LOOP
Dbms_Output.Put_Line(file_ist_(i).file_name);
END LOOP;
END;
top of page
Related Posts
See All[FndWindowRegistration("YVVDA_COMPANY_ADDR", "YvvdaCompanyAddr", FndWindowRegistrationFlags.HomePage)] [FndDynamicTabPage("frmCompanyAddr...
40
Example 1: SELECT DISTINCT LISTAGG(t.commission_receiver, ';') WITHIN GROUP (ORDER BY t.commission_receiver) FROM...
20
FUNCTION Strip_Ora_Error ( sqlerrm_ IN VARCHAR2, sqlcode_ IN NUMBER DEFAULT NULL, strip_ora_only_ IN BOOLEAN DEFAULT...
10
bottom of page
Comments