大话人生
IT博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
299 随笔 :: 0 文章 :: 73 评论 :: 0 Trackbacks
<
2013年12月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(14)
给我留言
查看公开留言
查看私人留言
随笔分类
(274)
Selenium Test(11)
(rss)
其他(28)
(rss)
单元测试Nunit(3)
(rss)
安全性测试(14)
(rss)
开发(27)
(rss)
性能测试(47)
(rss)
手机测试(1)
(rss)
操作系统(4)
(rss)
数据库(34)
(rss)
测试团队管理(4)
(rss)
测试基础(65)
(rss)
网络(5)
(rss)
自动化测试(6)
(rss)
软件工程(3)
(rss)
配置管理(22)
(rss)
随笔档案
(299)
2022年10月 (17)
2016年2月 (1)
2016年1月 (2)
2015年12月 (4)
2015年11月 (1)
2015年10月 (2)
2015年9月 (1)
2015年8月 (1)
2015年7月 (2)
2015年6月 (1)
2014年11月 (7)
2014年9月 (3)
2014年8月 (1)
2014年7月 (2)
2014年6月 (3)
2014年3月 (2)
2014年1月 (2)
2013年12月 (8)
2013年11月 (4)
2013年8月 (5)
2013年7月 (10)
2013年6月 (1)
2013年3月 (1)
2013年1月 (1)
2012年12月 (1)
2012年11月 (2)
2012年7月 (1)
2012年3月 (1)
2012年1月 (3)
2011年11月 (1)
2011年10月 (1)
2011年9月 (1)
2011年8月 (1)
2011年6月 (2)
2011年5月 (4)
2011年4月 (4)
2011年3月 (5)
2011年2月 (5)
2010年11月 (4)
2010年9月 (1)
2010年7月 (2)
2010年5月 (2)
2010年4月 (1)
2010年3月 (1)
2010年1月 (1)
2009年11月 (4)
2009年10月 (9)
2009年9月 (7)
2009年8月 (9)
2009年7月 (6)
2009年6月 (4)
2009年3月 (14)
2009年2月 (5)
2009年1月 (1)
2008年12月 (11)
2008年11月 (13)
2008年10月 (5)
2008年9月 (1)
2008年8月 (5)
2008年7月 (11)
2008年6月 (6)
2008年5月 (9)
2008年4月 (14)
2008年3月 (8)
2008年2月 (7)
2008年1月 (1)
2007年10月 (1)
2007年9月 (3)
2007年8月 (2)
2007年7月 (10)
2007年6月 (7)
http://blog.csdn.net/zeeslo/
http://blog.csdn.net/chenshaoying/
(rss)
http://blog.csdn.net/Testing_is_believing
(rss)
http://www.51testing.com/?676
taotaoma的blog
http://www.cnblogs.com/suiqirui19872005/archive/2007/10/19/930876.html
(rss)
http://www.cnblogs.com/suiqirui19872005/archive/2007/10/19/930876.html
rickyqiu-邱鹏
http://mayingbao.cnblogs.com/
http://www.cnblogs.com/jackei/archive/2006/11/11/557972.html
搜索
最新评论
1. re: 使用svn——项目的目录布局
谢谢 -!
--77
2. re: Skype打不开了,一点打开就显示“skype.exe-应用程序错误”
评论内容较长,点击标题查看
--shuijing_t
3. re: Skype打不开了,一点打开就显示“skype.exe-应用程序错误”
Skype打不开了,一点打开就显示“skype.exe-应用程序错误”
--678
4. re: Selenium使用介绍
评论内容较长,点击标题查看
--buy resumes
5. re: Selenium使用介绍
评论内容较长,点击标题查看
--link
阅读排行榜
1. Oracle imp 关于fromuser 和 touser的用法(9542)
2. Failed to access IIS metabase解决(9126)
3. System.InvalidOperationException: Attempt to load Oracle client libraries threw BadImageFormatException. This problem will occur when running in 64 bit mode with the 32 bit Oracle client components installed.(7770)
4. 等价类划分法实例之三角形用例设计(6164)
5. Burp说明(6160)
评论排行榜
1. Selenium使用介绍(25)
2. (原创)在clochase公司之测试有感(13)
3. 关于Loadrunner的license问题(10)
4. (转)如何批处理自动安装winxp系统补丁? (7)
5. windows上安装apache2.0.59+SVN+自动邮件通知(完整版)(6)
oracle 表空间管理常用语句
查看表空间
select * from dba_tablespaces;
创建表空间
简单创建: create tablespace userdb datafile 'd:\datafile.dbf' size 200M;
复杂创建:create tablespace userdb datafile 'd:\datafile.dbf' size 200M autoextend on next 20M maxsize unlimited
extent management local
segment space management auto;
大文件表空间:create bigfile tablespace userdb datafile 'd:\datafile.dbf' size 200M autoextend on next 20M maxsize unlimited;
删除表空间
删除表空间:drop tablespace userdb including contents ;
同时删除文件:drop tablespace userdb including contents and datafiles;
扩展表空间
修改文件大小:alter database datafile 'd:\fatafile.dbf' resize 300M;
添加数据文件:alter dataspace userdb add datafile 'd:\datafile2.dbf' size ...;
将表空间的数据文件设成自动扩展:alter database datafile 'd:\datafile2.dbf' autoextend on next 5M maxsize unlimited;
表空间重命名
alter tablespace userdb rename to userdb2;
使表空间只读
alter tablespace userdb read only;
使表空间离线/在线
alter tablespace userdb online/offline;
posted on 2011-02-11 17:05
大话人生
阅读(682)
评论(0)
编辑
收藏
引用
所属分类:
数据库
只有注册用户
登录
后才能发表评论。
Powered by:
IT博客
Copyright © 大话人生