Converting a NTFS Dynamic Disk back into a Basic Disk without having to erase data?

Ever had the need to turn a dynamic disk into a basic disk, perhaps to install an OS on it, and did not want to have the entire data on it erased? It’s actually kind of dumb that you can convert basic drives to dynamic drives without data alteration, but not the other way around.… Continue reading Converting a NTFS Dynamic Disk back into a Basic Disk without having to erase data?

5 Easy Steps to Reset a MySQL “root” Password

1. Stop the mysqld daemon process. 2. Start the mysqld daemon process with the –skip-grant-tables option. 3. Start the mysql client with the -u root option. 4. Execute the UPDATE mysql.user SET Password=PASSWORD(‘password’) WHERE User=’root’; 5. Execute the FLUSH PRIVILEGES; command. These steps reset the password for the “root” account to “password”. To change the… Continue reading 5 Easy Steps to Reset a MySQL “root” Password

Published
Categorized as MySQL