sql error on script execution. try deleting repository before creating repository(脚本执行时出现 sql 错误.在创建存储库之前尝试删除存储库)
问题描述
我想将我的 mysql 数据库迁移到 oracle.我已经从这个 url
第 2 步:使用 migration_repo 用户创建名为 migration_repo 的连接
step3:尝试关联迁移仓库
step4:执行命令
但几秒钟后我收到此错误消息.
现在.我该如何解决这个问题?我做错了什么?
我遇到了同样的问题,这解决了更改 GRANT 语句...
将所有权限授予由 {migration-name} 标识的 {migration-name};
请注意在迁移任务后删除权限.
I want to migrate my mysql databse to oracle. I have followed the migration demo from this url http://www.oracle.com/technetwork/database/migration/connect-step-mysql-1946352.html
but I got this message when try to associate migration repository
sql error on script execution. try deleting repository before creating repository
I am using
Oracle Sql Developer v 4.1.1.19
Oracle express edition 11g releas 2
see the picture bellow what I have tried step by step
step1: Creating a user named migration_repo
step 2: Creating connection named migration_repo using migration_repo user
step3: try to associate migration repository
step4: executing the command
but after few seconds I got this error message.
Now. how can I solve this? what I have done wrong?
I had the same problem, this was solved changing the GRANT statement with...
GRANT ALL PRIVILEGES to {migration-name} identified by {migration-name};
just be aware to remove privileges after migration tasks.
这篇关于脚本执行时出现 sql 错误.在创建存储库之前尝试删除存储库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:脚本执行时出现 sql 错误.在创建存储库之前尝试删除存储库
基础教程推荐
- 是否可以执行按位分组功能? 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 无法解决整理冲突 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
