ORA-00300: illegal redo log block size string specified – exceeds limit of string
Cause: The specified block size of the redo log is greater than the maximum block size for the operating system.
Action: Create the redo log on a device with a smaller block size
错误ORA-00300: illegal redo log block size string specified – exceeds limit of string 意为:指定的REDO日志文件块大小超过了限制,用户无法使用。
官方解释:
ORA-00300的详细信息是:illegal redo log block size string specified – exceeds limit of string(指定的REDO日志块大小超过了限制,用户无法使用)。当您尝试设置实例参数REDO_LOG_BLOCK_SIZE时,以及在修改该参数值时将发生此错误。
通常ORA-00300错误发生在多用户ORACLE系统上,当用户尝试通过使用ALTER SYSTEM语句来更改REDO_LOG_BLOCK_SIZE参数时。该参数限制为一个具体值,如果超过了该值,将会出现ORA-300错误。
1.确定系统的可管理的最大文件块大小。
2.确定参数REDO_LOG_BLOCK_SIZE的有效值。
3.使用ALTER SYSTEM语句更改REDO_LOG_BLOCK_SIZE参数的值,不超过第1步计算的最大文件块大小。
4.此时,应该可以避免出现ORA-300错误。