Blackbams Blog
development – digital arts – internet
Knowledge is free. No one may take possession of it.
Category "SQL"
Book this single category as RSS .
3. January 2018
Answer: Do not use PHPMyAdmin. This is how you do it with the command line: Importing an SQL dump file: mysql -u [user] -p [password] [database name] < [Path to Dump File] Exporting an SQL dump file: mysqldump -u [user] -p [password] [database name] > [Path to Dump File]
From category Allgemein, SQL, Tools || No comments yet »
This article on PostgreSQL is dedicated to my university course about database system, which I had to absolve this year. This post maybe useful as a quick syntactic introduction to PostgreSQL. It contains some useful examples and structures. This is not a complete tutorial. For really learning PostgreSQL you should consider reading the official documentation. […]
From category SQL || No comments yet »