Tag Archives: database

How to Duplicate a Table in FlameRobin

flamerobin-screenshot-1

FlameRobin is a lightweight, cross-platform database administration tool for Firebird databases. It is also NOT one of my favourite tools to use because of its very lightweight nature! Nevertheless, there are times I must use it, and use it I … Continue reading

Posted in Tutorials | Tagged , , , , , , , | 1 Comment

Ubuntu Terminal: Efficient Way to Copy Across a MySQL Database from One Server to Another

I often need to pull down a copy of a live MySQL database instance for development work on my local machine. Because my access to bandwidth is limited, I need to come up with the most efficient way of achieving this, and my method for achieving this is chronicled below – mainly so that I can refer to it when I forget! Continue reading

Posted in MySQL, Tutorials, Ubuntu | Tagged , , , , , , , , , , | Leave a comment

MySQL: How to Show the Collation and Character Set of a MySQL Database

To find out what collation and character set your database is using turns out to be pretty trivial thanks to MySQL’s SHOW VARIABLES SQL statement that reveals all the inner workings of your setup. Continue reading

Posted in MySQL | Tagged , , , , | Leave a comment

Ubuntu: How to Delete a MySQL Database via the Terminal

To delete a database from a MySQL server instance, we need to make a DROP DATABASE call against the server. Continue reading

Posted in MySQL, Tutorials | Tagged , , , , | Leave a comment

Ubuntu Terminal: How to Quickly Create a SQL Dump File from a MySQL Database

Backing up your MySQL database or generating a copy of it to shift around is quite a simple affair thanks to the powerful mysqldump command that ships with MySQL. Continue reading

Posted in Software & Websites, Tutorials | Tagged , , , , , , , | 2 Comments