Navicat Premium 12 oracle 转 mysql 断点续传
--1、mysql中执行 查询 用户名下 Oracle 已经 导入的表
SELECT count(*)
  FROM INFORMATION_SCHEMA. TABLES
 WHERE TABLE_SCHEMA = 'Mysql接收用户'
   and TABLE_TYPE = 'BASE TABLE'

--2、oracle执行  将第一步查询出来的表,放在下面 in()中查询
select count(*)
 from all_tables t where t.owner='Oracle传输用户'
and table_name not in (表名)

 

修改配置文件,这里表示选中的表

Navicat Premium 12 oracle 转 mysql 断点续传

 

相关文章:

  • 2021-09-24
  • 2021-12-21
  • 2021-11-30
  • 2022-01-17
  • 2021-10-03
  • 2021-05-29
  • 2021-12-31
猜你喜欢
  • 2021-06-29
  • 2022-01-11
  • 2021-11-21
  • 2022-12-23
  • 2021-04-16
  • 2022-12-23
  • 2021-04-14
相关资源
相似解决方案