本文介绍了如何在文件系统上创建目录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何通过PL/SQL在OS上创建物理目录?我查看了CREATE OR REPLACE DIRECTORY
命令,但没有这样做. UTL_FILE
似乎都没有.
How do you create a physical directory on the OS from within PL/SQL? I looked at the CREATE OR REPLACE DIRECTORY
command but that doesn't do it. Neither does UTL_FILE
appear to be capable.
推荐答案
最后,我确实找到了一个更简单的解决方案.使用
In the end I did find an easier solution. Use
select os_command.exec('mkdir /home/oracle/mydir') from dual;
或者简单地
x := os_command.exec('mkdir /home/oracle/mydir');
这篇关于如何在文件系统上创建目录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!