AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / dba / 问题 / 189844
Accepted
nelaaro
nelaaro
Asked: 2017-11-02 04:21:54 +0800 CST2017-11-02 04:21:54 +0800 CST 2017-11-02 04:21:54 +0800 CST

SQL_SLAVE_SKIP_COUNTER = 1 失败,设置 @@gtid_slave_pos 用于跳过给定的 GTID 位置

  • 772

我最近打破了复制,当我试图通过一个不正确的事务时。我得到了以下内容。

MariaDB [(none)]> STOP SLAVE;
Query OK, 0 rows affected (0.05 sec)

MariaDB [(none)]> SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1;
ERROR 1966 (HY000): When using parallel replication and GTID with multiple replication domains, @@sql_slave_skip_counter cannot be used. Instead, setting @@gtid_slave_pos explicitly can be used to skip to after a given GTID position.
MariaDB [(none)]> select @@gtid_slave_pos;
+---------------------------------------------+
| @@gtid_slave_pos                            |
+---------------------------------------------+
| 0-1051-1391406,1-1050-1182069,57-1051-98897 |
+---------------------------------------------+
1 row in set (0.00 sec)

MariaDB [(none)]> show variables like '%_pos%';
+----------------------+---------------------------------------------------------+
| Variable_name        | Value                                                   |
+----------------------+---------------------------------------------------------+
| gtid_binlog_pos      | 0-1051-1391406,2-1051-4474,57-1051-98897                |
| gtid_current_pos     | 0-1051-1391406,1-1050-1182069,2-1051-4474,57-1051-98897 |
| gtid_slave_pos       | 0-1051-1391406,1-1050-1182069,57-1051-98897             |
| wsrep_start_position | 00000000-0000-0000-0000-000000000000:-1                 |
+----------------------+---------------------------------------------------------+

我需要做什么来解决这个问题。

更新 1

MariaDB [(none)]> show variables like '%gtid%';
+------------------------+------------------------------------------+
| Variable_name          | Value                                    |
+------------------------+------------------------------------------+
| gtid_binlog_pos        | 1-1050-4820789,2-1051-379101,3-1010-3273 |
| gtid_binlog_state      | 1-1050-4820789,2-1051-379101,3-1010-3273 |
| gtid_current_pos       | 1-1050-4819948,2-1051-379101,3-1010-3273 |
| gtid_domain_id         | 3                                        |
| gtid_ignore_duplicates | OFF                                      |
| gtid_seq_no            | 0                                        |
| gtid_slave_pos         | 1-1050-4819948,2-1051-379101,3-1010-3273 |
| gtid_strict_mode       | OFF                                      |
| last_gtid              |                                          |
| wsrep_gtid_domain_id   | 0                                        |
| wsrep_gtid_mode        | OFF                                      |
+------------------------+------------------------------------------+

我按照说明尝试了以下设置@@gtid_slave_pos;

MariaDB [(none)]> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: [redacted]
                  Master_User: [redacted]
                  Master_Port: 3306
                Connect_Retry: 5
              Master_Log_File: binary.000591
          Read_Master_Log_Pos: 526511543
               Relay_Log_File: tmsdb-relay-bin.001239
                Relay_Log_Pos: 4
        Relay_Master_Log_File: binary.000591
             Slave_IO_Running: Yes
            Slave_SQL_Running: No
              Replicate_Do_DB: 
          Replicate_Ignore_DB: 
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 1062
                   Last_Error: Could not execute Write_rows_v1 event on table [redacted] Duplicate entry '1134890' for key 'PRIMARY', Error_code: 1062; handler error HA_ERR_FOUND_DUPP_KEY; the event's master log binary.000591, end_log_pos 60726493
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 60724897
              Relay_Log_Space: 465787660
              Until_Condition: None
               Until_Log_File: 
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File: 
           Master_SSL_CA_Path: 
              Master_SSL_Cert: 
            Master_SSL_Cipher: 
               Master_SSL_Key: 
        Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 0
                Last_IO_Error: 
               Last_SQL_Errno: 1062
               Last_SQL_Error: Could not execute Write_rows_v1 event on table [redacted] Duplicate entry '1134890' for key 'PRIMARY', Error_code: 1062; handler error HA_ERR_FOUND_DUPP_KEY; the event's master log binary.000591, end_log_pos 60726493
  Replicate_Ignore_Server_Ids: 
             Master_Server_Id: 1050
               Master_SSL_Crl: 
           Master_SSL_Crlpath: 
                   Using_Gtid: Current_Pos
                  Gtid_IO_Pos: 1-1050-4827753,2-1051-379101,3-1010-3273
      Replicate_Do_Domain_Ids: 
  Replicate_Ignore_Domain_Ids: 
                Parallel_Mode: optimistic
1 row in set (0.00 sec)

使用 gtid_slave_pos 变量

MariaDB [(none)]> select @@gtid_slave_pos\G;
*************************** 1. row ***************************
@@gtid_slave_pos: 1-1050-4819948,2-1051-379101,3-1010-3273

MariaDB [(none)]> stop slave;
Query OK, 0 rows affected (0.21 sec)

MariaDB [(none)]> SET GLOBAL gtid_slave_pos='1-1050-4819948,2-1051-379101,3-1010-3274';
Query OK, 0 rows affected (0.10 sec)

MariaDB [(none)]> start slave;
Query OK, 0 rows affected (0.21 sec)

当我在运行上述后检查状态时Got fatal error 1236 from master when reading data from binary log: 'Error: connecting slave requested to start from GTID 3-1010-3274, which is not in the master's binlog'

MariaDB [(none)]> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: 
                  Master_Host: 10.56.228.64
                  Master_User: maxscale
                  Master_Port: 3306
                Connect_Retry: 5
              Master_Log_File: binary.000591
          Read_Master_Log_Pos: 60724897
               Relay_Log_File: tmsdb-relay-bin.001239
                Relay_Log_Pos: 4
        Relay_Master_Log_File: binary.000591
             Slave_IO_Running: No
            Slave_SQL_Running: Yes
              Replicate_Do_DB: 
          Replicate_Ignore_DB: 
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 0
                   Last_Error: 
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 60724897
              Relay_Log_Space: 249
              Until_Condition: None
               Until_Log_File: 
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File: 
           Master_SSL_CA_Path: 
              Master_SSL_Cert: 
            Master_SSL_Cipher: 
               Master_SSL_Key: 
        Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 1236
                Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Error: connecting slave requested to start from GTID 3-1010-3274, which is not in the master's binlog'
               Last_SQL_Errno: 0
               Last_SQL_Error: 
  Replicate_Ignore_Server_Ids: 
             Master_Server_Id: 1050
               Master_SSL_Crl: 
           Master_SSL_Crlpath: 
                   Using_Gtid: Current_Pos
                  Gtid_IO_Pos: 1-1050-4819948,2-1051-379101,3-1010-3274
      Replicate_Do_Domain_Ids: 
  Replicate_Ignore_Domain_Ids: 
                Parallel_Mode: optimistic
1 row in set (0.00 sec)

我可以通过

MariaDB [(none)]> stop slave;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> SET GLOBAL gtid_slave_pos='1-1050-4819948,2-1051-379101,3-1010-3273';
Query OK, 0 rows affected (0.09 sec)

MariaDB [(none)]> start slave;
Query OK, 0 rows affected (0.06 sec)
mysql replication
  • 2 2 个回答
  • 6643 Views

2 个回答

  • Voted
  1. nelaaro
    2017-12-23T04:36:12+08:002017-12-23T04:36:12+08:00

    我发现以下内容对我有用。这不会将从属恢复到与主控完全相同的状态。会有数据差异。我将使用 pt-table-sync 来解决这些问题。

    1. 不使用 GTID 方法重新启动复制
    2. 停止并行从属线程
    3. 启用 GTID 复制
    4. 使用 percona-toolkit pt-slave-restart 跳过所有错误。

    1. 重启 Replication without GTID 方法 Using master binglog position

    CHANGE MASTER TO MASTER_HOST='12.34.56.789',MASTER_USER='slave_user', MASTER_PASSWORD='password', MASTER_LOG_FILE='mysql-bin.000001', MASTER_LOG_POS=  107;
    

    这是有据可查的,请谷歌并查找说明。

    2.停止并行从线程

    如原始问题所示,这是问题的一部分。

    ERROR 1966 (HY000): When using parallel replication and GTID with multiple replication domains, @@sql_slave_skip_counter cannot be used. Instead, setting @@gtid_slave_pos explicitly can be used to skip to after a given GTID position.

    我希望能够跳过事件,而不必担心试图找出或增加每个人的 GTID 位置。

    MariaDB [(none)]> stop slave;
    Query OK, 0 rows affected (0.35 sec)
    MariaDB [(none)]> set global slave_parallel_threads = 0;
    Query OK, 0 rows affected (0.00 sec)
    MariaDB [(none)]> set global slave_parallel_mode = none;
    Query OK, 0 rows affected (0.00 sec)
    MariaDB [(none)]> Start SLAVE;
    Query OK, 0 rows affected (0.00 sec)    
    

    现在,如果我检查并行从线程,我会看到

    MariaDB [(none)]> show slave status \G
    *************************** 1. row ***************************
         ..........
                    Parallel_Mode: none
    

    完成后,我可以反转此过程以重新启用并行从属线程。而且我知道 GTID 正在工作。

    3.启用GTID复制

    我现在可以尝试在启用 GTID 的情况下重新启动从站。

    在主上

    MariaDB [(none)]> SHOW MASTER STATUS\G
    *************************** 1. row ***************************
                File: mariadb-bin.000001
            Position: 510
        Binlog_Do_DB:
    Binlog_Ignore_DB:
    1 row in set (0.00 sec)
    
    SELECT BINLOG_GTID_POS('mariadb-bin.000001', 510);
    +--------------------------------------------+
    | BINLOG_GTID_POS('mariadb-bin.000001', 510) |
    +--------------------------------------------+
    | 1-101-1                                    |
    +--------------------------------------------+
    1 row in set (0.00 sec)
    

    在奴隶上

    STOP SLAVE;
    SET GLOBAL gtid_slave_pos = '1-101-1';
    CHANGE MASTER TO master_use_gtid=slave_pos;
    START SLAVE;
    

    现在,当我检查从属设备时,它有一些事件要跳过以恢复与主设备相同的状态。

    Last_Error: An attempt was made to binlog GTID 1-1050-5004291 which would create an out-of-order sequence number with existing GTID 1-1050-5004322, and gtid strict mode is enabled.

    MariaDB [(none)]> show slave status \G
    *************************** 1. row ***************************
                   Slave_IO_State: Waiting for master to send event
                  Master_Log_File: binary.000599
              Read_Master_Log_Pos: 364810491
                   Relay_Log_File: tmsdb-relay-bin.001240
                    Relay_Log_Pos: 716
            Relay_Master_Log_File: binary.000599
                 Slave_IO_Running: Yes
                Slave_SQL_Running: No
                  Replicate_Do_DB: 
              Replicate_Ignore_DB: 
               Replicate_Do_Table: 
           Replicate_Ignore_Table: 
          Replicate_Wild_Do_Table: 
      Replicate_Wild_Ignore_Table: 
                       Last_Errno: 1950
                       Last_Error: An attempt was made to binlog GTID 1-1050-5004291 which would create an out-of-order sequence number with existing GTID 1-1050-5004322, and gtid strict mode is enabled.
                     Skip_Counter: 0
              Exec_Master_Log_Pos: 286447058
                  Relay_Log_Space: 78364447
                  Until_Condition: None
                   Until_Log_File: 
                    Until_Log_Pos: 0
               Master_SSL_Allowed: No
               Master_SSL_CA_File: 
               Master_SSL_CA_Path: 
                  Master_SSL_Cert: 
                Master_SSL_Cipher: 
                   Master_SSL_Key: 
            Seconds_Behind_Master: NULL
    Master_SSL_Verify_Server_Cert: No
                    Last_IO_Errno: 0
                    Last_IO_Error: 
                   Last_SQL_Errno: 1950
                   Last_SQL_Error: An attempt was made to binlog GTID 1-1050-5004291 which would create an out-of-order sequence number with existing GTID 1-1050-5004322, and gtid strict mode is enabled.
      Replicate_Ignore_Server_Ids: 
                 Master_Server_Id: 1050
                   Master_SSL_Crl: 
               Master_SSL_Crlpath: 
                       Using_Gtid: Slave_Pos
                      Gtid_IO_Pos: 1-1050-5005223,2-1051-379101,3-1010-3273
          Replicate_Do_Domain_Ids: 
      Replicate_Ignore_Domain_Ids: 
                    Parallel_Mode: none
    1 row in set (0.00 sec)
    

    4. 使用 percona-toolkit pt-slave-restart 跳过所有错误

    sudo yum install http://www.percona.com/downloads/percona-release/redhat/0.1-4/percona-release-0.1-4.noarch.rpm
    sudo yum search percona-toolkit
    

    pt-slave-restart 将跳过使从属设备进入工作状态所需的所有事件。

    # pt-slave-restart 
    2017-12-22T13:39:59  tmsdb-relay-bin.001240         716 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240       69702 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240       97912 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240       98144 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      363903 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      364135 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      712776 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      713008 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      759737 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      827932 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      828164 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      934851 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      952088 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240      952320 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1084249 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1084481 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1351188 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1351420 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1621561 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1693920 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1711677 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1711909 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1880931 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1881163 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     1916544 1950 
    2017-12-22T13:40:00  tmsdb-relay-bin.001240     2124672 1950 
    2017-12-22T13:40:01  tmsdb-relay-bin.001240     2124904 1950 
    2017-12-22T13:40:01  tmsdb-relay-bin.001240     2125136 1950 
    2017-12-22T13:40:01  tmsdb-relay-bin.001240     2452030 1950 
    2017-12-22T13:40:01  tmsdb-relay-bin.001240     2452262 1950 
    2017-12-22T13:40:01  tmsdb-relay-bin.001240     2819749 1950 
    2017-12-22T13:40:01  tmsdb-relay-bin.001240     2819981 1950 
    

    现在当我检查我的奴隶状态时

    MariaDB [(none)]> show slave status \G
    *************************** 1. row ***************************
                   Slave_IO_State: Waiting for master to send event
                      Master_Host: masterhost
                      Master_User: maxscale
                      Master_Port: 3306
                    Connect_Retry: 5
                  Master_Log_File: binary.000600
              Read_Master_Log_Pos: 37801368
                   Relay_Log_File: tmsdb-relay-bin.001242
                    Relay_Log_Pos: 37801653
            Relay_Master_Log_File: binary.000600
                 Slave_IO_Running: Yes
                Slave_SQL_Running: Yes
                       Last_Errno: 0
                       Last_Error: 
                     Skip_Counter: 0
              Exec_Master_Log_Pos: 37801368
                  Relay_Log_Space: 37801991
                  Until_Condition: None
            Seconds_Behind_Master: 0
    Master_SSL_Verify_Server_Cert: No
                    Last_IO_Errno: 0
                    Last_IO_Error: 
                   Last_SQL_Errno: 0
                   Last_SQL_Error: 
                 Master_Server_Id: 1050
                       Using_Gtid: Slave_Pos
                      Gtid_IO_Pos: 1-1050-5014401,2-1051-379101,3-1010-3273
                    Parallel_Mode: none
    1 row in set (0.00 sec)
    

    最后我需要重新启动服务器并确保它重新启动安全等。

    • 4
  2. Best Answer
    nelaaro
    2018-02-10T01:20:33+08:002018-02-10T01:20:33+08:00

    我在生产中发现 Parallel_Mode 是我问题的最可能原因。

    我建议使用与optimistic

    MariaDB [(none)]> select @@slave_parallel_mode\G
    *************************** 1. row ***************************
    @@slave_parallel_mode: optimistic
    

    如果您收到以下错误。

    pt-slave-restart 
    2018-02-09T10:39:19  tmsdb-relay-bin.000388           4 1032 
    DBD::mysql::st execute failed: When using parallel replication and GTID with multiple replication domains, @@sql_slave_skip_counter can not be used. Instead, setting @@gtid_slave_pos explicitly can be used to skip to after a given GTID position. [for Statement "SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1"] at /bin/pt-slave-restart line 5122.
    

    在日志中,我看到以下内容:

    tail /var/log/mariadb.log
    2018-02-09 10:35:46 139919003784960 [ERROR] Slave SQL: Could not execute Update_rows_v1 event on table [tablename]; Can't find record in '[tablename]', Error_code: 1032; handler error HA_ERR_KEY_NOT_FOUND; the event's master log binary.000953, end_log_pos 264325215, Gtid 1-1050-13462991, Internal MariaDB error code: 1032
    2018-02-09 10:35:46 139919003784960 [Warning] Slave: Can't find record in '[tablename]' Error_code: 1032
    2018-02-09 10:35:46 139919003784960 [ERROR] Error running query, slave SQL thread aborted. Fix the problem, and restart the slave SQL thread with "SLAVE START". We stopped at log 'binary.000953' position 262879171; GTID position '1-1050-13462990,2-1051-379101,3-1010-3273'
    2018-02-09 10:35:46 139918776985344 [Note] Slave SQL thread exiting, replication stopped in log 'binary.000953' at position 262879171; GTID position '1-1050-13462990,2-1051-379101,3-1010-3273'
    

    要在从站失败后重新启动从站,您可以执行以下操作。
    停止所有slave_parallel_threads并禁用slave_parallel_mode

    MariaDB [(none)]> stop slave;
    Query OK, 0 rows affected (0.35 sec)
    MariaDB [(none)]> set global slave_parallel_threads = 0;
    Query OK, 0 rows affected (0.00 sec)
    MariaDB [(none)]> set global slave_parallel_mode = none;
    Query OK, 0 rows affected (0.00 sec)
    MariaDB [(none)]> Start SLAVE;
    Query OK, 0 rows affected (0.00 sec)    
    

    我现在pt-slave-restart用来重新启动从站,因为当我只想启动从站时,我不必考虑序列号和一整套需要太长时间的其他事情。

    pt-slave-restart
    

    将运行没有错误,ctrl-c当你很高兴你的奴隶已经赶上时,你可以关闭它。

    This is not much different then, but it does it auto magically.

    STOP SLAVE;  
    SET GLOBAL sql_slave_skip_counter = 1;  
    START SLAVE;  
    

    If you need to have parallel threads then you can re-enable them once the slave has caught up or gotten past the event causing problems. I would try a different slave_parallel_mod like conservative

    MariaDB [(none)]> stop slave;
    Query OK, 0 rows affected (0.01 sec)
    MariaDB [(none)]> set global slave_parallel_threads = 4;
    Query OK, 0 rows affected (0.00 sec)
    MariaDB [(none)]> set global slave_parallel_mode = conservative;
    Query OK, 0 rows affected (0.00 sec)
    MariaDB [(none)]> start slave;
    Query OK, 0 rows affected (0.09 sec)
    
    • 1

相关问题

  • 我在哪里可以找到mysql慢日志?

  • 如何优化大型数据库的 mysqldump?

  • 什么时候是使用 MariaDB 而不是 MySQL 的合适时机,为什么?

  • PostgreSQL 9.0 Replication 和 Slony-I 有什么区别?

  • 组如何跟踪数据库架构更改?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    连接到 PostgreSQL 服务器:致命:主机没有 pg_hba.conf 条目

    • 12 个回答
  • Marko Smith

    如何让sqlplus的输出出现在一行中?

    • 3 个回答
  • Marko Smith

    选择具有最大日期或最晚日期的日期

    • 3 个回答
  • Marko Smith

    如何列出 PostgreSQL 中的所有模式?

    • 4 个回答
  • Marko Smith

    列出指定表的所有列

    • 5 个回答
  • Marko Smith

    如何在不修改我自己的 tnsnames.ora 的情况下使用 sqlplus 连接到位于另一台主机上的 Oracle 数据库

    • 4 个回答
  • Marko Smith

    你如何mysqldump特定的表?

    • 4 个回答
  • Marko Smith

    使用 psql 列出数据库权限

    • 10 个回答
  • Marko Smith

    如何从 PostgreSQL 中的选择查询中将值插入表中?

    • 4 个回答
  • Marko Smith

    如何使用 psql 列出所有数据库和表?

    • 7 个回答
  • Martin Hope
    Jin 连接到 PostgreSQL 服务器:致命:主机没有 pg_hba.conf 条目 2014-12-02 02:54:58 +0800 CST
  • Martin Hope
    Stéphane 如何列出 PostgreSQL 中的所有模式? 2013-04-16 11:19:16 +0800 CST
  • Martin Hope
    Mike Walsh 为什么事务日志不断增长或空间不足? 2012-12-05 18:11:22 +0800 CST
  • Martin Hope
    Stephane Rolland 列出指定表的所有列 2012-08-14 04:44:44 +0800 CST
  • Martin Hope
    haxney MySQL 能否合理地对数十亿行执行查询? 2012-07-03 11:36:13 +0800 CST
  • Martin Hope
    qazwsx 如何监控大型 .sql 文件的导入进度? 2012-05-03 08:54:41 +0800 CST
  • Martin Hope
    markdorison 你如何mysqldump特定的表? 2011-12-17 12:39:37 +0800 CST
  • Martin Hope
    Jonas 如何使用 psql 对 SQL 查询进行计时? 2011-06-04 02:22:54 +0800 CST
  • Martin Hope
    Jonas 如何从 PostgreSQL 中的选择查询中将值插入表中? 2011-05-28 00:33:05 +0800 CST
  • Martin Hope
    Jonas 如何使用 psql 列出所有数据库和表? 2011-02-18 00:45:49 +0800 CST

热门标签

sql-server mysql postgresql sql-server-2014 sql-server-2016 oracle sql-server-2008 database-design query-performance sql-server-2017

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve