将数据从一个 Oracle 数据库复制到具有不同 Unicode 的另一个数据库时出现 ORA-01406

发布于 2025-01-11 12:56:20 字数 782 浏览 0 评论 0原文

我有两个相同的表: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

柒七 2025-01-18 12:56:20

我对字符串字段使用了 UNISTR 函数。

 FOR c_cursor IN (SELECT my_id ,UNISTR(my_fld) FROM original_table@dblink) 
    LOOP
        INSERT INTO destination_table 
        VALUES (c_cursor.my_id, c_cursor.my_fld);
    END LOOP; 

它解决了问题。

I used UNISTR function for my string field.

 FOR c_cursor IN (SELECT my_id ,UNISTR(my_fld) FROM original_table@dblink) 
    LOOP
        INSERT INTO destination_table 
        VALUES (c_cursor.my_id, c_cursor.my_fld);
    END LOOP; 

It fixed the problem.

哎呦我呸! 2025-01-18 12:56:20

如果您只想将所有数据从一个表复制到另一个表,则不需要游标,您可以在过程中使用 sql 来完成此操作。尝试一下希望有帮助...

PROCEDURE COPY_DATA AS
BEGIN
   INSERT INTO [database].[schema].destination_table (column_list)
   SELECT column_list
   FROM [database].[schema].original_table
   WHERE condition;
END;

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...

PROCEDURE COPY_DATA AS
BEGIN
   INSERT INTO [database].[schema].destination_table (column_list)
   SELECT column_list
   FROM [database].[schema].original_table
   WHERE condition;
END;
话少心凉 2025-01-18 12:56:20

逐行选择并插入数据基本上是最慢的方法。使用这个:

INSERT INTO destination_table (my_id ,my_fld)
SELECT my_id ,my_fld 
FROM original_table@dblink;

Select and insert the data row-by-row is basically the slowest way you can do it. Use this one:

INSERT INTO destination_table (my_id ,my_fld)
SELECT my_id ,my_fld 
FROM original_table@dblink;
无远思近则忧 2025-01-18 12:56:20

当尝试通过 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文