Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以说明如何解决此错误。可能很明显的是,要插入数据库的字符串很长。除了我们需要缩短长度这一事实之外,还有什么方法可以解决这个问题吗?
您需要首先使用创建数据库链接
create public database link mylink connect to remote_username identified by mypassword using 'tns_service_name';
在您使用的这个 mylink 中应该少于 128 个字符
创建数据库链接后使用例如
insert into remote_username.remote_table@mylink values ('a','b','c');