PLSQL将数据写入指定文件及目录路径无效解决办法

--创建文件路径 create or replace directory test_file as 'D:\oracle_test'; --给用户授权路径读写权限 grant read,write on directory test_file to gwn; --在对应路径下新建要写入的文件test.sql--将数据写入文件中 declare v_file utl_file.file_type;-
相关文章
相关标签/搜索