ORA-01144:File size (string blocks) exceeds maximum of string blocks

ORA-01144:

File size (string blocks) exceeds maximum of string blocks
Cause: Specified file size is larger than maximum allowable size value.
Action: Specify a smaller size.


意思是说:单个数据文件的大小超过最大限制了:4M个数据块,如果每个数据块大小为8k,则单个数据文件的大小不能超过32G;

如果每个数据块大小为16k,则单个数据文件的大小不能超过64G。


如果需要的表空间大于32G/64G:请再为这个表空间增加一个数据文件。

alter tablespace tablespacename add datafile '/路径/文件名' size 大小;


解决方案:降低单个数据文件的大小,增加数据文件的数量。

你可能感兴趣的:(ORA错误处理)