今天在还原数据库的时候,在ssms用以下代码还原数据库:RESTORE DATABASE [TEST] FROM DISK = N'D:\TEST.BAK' WITH FILE = 1, MOVE N'TEST' TO N'C:\Program Files\Microsoft SQL Serv...
分类:
数据库 时间:
2014-07-10 11:36:13
阅读次数:
298
先查看数据库逻辑名称:restore filelistonly from disk='D:/database.bak'然后恢复:restore database smsdb from disk = 'd:\smsdb.bak'with move '数据库逻辑名称' to 'C:\Progra...
分类:
数据库 时间:
2014-07-07 15:47:56
阅读次数:
318
CentOS 65中安装vmware tools时出现如下错误,centos vmware tools install failure ,no default label for /tmp/vmware-block-restore......经过google,发现此篇文章 ,需要预先安装必备组件,g...
分类:
其他好文 时间:
2014-07-01 18:31:54
阅读次数:
230
最近在做一套DB2数据库迁移时遭遇 SQL20321N报错。
场景:一套干净的环境,刚装了DB2,预计将一套老的DB2数据库迁移至此。
在源端进行冷备:
db2 backup db sundb to /db2sys compress
将备份介质传输到目标端/db2sys目录下。
在目标端进行恢复:
db2 restore db sundb from . on /...
分类:
数据库 时间:
2014-06-30 18:58:35
阅读次数:
416
环境是AIX 6.1,DB2版本9.7.0.7
首先查看db2主进程是否存在
ps -ef|grep db2sys
若不存在使用db2start打开数据库
备份介质为冷备数据源,
cd 到介质所在目录下:
cd /home/db2inst1/backup
使用redirect参数来更改目录:
1.>db2 restore db xxx from . ...
分类:
数据库 时间:
2014-06-30 16:25:45
阅读次数:
459
我们可以恢复之前的统计信息,生成原本的执行计划
SQL>BEGIN
2DBMS_STATS.restore_table_stats(ownname=>‘DAO‘,tabname=>‘TEST_STATS‘,as_of_timestamp=>‘27-JUN-1405.40.33.314757PM+08:00‘);
3END;
4/
PL/SQLproceduresuccessfullycompleted.SQL>selectcount..
分类:
数据库 时间:
2014-06-29 21:58:15
阅读次数:
431
本人公司电脑型号为HPfolio9740m,用windows7自带的修复工具,恢复windows标准镜像文件,出现如下错误:Thesystemp_w_picpathrestorefailed.Windowscannotrestoreasystemp_w_picpathtoacomputerthanhasdifferentfirmware.Thesystemp_w_picpathwascreatedonacomputerusingBIOSand..
Given a string containing only digits, restore it by returning all possible valid IP address combinations.For example:Given"25525511135",return["255.2...
分类:
其他好文 时间:
2014-06-26 00:07:07
阅读次数:
311
Given a string containing only digits, restore it by returning all possible valid IP address combinations.For example:Given"25525511135",return["255.2...
分类:
其他好文 时间:
2014-06-25 22:41:33
阅读次数:
274
1,su - db2inst2,db2 connect to ids3,db2stop force4,db2 list db directory5,db2 list tables for all6,db2 describe table tablename7,db2 "restore db JVC f...
分类:
其他好文 时间:
2014-06-21 09:29:14
阅读次数:
247