当前位置:首页 » 网页前端 » xshell导入数据脚本编写
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

xshell导入数据脚本编写

发布时间: 2023-07-06 21:43:14

⑴ 怎样使用 xshell 进行数据库 oracle 数据的导出导入

怎样使用 xshell 进行数据库 oracle 数据的导出导入
例如将scott用户下所有表,导入到test用户下
1 exp scott/tiger file=scott.dmp owner=scott
2 (1) 如果test用户下有scott的表,哪些需要先删除在导入
conn test/test
select 'drop table '||table_name||' purge;' from user_tables;
imp test/test file=scott.dmp fromuser=scott touser=test
(2) 如果test用户下没有scott用户的表,可以直接导入
imp test/test file=scott.dmp fromuser=scott touser=test

⑵ xshell远程数据库添加数据

xshell远程数据库添加数据的步骤:
1、当远程数据库断线时,将数据上传到本地数据库。
2、远程数据库由断线变为可连接时,将本地数据库中的数据上传到远程数据库中。

⑶ XShell5里面登陆了数据库,如何将数据库里面的表或者整个数据库备份导出来(和导入进去)

开始—运行—输入“CMD”回车,然后直接写入以下命令
导出的命令:
exp 用户名/密码@数据库名 file=D:\database.dmp log=data.log
file后是写得你导出的文件存放的路径,database.dmp是你导出的文件,log是你导出日志,便于查询错误,不要也可以。例如 exp user/password@orcl file=d:\aaa.dmp
导入的命令:
imp 用户名/密码@数据库名 file=D:\database.dmp full=y
full=y一定不要丢。