Reputation: 17793
While taking a dump, is it possible to specify that we need 10% of the the data(or a fixed amount of records from each table)? The problem is I have a database with large amounts of data and the dump becomes very large. I want to dump so that the dump file will be smaller(not all data is needed).
Upvotes: 2
Views: 129
Reputation: 705
SELECT * FROM your_table
LIMIT 0, 5
0 -> the starting point 5 -> count of records.
Upvotes: 0