sql >> データベース >  >> RDS >> Mysql

テーブルをロックせずにMySQLDumpを実行する

    --lock-tables=falseを実行しますか オプションは機能しますか?

    manページ によると 、InnoDBテーブルをダンプする場合は、--single-transactionを使用できます。 オプション:

    --lock-tables, -l
    
    Lock all tables before dumping them. The tables are locked with READ
    LOCAL to allow concurrent inserts in the case of MyISAM tables. For
    transactional tables such as InnoDB and BDB, --single-transaction is
    a much better option, because it does not need to lock the tables at
    all.
    

    innodb DBの場合 :

    mysqldump --single-transaction=TRUE -u username -p DB
    


    1. ms sqlserver2005で開いている/アクティブな接続の総数を確認する方法

    2. SQL ServerReportingServicesでのSalesforce.comデータの操作

    3. SQL Server 2016StandardEditionのハードウェアの選択と構成

    4. PostgreSQLDBからのコメントの取得