将数据从一个 Oracle 数据库复制到具有不同 Unicode 的另一个数据库时出现 ORA-01406
我有两个相同的表:original_table、目标表位于两个不同的 Oracle 数据库中。
-- Oracle 1
create table original_table
(
my_id NUMBER(11) not null,
my_fld CHAR(15),
)
-- Oracle 2
create table destination_table
(
my_id NUMBER(11) not null,
my_fld CHAR(15),
)
我正在使用过程和数据库链接将数据从original_table复制到destination_table。这是一个伪代码版本。
PROCEDURE COPY_DATA AS
BEGIN
FOR c_cursor IN (SELECT my_id ,my_fld FROM original_table@dblink)
LOOP
INSERT INTO destination_table
VALUES (c_cursor.my_id, c_cursor.my_fld);
END LOOP;
END;
有时,当在original_table.my_fld 列中插入特殊字符时,Oracle 会抛出错误。
ORA-01406: 获取的列值被截断
这是因为这两个数据库具有不同的 Unicode,并且我在 LOOP 中选择数据。我尝试在循环之外编写选择插入语句,效果很好。
你能告诉我如何解决这个问题吗?
I have two identical tables: original_table, destination table in two different Oracle database.
-- Oracle 1
create table original_table
(
my_id NUMBER(11) not null,
my_fld CHAR(15),
)
-- Oracle 2
create table destination_table
(
my_id NUMBER(11) not null,
my_fld CHAR(15),
)
I'm copying data from original_table to destination_table using the procedure and a database link. Here is a pseudocode version.
PROCEDURE COPY_DATA AS
BEGIN
FOR c_cursor IN (SELECT my_id ,my_fld FROM original_table@dblink)
LOOP
INSERT INTO destination_table
VALUES (c_cursor.my_id, c_cursor.my_fld);
END LOOP;
END;
Sometimes Oracle throws ERROR, when special character is inserted in original_table.my_fld column.
ORA-01406: fetched column value was truncated
This is because those two databases have different Unicode and I'm selecting data in LOOP. I tried to write select-insert statement outside of LOOP and it worked fine.
Can you tell me how to fix this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我对字符串字段使用了 UNISTR 函数。
它解决了问题。
I used UNISTR function for my string field.
It fixed the problem.
如果您只想将所有数据从一个表复制到另一个表,则不需要游标,您可以在过程中使用 sql 来完成此操作。尝试一下希望有帮助...
If you just want to copy all data from one table to another u don t need cursor u can do it with sql inside a procedure. Try it hope it helps...
逐行选择并插入数据基本上是最慢的方法。使用这个:
Select and insert the data row-by-row is basically the slowest way you can do it. Use this one:
当尝试通过 ODBC 从 Microsoft Access 绑定/链接 Oracle 表时,我收到此错误:“ora-01406 获取的列值被截断”。
如果有任何表的名称大于 30 个字符,则可能会发出此错误。请注意,从 Oracle Database 12.2 开始,最多允许 128 个字符,但 ODBC 驱动程序似乎尚不支持它。
I got this error: "ora-01406 fetched column value was truncated" when trying to bind / link oracle tables from Microsoft Access through ODBC.
If there is any table which name is greater than 30 characters, this error may be issued. Note that from Oracle Database 12.2, up to 128 characters are allowed, but the ODBC drivers seems no to support it yet.