标签:
[oracle@danaly ~]$ sqlplus "/ as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on Wed Nov 30 14:41:53 2005
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
SQL> create tablespace eygle datafile ‘/dev/cciss/c0d0p11‘ size 10M;
Tablespace created.
SQL> create table eygle tablespace eygle as select * from dba_objects;
Table created.
SQL> select count(*) from eygle;
COUNT(*)
----------
50420
SQL> alter tablespace eygle offline;
Tablespace altered.
SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
标签:
原文地址:http://www.cnblogs.com/cure-t-x-y/p/4243867.html