简单了解数据在Oracle文件中的存储
2010-02-13 目的: 1、 了解数据块转储 2、 简单认证数据在ORACLE文件的存储 测试环境: VM+Win2003+Oracle11g DB_BLOCK_SIZE 8k C:\Documents and Settings\Administrator>sqlplus /nolog SQL*Plus: Release 11.2.0.1.0 Production on 星期一 2月 13 21:03:38 2012 Copyright (c) 1982, 2010, Oracle. All rights reserved. SQL> conn / as sysdba 已连接。 SQL> create tablespace test1 datafile 'E:\app\Data\orcl\test1' size 20M ; 表空间已创建。 SQL> Create user firefox identified by qwe123 temporary tablespace temp default tablespace test1 quota unlimited on test1; 用户已创建。 SQL> select extent_management,allocation_type,segment_space_management from dba_tablespaces