sql >> データベース >  >> Database Tools >> phpMyAdmin

phpMyAdminを使用してMySQLリモートおよびローカルデータベースを同期します

    phpMyAdmin/config.inc.phpを開きます 「サーバー構成」に関するこれらの行を追加します 。

    $i++;
    $cfg['Servers'][$i]['host']          = '<remote-server-address>'; // Remote MySQL hostname or IP address
    $cfg['Servers'][$i]['port']          = '';          // MySQL port - leave blank for default port
    $cfg['Servers'][$i]['socket']        = '';          // Path to the socket - leave blank for default socket
    $cfg['Servers'][$i]['connect_type']  = 'tcp';       // How to connect to MySQL server ('tcp' or 'socket')
    $cfg['Servers'][$i]['extension']     = 'mysql';     // The php MySQL extension to use ('mysql' or 'mysqli')
    $cfg['Servers'][$i]['compress']      = FALSE;       // Use compressed protocol for the MySQL connection
    $cfg['Servers'][$i]['auth_type']     = 'config';    // Authentication method (config, http or cookie based)?
    $cfg['Servers'][$i]['user']          = '<db-username>';     // Remote MySQL user
    $cfg['Servers'][$i]['password']      = '<db-password>';     // Remote MySQL password
    

    これで、phpMyAdminのフロントページに「サーバー」ドロップダウンが表示されます。サーバーとビンゴを選んでください!

    クレジット: codejourneymen

    そして、多くの例があります、多分助けてください:

    phpadminリモートデータベース



    1. 復元されたデータベースの欠落しているビュー、ストアドプロシージャ、および外部キー

    2. SSMSおよびsp_OAMethod:VARCHAR(8000)より大きいデータ型はありますか?

    3. varchar()列を特定の値に制限しますか?

    4. SQL Server Management Studioエディターでタブストップがどこにあるかを確認するにはどうすればよいですか?