共计 836 个字符,预计需要花费 3 分钟才能阅读完成。
还原步骤:创建好数据库后进入该数据库
1、restore db TSMESDB from D:\ICSS\dbData on D:\ICSS\dbData into TSMESDB redirect2、list tablespaces
3、set tablespace containers for 4 using (path“D:\DB2\NODE0000\TSMESDB\mycontainer”)
4、set tablespace containers for 5 using (path “D:\DB2\NODE0000\TSMESDB\mytemp”)
5、RESTORE db TSMESDB continue
语法:
restore db 数据库名 from 还原后存放的路径(taken at 时间戳)on 还原文件路径 into 数据库名 redirect
查看空间
设置容器路径
设置 temp 文件路径
继续还原
如果是非管理员账号那么要重新给用户授权,否则不能做任何操作
如果 windows 没有启用 administrator 需要启用 并设置密码 然后登陆到 administrator 用户下去给其他用户授权
adminitrator 启用如下图:
登陆到 administrator 以后使用 打开 db2cmd 给需要授权的用户授权
db2 => grant connect on database to user userCount
DB20000I The SQL command completed successfully.
db2 => grant dbadm on database to user userCount
DB20000I The SQL command completed successfully.
db2 => quit
第一次还原 db2 数据,坑点:使用的是 win10 的网络用户,不是 admin 账户,导致没有 db2admin 权限
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-10/147741.htm