在EXP导出的时候,RECORDLENGTH参数一般用来提高导出性能,此外这个参数还用来在32-bit 和 64-bit进行导入导出,
如果2个不同位数的平台这个参数设置的不一样可能会遇到EXP-00010错误。
这个参数的解释如下:
RECORDLENGTH.
The parameter RECORDLENGTH specifies the length, in bytes, of the file record. This parameter is necessary when you must transfer the export file to another operating system that uses a different default value. If you do not define this parameter, it defaults to your platform-dependent value for buffer size.
You can set RECORDLENGTH to any value equal to or greater than your system's buffer size (the highest value is 64 kb). Frequently used values for buffer size are: 512 bytes, 4096 (4 kb), 8192 (8 kb), 32768 (32 kb), 65535 (64 kb).
那么如何确定不同平台的这个参数默认值呢?
这个参数的默认值来自于文件/usr/include/stdio.h 中 参数BUFSIZ定义的值。
stdio.h文件是标准库文件,做C语言编程的人对这个文件都不会陌生。
在我的AIX 64位的平台下,这个参数的默认值是4K
如下:
#define FILENAME_MAX 255
#define BUFSIZ 4096
#define _P_tmpdir "/tmp/"
阅读(3451) | 评论(0) | 转发(0) |