喜欢就来多看看
11g partition practise
上一篇 /
下一篇 2007-11-05 00:00:00
/ 个人分类:11g&Grid
----------system------------
SQL> create table p_table (sid integer,serial# integer)
2 partition by system
3 (partition p1 ,
4 partition p2);
Table created.
SQL> insert into p_table partition(p1) values(1,1);
1 row created.
SQL> insert into p_table partition(p2) values(2,2);
1 row created.
SQL> select * from p_table partition(p1);
SID SERIAL#
---------- ----------
1 1
SQL> select * from p_table partition(p2);
SID SERIAL#
---------- ----------
2 2
SQL>
导入论坛
引用链接
收藏
分享给好友
推荐到圈子
管理
举报
TAG: