create table file_details (file_id number(10), filename varchar2(50))
我在Windows机器上有1个文件夹,其路径为C:\New Folder
,其中有50个文本文件。
我想使用oracle table
将所有文件名插入PL/SQL
。
答案 0 :(得分:0)
您可以使用DBMS_BACKUP_RESTORE包或创建Java stored procedure that lists the contents of an operating system directory并从PL / SQL中调用