Skip to content

Commit

Permalink
Update sql-statement-import-into.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hfxsd authored Sep 10, 2024
1 parent f1a1c89 commit 1fee483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-import-into.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ summary: TiDB 数据库中 IMPORT INTO 的使用概况。
## 使用限制

- 只支持导入数据到数据库中已有的空表。
- 不支持导入到[临时表](/temporary-tables.md)或者[缓存表](/cached-tables.md)
- 不支持事务,也无法回滚。在显式事务 (`BEGIN`/`END`) 中执行会报错。
- 不支持和 [Backup & Restore](/br/backup-and-restore-overview.md)[`FLASHBACK CLUSTER`](/sql-statements/sql-statement-flashback-cluster.md)[创建索引加速](/system-variables.md#tidb_ddl_enable_fast_reorg-从-v630-版本开始引入)、TiDB Lightning 导入、TiCDC 数据同步、[Point-in-time recovery (PITR)](/br/br-log-architecture.md) 等功能同时工作。相关兼容性介绍,请参见 [`IMPORT INTO` 和 TiDB Lightning 与日志备份和 TiCDC 的兼容性](/tidb-lightning/tidb-lightning-compatibility-and-scenarios.md)
- 导入数据的过程中,请勿在目标表上执行 DDL 和 DML 操作,也不要在目标数据库上执行 [`FLASHBACK DATABASE`](/sql-statements/sql-statement-flashback-database.md),否则会导致导入失败或数据不一致。导入期间也不建议进行读操作,因为读取的数据可能不一致。请在导入完成后再进行读写操作。
Expand All @@ -26,7 +27,6 @@ summary: TiDB 数据库中 IMPORT INTO 的使用概况。
- TiDB 集群升级期间不支持使用该语句。
- 所需导入的数据不能存在主键或非空唯一索引冲突的记录,否则会导致任务失败。
- 已知问题:在 TiDB 节点配置文件中的 PD 地址与当前集群 PD 拓扑不一致时(如曾经缩容过 PD,但没有对应更新 TiDB 配置文件或者更新该文件后未重启 TiDB 节点),执行 `IMPORT INTO` 会失败。
- 不支持导入到[临时表](/temporary-tables.md)或者[缓存表](/cached-tables.md)

### `IMPORT INTO ... FROM FILE` 使用限制

Expand Down

0 comments on commit 1fee483

Please sign in to comment.