--1、创建表空间DROP TABLESPACE flhis INCLUDING CONTENTS AND DATAFILES;CREATE TABLESPACE flhis DATAFILE 'F:\app\oracle\oradata\orcl\flhis.dbf' SIZE 200M AUT....
分类:
数据库 时间:
2015-02-14 13:44:58
阅读次数:
139
1、连接数据库
# su - oracle
$ conn / as sysdba
2、创建表空间
SQL> create tablespace doiido datafile '/main/oracle/oradata/doiido.dbf' size 1024M autoextend on next 1024M maxsize 10240M extent management...
分类:
数据库 时间:
2015-02-13 14:48:52
阅读次数:
167
APPLIES TO:Oracle Database - Enterprise Edition - Version 9.2.0.1 and laterInformation in this document applies to any platform.Checked for relevance ...
分类:
其他好文 时间:
2015-02-12 17:51:29
阅读次数:
173
题目描述
给你n个字符串,问其最长的公共串是啥。如果长度都是最长,输出字典序小的。
Sample Input
3
aabbaabb
abbababb
bbbbbabb
2
xyz
abc
0
Sample Output
abb
IDENTITY LOST
解题思路
取第一个字符串O(n^2)遍历,对其他字符串直接strstr匹配即可。 用K...
分类:
其他好文 时间:
2015-02-11 14:45:50
阅读次数:
129
1.how to create a tablespace that employs the most common features1 create tablespace tb_name #create bigfile tablespace tb_name2 datafile ‘/...
分类:
数据库 时间:
2015-02-11 10:49:50
阅读次数:
277
1.发现数据库的数据文件有特殊字符:2.尝试在sqlplus下用将tablespace offline后修改SQL> alter tablespace WST_DATA rename datafile 'D:\oracle11\oradata\teblespace\WST_DATA .DBF' TO...
分类:
数据库 时间:
2015-02-10 20:15:42
阅读次数:
298
由于手贱,把数据库表空间的物理文件删除了,然后想新建的时候出现“ 数据库未连接”,经过一个小时的折腾,终于弄好了,解决方法如下:sqlplus>sys /as sysdba>alter database mount;>alter database datafile '这里写你删除的物理路径' off...
分类:
数据库 时间:
2015-02-09 12:32:50
阅读次数:
125
copy system:running-config nvram:startup-config : to save your configuration changes to the startup configuration so that the changes will not be lost...
分类:
移动开发 时间:
2015-02-08 19:30:28
阅读次数:
233
我们在利用EXP/IMP进行跨平台迁移的时候,由于表空间路径变更,需要先手工创建在目标端创建与源端一致的表空间和数据文件,以下为创建生成语句的脚本。
一.在源端数据库执行以下命令,生成创建脚本
select 'create tablespace ' || b.NAME || ' DATAFILE ' || chr(39) || a.NAME || chr(39) || ' SIZE ' || ...
分类:
数据库 时间:
2015-02-06 13:16:33
阅读次数:
219
There are certain things all bosses dread to hear. “I lost the account,” “There’s a big mistake,” and “I think the building is on fire,” would all qua...
分类:
其他好文 时间:
2015-02-06 13:01:26
阅读次数:
206