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

MySQL-すべてのクエリを追跡する方法は?

    MySQLの一般的なクエリログ を有効にします :

    MySQLの内部

    set global general_log = 1;
    set global log_output = 'table' /* so we can query it*/
    
    select * from general_log       /* to select */
    
    truncate general_log            /*if you got to much data*/
    
    set global general_log = 0      /*to turn it off again*/
    


    1. リレーショナルと非リレーショナルデータベース - パート1

    2. codeigniterのアクティブレコード

    3. ドッキングされたPostgreSQLデータベースのバックアップ/復元

    4. Oracleでnull値の列を合計する