READ_ONLY_OPEN_DELAYED determines when datafiles in read-only tablespaces are accessed.
true: The datafiles are accessed for the first time only when an attempt is made to read data stored within them.
false(default): The datafiles are accessed at database open time.
You can use this parameter to speed up some operations (primarily opening the database) for very large databases when substantial portions of the database are stored in read-only tablespaces.
Consider setting this parameter to true for such databases, especially if portions of the read-only data are stored on slow-access devices or hierarchical storage.
对于READ ONLY表空间不会在数据库OPEN时进行访问,而是OPEN后用时再访问
对于一些READ ONLY表空间可能数据文件存于slow access devices or hierarchical storage中,设置为true可以加快open速度
另外如果READ ONLY的数据文件不存在(如放在NFS未挂载等)不会影响数据库启动到open