This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong-website.git


The following commit(s) were added to refs/heads/master by this push:
     new bdddade2c5 [INLONG-868][Sort] Fix typo in sqlserver part  (#869)
bdddade2c5 is described below

commit bdddade2c5f944e09490edefdc7f06b39bdfa0a8
Author: EpicMo <[email protected]>
AuthorDate: Thu Oct 5 14:43:36 2023 +0800

    [INLONG-868][Sort] Fix typo in sqlserver part  (#869)
---
 docs/data_node/load_node/sqlserver.md              | 10 ++++-----
 .../current/data_node/load_node/sqlserver.md       | 26 +++++++++++-----------
 2 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/docs/data_node/load_node/sqlserver.md 
b/docs/data_node/load_node/sqlserver.md
index fe928c6caa..d6de795e8e 100644
--- a/docs/data_node/load_node/sqlserver.md
+++ b/docs/data_node/load_node/sqlserver.md
@@ -38,18 +38,18 @@ build automation tool (such as Maven or SBT) and SQL Client 
with Sort Connectors
 
 ```sql
 
--- MySQL extract node
-CREATE TABLE `mysql_extract_table`(
+-- SQLServer extract node
+CREATE TABLE `sqlserver_extract_table`(
   PRIMARY KEY (`id`) NOT ENFORCED,
   `id` BIGINT,
   `name` STRING,
   `age` INT
 ) WITH (
-  'connector' = 'mysql-cdc-inlong',
-  'url' = 'jdbc:mysql://localhost:3306/read',
+  'connector' = 'sqlserver-cdc-inlong',
+  'url' = 'jdbc:sqlserver://localhost:1433/read',
   'username' = 'inlong',
   'password' = 'inlong',
-  'table-name' = 'user'
+  'table-name' = 'dbo.user'
 )
 
 -- SQLServer load node
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data_node/load_node/sqlserver.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data_node/load_node/sqlserver.md
index 547f217237..e0b7e4a790 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data_node/load_node/sqlserver.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data_node/load_node/sqlserver.md
@@ -7,7 +7,7 @@ import {siteVariables} from '../../version';
 
 ## 概览
 
-`SQLServer Load` 节点支持将数据写入 MySQL 数据库。 本文档介绍如何设置 SQLServer Load 节点以对 SQLServer 
数据库运行 SQL 查询。
+`SQLServer Load` 节点支持将数据写入 SQLServer 数据库。 本文档介绍如何设置 SQLServer Load 节点以对 
SQLServer 数据库运行 SQL 查询。
 
 ## 支持的版本
 
@@ -36,19 +36,19 @@ import {siteVariables} from '../../version';
 
 ```sql
 
--- MySQL Extract 节点
-CREATE TABLE `mysql_extract_table`(
-  PRIMARY KEY (`id`) NOT ENFORCED,
-  `id` BIGINT,
-  `name` STRING,
-  `age` INT
+-- SQLServer extract node
+CREATE TABLE `sqlserver_extract_table`(
+      PRIMARY KEY (`id`) NOT ENFORCED,
+      `id` BIGINT,
+      `name` STRING,
+      `age` INT
 ) WITH (
-  'connector' = 'mysql-cdc-inlong',
-  'url' = 'jdbc:mysql://localhost:3306/read',
-  'username' = 'inlong',
-  'password' = 'inlong',
-  'table-name' = 'user'
-)
+      'connector' = 'sqlserver-cdc-inlong',
+      'url' = 'jdbc:sqlserver://localhost:1433/read',
+      'username' = 'inlong',
+      'password' = 'inlong',
+      'table-name' = 'dbo.user'
+      )
 
 -- SQLServer Load 节点
 CREATE TABLE `sqlserver_load_table`(

Reply via email to