Heim > Datenbank > MySQL-Tutorial > Hauptteil

Oracle utl_file_dir参数详解

WBOY
Freigeben: 2016-06-07 17:06:51
Original
1274 Leute haben es durchsucht

1 UTL_FILE_DIR参数定义 UTL_FILE_DIR是Oracle中的一个“静态参数”,可以设置一个或多个路径。用于在PL/SQL中进行文件I/O操作(

1 UTL_FILE_DIR参数定义

UTL_FILE_DIR是Oracle中的一个“静态参数”,,可以设置一个或多个路径。用于在PL/SQL中进行文件I/O操作(可以用utl_file包)时指定路径。UTL_FILE_DIR是Oracle中的一个“静态参数”,可以设置一个或多个路径。用于在PL/SQL中进行文件I/O操作(可以用utl_file包)时限定路径,utl_file包只能在指定路径下创建,读取文件。utl_file_dir为空时,则不限定路径。

2 UTL_FILE包简介

在PL/SQL中没有直接的文件I/O接口,一般在调试程序时可以使用Oracle自带的DBMS_OUTPUT包的put_line函数(即向屏幕进行I/O 操作),但是不能对磁盘文件进行I/O操作。文件I/O对于数据库的开发来说显得很重要,比如如果数据库中的一部分数据来自于磁盘文件,那么就需要使用I/O接口把数据导入到数据库中来。

3 实验

3.1 设置utl_file_dir参数

SQL> alter system set utl_file_dir='/u01/app/oracle' scope=spfile;

System altered.

SQL> startup force;                 

SQL> show parameter utl_file

NAME                                 TYPE       VALUE

-------------------------------- ----------- ------------------------------

utl_file_dir                         string      /u01/app/oracle

 

设置多个路径:

SQL> alter system set utl_file_dir='/u01/app/oracle', '/oradata' scope=spfile;

System altered.

SQL> startup force

NAME                                 TYPE      VALUE

-------------------------------- ----------- ------------------------------

utl_file_dir                         string      /u01/app/oracle, /oradata

3.2 utl_file的IO操作

SQL> declare

  fn utl_file.file_type;

begin

  fn := utl_file.fopen('/u01/app/oracle', 'utl_test.txt', 'W');

  utl_file.fclose(fn);

end;

/

PL/SQL procedure successfully completed.

 

不是utl_file_dir所指定的路径时,使用fopen方法时就会报错:

SQL> declare  

  fn utl_file.file_type;

begin

  fn := utl_file.fopen('/u01/app/oracle/admin', 'utl_test.txt', 'W');

  utl_file.fclose(fn);

end;

/

declare

*

ERROR at line 1:

ORA-29280: invalid directory path

ORA-06512: at "SYS.UTL_FILE", line 33

ORA-06512: at "SYS.UTL_FILE", line 436

ORA-06512: at line 4

 

为了避免上面的错误,可以使用路径对象。

SQL> create directory dir_test as '/oradata';

Directory created.

SQL> declare

  fn utl_file.file_type;

begin

  fn := utl_file.fopen('DIR_TEST', 'test.txt', 'W');

  utl_file.fclose(fn);

end;

linux

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage