Visualizzazione degli articoli taggati 'MySQL'

 How to Recover MySQL Root Password in DirectAdmin

Root credentials for MySQL are stored in plain text in the file...

 How to automate MySQL backup using R1soft-Idera backup

Plain R1soft-Idera backup does not directly support mySQL database backup. But with this...

 Come effettuare il backup di un database per mezzo di phpMyAdmin

PhpMyAdmin permette di effettuare il backup ("dump") di un database MySQL in maniera molto...

 How to Backup Your MySQL Database Using PHP

This simple PHP script will provide a full dump of your MySQL database.You need to provide...

 How to generate random string in MySQL

If you need to create random string (i.e., to be used as password) in MySQL, you can easily do it...

 How to import a db dump in a database with different name

 How to repair tables in MySQL

Table corruption in MySQL is a very frequent issue, which primarily happens due to failed/forced...

 How to restart MySQL service in Plesk

To restart MySQL service in Plesk: login in Plesk select "Server management" => "Tools...

 MySQL Resources

  Documentazione ufficiale tradotta in italiano:...

 script php per verificare la funzionalità del database MySQL (PHP 5.x)

Questo semplice script php verifica la funzionalità di un database MySQL Come risultato, fornisce...

 PHP Script to Test MySQL Database Connectivity (PHP 7.x)

<?php $mysqli = new mysqli("localhost", "user", "password", "dbname"); if...