|
Forgot MySql password?
50 days ago
by kamal
Forgot the root password for mysql database. Here are easy steps to recover 1. Restart MySql database without password in safe mode /etc/init.d/mysql stop mysqld_safe --skip-grant-tables & 2. Change root password mysql -u root mysql> use mysql; mysql> update user set password="mypassword" where User ...
Kamal's Blog - kamalmeet.com
|
|
Taking Mysql Backups
51 days ago
by kamal
If you need to take a backup of myql database in sql format, it is pretty simple mysqldump -u myDatabaseUsername -p Password >backup.sql You will get the backup.sql file which you can restore anywhere mysql - u myDatabaseUser -p Pass < backup.sql or simply execute file from the mysql prompt @backup. ...
Kamal's Blog - kamalmeet.com
|
|
Migrating IBM DB2 from 32 to 64-bit platform
51 days ago
by niktips
The best way to move your database from one server to another is a backup/restore procedure. You can also use db2move utility but it’s not much of help here because it moves only the tables. If you use a built-in compression to reduce size of your backups which is a normal thing to do then if you’ll ...
Niktips's Blog - niktips.wordpress.com
|
|
CryptDB
51 days ago
by Valentin Fedulov
Не слишком давно я видел инфу от IBM, у них вроде как разработали методы гомоморфного шифрования данных. Тогда дискутировали неслабо, обсуждая применимость технологии. А нынче мы имеем рабочее решение, позволяющее хостить свои SQL-БД на вражеском железе. Ибо врагу достанется только зашифрованное неч ...
VSnake notes - vasnake.blogspot.com · Rank: 93,547 · 3 references
|