i have a db in phpmyadmin having 3000000 records. i want to export this to another pc. now when i export this only 200000 entries exported into .sql file and that is also not imported on the other pc.
相关问题
- NOT DISTINCT query in mySQL
- Flush single app django 1.9
- How to reimport module with ES6 import
- keeping one connection to DB or opening closing pe
- Mysql-installer showing error : Memoy could not be
相关文章
- Connection pooling vs persist connection mysqli
- Java “static import” vs. “import static” in Java 8
- How do I add a Python import path permanently?
- Speed up sqlFetch()
- How Do I Seed My Database in the setupBeforeClass
- I set a MySQL column to “NOT NULL” but still I can
- Where in Django can I run startup code that requir
- Google OAuth 2.0 User id datatype for MYSQL
Answering this for anyone else who lands here. If you can only use phpMyAdmin because you do not have SSH access to the MySQL service or do not know how to use command line tools, then this might help. However as the comment above suggest, exporting a database of this size would be far easer with mysqldump.
phpMyAdmin (I'm using v3.5.6) allows tables to be exported individually like so:
phpMyAdmin also allows records to be exported individially or in groups, so you could for example, export just 10 records from a table with 100,000.
Hope that helps someone new to phpMyAdmin or DBA via the web.