首页 > 解决方案 > 如何在 sqlldr 中编写用户 ID 特殊字符?

问题描述

我有个问题

我的数据库用户 ID 是 id = test_test pw = test_test1!2@

所以我这样写

sqlldr "test_test/test_test1!2@"@IP:port/sid control='path'

但它显示“ORA-12154 TNS:无法解析指定的连接标识符”

我需要帮助

标签: sql-loader

解决方案


只需更改您的密码,不要使用“@”符号。免得自己头疼。

ALTER USER test_test identified by new_password_here

推荐阅读