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.
我需要在我的数据库中进行大量插入。我的表中有法语字符(例如 é)
当我连接到 SQLPlus 并手动运行查询时
INSERT INTO TEST VALUES ('é');
数据已正确插入。
当我将相同的查询保存在 Sql 文件中并通过 SQLplus 执行相同的查询时
我得到以下错误:
SQLPLUS>@test.sql; ERROR: ORA-01756: quoted string not properly terminated
谁能指导我。
谢谢