ALTER TABLESPACE users OFFLINE NORMAL;----后面加NORMAL和不加NORMAL,有和区别?

解决方案 »

  1.   

    ALTER TABLESPACE users OFFLINE NORMAL|TEMPORARY|IMMEDIATE|FOR RECOVER
    NORMAL
     A tablespace can be taken offline normally if no error conditions exist for any of the datafiles of the tablespace. No datafile in the tablespace can be currently offline as the result of a write error. When OFFLINE NORMAL is specified, Oracle takes a checkpoint for all datafiles of the tablespace as it takes them offline. NORMAL is the default.
     
    TEMPORARY
     A tablespace can be taken offline temporarily, even if there are error conditions for one or more files of the tablespace. When OFFLINE TEMPORARY is specified, Oracle takes offline the datafiles that are not already offline, checkpointing them as it does so. If no files are offline, but you use the temporary option, media recovery is not required to bring the tablespace back online. However, if one or more files of the tablespace are offline because of write errors, and you take the tablespace offline temporarily, the tablespace requires recovery before you can bring it back online.
     
    IMMEDIATE
     A tablespace can be taken offline immediately, without Oracle taking a checkpoint on any of the datafiles. When you specify OFFLINE IMMEDIATE, media recovery for the tablespace is required before the tablespace can be brought online. You cannot take a tablespace offline immediately if the database is running in NOARCHIVELOG mode.
     
    FOR RECOVER
     Takes the database tablespaces in the recovery set offline for tablespace point-in-time recovery. For additional information, see Oracle9i User-Managed Backup and Recovery Guide.
     
      

  2.   

    1、offline normal,tablespace内所有的数据文件上触发checkpoint。 checkpoint_change#增加。
    online时,不需要media recovery,同时tablespace内所有的数据文件上再次触发checkpoint。 checkpoint_change#增加。 
    2、offline temporary:
    If no files are offline, but you use the temporary option, media recovery is not required to bring the tablespace back online.
    offline temporary只对那些online的数据文件进行checkpoint,而且在将tablespace online 的时候,那些进行过checkpoint的数据文件将不需要media recovery
    3、offline immediate,tablespace内所有的数据文件上不触发checkpoint。 checkpoint_change#不变。
    将tablespace online 时需要media recovery