ORA-19526: only one location allowed for parameter string

文档解释

ORA-19526: only one location allowed for parameter string

Cause: A list of default locations was provided in an Oracle-managed files parameter.

Action: Edit the parameter to include a single location.

ORA-19526表示参数字符串中只允许一个位置。官方文档描述该错误:ORA-19526 在参数字符串中只允许一个位置。

此错误可能发生在以下行动中:

1. 当导出对象查询时,当尝试在特定目录位置指定不止一个时,此错误将显示:

expdp system/oracle directory=path1 directory=path2

2. 调用UTL_FILE时,当参数文件路径参数指定不止一个时,此错误也可能会出现:

DECLARE

v_file UTL_FILE.FILE_TYPE;

BEGIN

v_file := UTL_FILE.FOPEN(‘/home/oracle/example_files’, ‘sample_file.txt’, ‘rf’, 32768, ‘/home/test/test_files’);

END;

一般处理方法及步骤

1. 当导出对象时,只能指定单个目录:

expdp system/oracle directory=path1

2. 调用UTL_FILE时,只能提供一个参数路径,例如:

DECLARE

v_file UTL_FILE.FILE_TYPE;

BEGIN

v_file := UTL_FILE.FOPEN(‘/home/oracle/example_files’, ‘sample_file.txt’, ‘rf’, 32768);

END;

你可能感兴趣的