Loading knowledgebase suggestions...
» Category: SQL
(Go back)
» Articles in this category:
|
|
|
|
|
Use these two queries to restrict MySQL user access to a single database, so that the user can only see / update / delete tables from that single database.
REVOKE ALL PRIVILEGES,GRANT OPTION from... |
|
|
Backup a mySQL database
mysqldump -uUSER_NAME -pPASSWORD db_name > file_name.sql
Restore a mySQL database
mysql -uUSER_NAME -pPASSWORD db_name < file_name.sql |
|
|
Restoring a data base to a foreign SQL server may cause user accounts defined in the database schema to be orphaned from an SQL login account.
To resolve the disconnect use the following TSQL
USE &l... |
|
|
OSX fails to connect mysql to ssh tunnel
SSH tunnelling is a useful method for connecting to a MySQL server which is behind a firewall and restricted to localhost users. i.e. A web server
#cre... |
|
|
|
|
|
|
Powered by Help Desk Software HESK, in partnership with SysAid Technologies
|