我尝试恢复DB2数据库,但它说返回路径无效。
这就是我的尝试:
db2 restore database gyczpas from "/home/db2inst1/GYCZPAS/PAS_BACKUP/GYCZPAS.0.db2inst1.NODE0000.CATN0000.20170109092932.001" taken at 20170109092932 into gyczpas
SQL2036N The path for the file or device "/home/db2inst1/GYCZPAS/PAS_BACKUP/GYCZPAS.0.db2inst1.NODE0000.CATN000" is not valid.
我在用RESTORE
命令的BACKUP
期间使用了相同的路径,但它失败了。可能是什么原因?
DB22版本:v9.7
答案 0 :(得分:2)
您使用的是文件名,而不是RESTORE的路径。尝试类似以下内容 - 仅指定路径:
db2 restore database gyczpas from "/home/db2inst1/GYCZPAS/PAS_BACKUP" taken at 20170109092932 into gyczpas