I’ve always thought the sound volume on my Acer TravelMate 5530G has been very low even if I turned everything up to 100%. It has been ok and only a little bit annoying, but a few days ago we moved to another house for a month (we’re currently travelling in Thailand) with no TV so… Continue reading Low Volume on my Realtek Acer Laptop
Month: January 2009
Copy MySQL Database Structure without Data
Three easy steps to copy the structure of a MySQL database, i.e. the table definitions but no rows/records/data: 1. Create the new database, either from MySQL Query Browser (part of MySQL GUI Tools) or MySQL Command Line: CREATE DATABASE `new_database_name`; 2. Copy the database structure using the mysqldump command from a dos command prompt. Note:… Continue reading Copy MySQL Database Structure without Data