1、查看已有表空间,找到回退表空间 SELECT * FROM DBA_TABLESPACES WHERE CONTENTS='UNDO' 2、创建新的回退表空间 create undo tablespace UNDO_RBS1 datafile 'E:\oracle\product\10.2.0\ ...
分类:
数据库 时间:
2016-07-01 13:28:43
阅读次数:
188
一. 表空间相关命令 创建数据表空间 create SMALLFILE tablespace dataSpace datafile 'E:\oracle\product\10.2.0\oradata\orcl\dataSpace.dbf' SIZE 50M autoextend on next 10 ...
分类:
数据库 时间:
2016-06-30 16:18:54
阅读次数:
214
Using Android Phone to recover SD card formatted with DD command under linux 1. Formatted a sd card with dd command under linux 2.insert the sd card i ...
分类:
移动开发 时间:
2016-06-29 23:39:33
阅读次数:
207
新的一周>.< 6.27 leetcode 99 Recover Binary Search Tree 一颗二叉搜索树有两个节点的位置不对,让把这两个位置换回来 中序遍历的二叉搜索树是升序排列的,所以在中序遍历的时候,记录下这两个节点就好 1 class Solution{ 2 public: 3 ...
分类:
其他好文 时间:
2016-06-27 15:25:49
阅读次数:
122
Two elements of a binary search tree (BST) are swapped by mistake. Recover the tree without changing its structure. Note:A solution using O(n) space i ...
分类:
其他好文 时间:
2016-06-26 22:33:43
阅读次数:
140
创建表空间 create tablespace bdccslogging datafile 'D:\oracle\product\10.2.0\oradata\bdccs\bdccs.dbf'size 50mautoextend on next 50m maxsize 20480mextent ma ...
分类:
数据库 时间:
2016-06-24 14:50:43
阅读次数:
179
1.创建表空间 create tablespace example_tablespace datafile 'e:\****.dbf' size 10m reuse autoextend on next 1m maxsize unlimited; 2.创建用户,指定表空间,临时表空间 create ...
分类:
数据库 时间:
2016-06-22 10:39:55
阅读次数:
190
SQL>connsystem/oracle
SQL>CREATETABLESPACEtbs_peenboo
DATAFILE‘/oradata/tbs_peenboo_01.dbf‘size10m
EXTENTMANAGEMENTLOCALAUTOALLOCATE
SEGMENTSPACEMANAGEMENTAUTO;
SQL>createtablet_newtab(c1date)tablespacetbs_peenboo;
SQL>selectextent_id,bytesfrom..
分类:
其他好文 时间:
2016-06-17 19:48:46
阅读次数:
163
案例-指令参考描述:本人自己测试写了一遍,如有错的地方,懂freemarker的朋友望指点指点! 案例-指令参考 表达式 一、 Assign 二、attempt, recover 三、compress 四、flush 五、function, return 六、global全局变量 七、if, els ...
分类:
其他好文 时间:
2016-06-17 17:06:54
阅读次数:
236
Oracle表空间和用户的创建1、plsql中,使用管理员账户登录2、create tablespace test datafile 'D:\test.ora' size 1000m;--创建表空间,test为表空间名称3、create user test identified by test de ...
分类:
数据库 时间:
2016-06-15 12:42:19
阅读次数:
682