码迷,mamicode.com
首页 >  
搜索关键字:lost datafile    ( 1036个结果
ORACLE导入导出
--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
Oracle 创建表空间以及用户
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
How to Resize a Datafile (文档 ID 1029252.6)
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
POJ3450 Corporate Identity 【KMP 暴力strstr可过】
题目描述 给你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
Oracle Study Note : Tablespace and Data Files
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
Oracle datafile特殊字符处理
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
Oracle 创建表空间的时候显示 数据库未连接
由于手贱,把数据库表空间的物理文件删除了,然后想新建的时候出现“ 数据库未连接”,经过一个小时的折腾,终于弄好了,解决方法如下:sqlplus>sys /as sysdba>alter database mount;>alter database datafile '这里写你删除的物理路径' off...
分类:数据库   时间:2015-02-09 12:32:50    阅读次数:125
Cisco IOS Security command Guide
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
IMP跨平台迁移数据库SQL生成SQL方式表空间创建脚本
我们在利用EXP/IMP进行跨平台迁移的时候,由于表空间路径变更,需要先手工创建在目标端创建与源端一致的表空间和数据文件,以下为创建生成语句的脚本。 一.在源端数据库执行以下命令,生成创建脚本 select 'create tablespace ' || b.NAME || ' DATAFILE ' || chr(39) || a.NAME || chr(39) || ' SIZE ' || ...
分类:数据库   时间:2015-02-06 13:16:33    阅读次数:219
7 Sentences You Shouldn't Say to Your Boss - EVER
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
1036条   上一页 1 ... 83 84 85 86 87 ... 104 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!