h**********c 发帖数: 4120 | 1 mysql
1. mysqldump dumps a big file, not very big, several giga. --all-databases.
just want to recover one DB. using -o not working. Infact it recovered all
the databases.
So how to recover one DB from a big dump file of all DBs?
2. If we talk about Tera level DB, file size is Tera byte level. How to dump? |
M*****r 发帖数: 1536 | 2 A mysqldump file is just a text file full of SQL statements.
many many tools you can use to manipulate it (e.g. extract some contents):
sed, awk, ...
dump?
【在 h**********c 的大作中提到】 : mysql : 1. mysqldump dumps a big file, not very big, several giga. --all-databases. : just want to recover one DB. using -o not working. Infact it recovered all : the databases. : So how to recover one DB from a big dump file of all DBs? : 2. If we talk about Tera level DB, file size is Tera byte level. How to dump?
|
s**********o 发帖数: 14359 | 3 MYSQL就不是用来存储TERA BYTES的,你拿着一个小碗要装一锅的米饭,你看怎么办呢
?MYSQL好用的话,ORACLE不早就倒闭了。 |
B*****g 发帖数: 34098 | 4 mysql也是我教重要产品之一
【在 s**********o 的大作中提到】 : MYSQL就不是用来存储TERA BYTES的,你拿着一个小碗要装一锅的米饭,你看怎么办呢 : ?MYSQL好用的话,ORACLE不早就倒闭了。
|
s**********o 发帖数: 14359 | 5 所以更不能让免费的小碗抢了赚大钱的面盆的生意啊,我觉得以后改叫MYORACLE比较好
,笑闪。
【在 B*****g 的大作中提到】 : mysql也是我教重要产品之一
|
y****w 发帖数: 3747 | 6 sohu uses mysql?
【在 s**********o 的大作中提到】 : MYSQL就不是用来存储TERA BYTES的,你拿着一个小碗要装一锅的米饭,你看怎么办呢 : ?MYSQL好用的话,ORACLE不早就倒闭了。
|
B*****g 发帖数: 34098 | 7 据说很多公司都是拿来mysql自己改源代码,因为直接用效率低。不过无所谓了,早晚
都要转nosql
【在 y****w 的大作中提到】 : sohu uses mysql?
|
a9 发帖数: 21638 | 8 我知道新浪是用mysql的,好像没修改什么代码。
不过这些门户网站的数据库,基本上用处不太大,都静态化了。
办呢
【在 y****w 的大作中提到】 : sohu uses mysql?
|
y****w 发帖数: 3747 | 9 for sohu, sina, etc, I believe so.
不过无所谓了,早晚
【在 B*****g 的大作中提到】 : 据说很多公司都是拿来mysql自己改源代码,因为直接用效率低。不过无所谓了,早晚 : 都要转nosql
|
s**********o 发帖数: 14359 | 10 对,他们又不开发,海尔这种最近才知道MARKETING自己的用户
【在 y****w 的大作中提到】 : for sohu, sina, etc, I believe so. : : 不过无所谓了,早晚
|
f******h 发帖数: 159 | 11 用 DB SNAPSHOT RECOVERY DB, 不要用mysqldump, mysqldump 适合小的DB |
f******h 发帖数: 159 | 12 如果只RECOVER ONE DB, 那么只DUMP 那个DB 就可以, 没必要DUMP ALL DB |
h**********c 发帖数: 4120 | 13 Thanks,
it seems linux admin like mysqldump. Not very DBA.
【在 f******h 的大作中提到】 : 用 DB SNAPSHOT RECOVERY DB, 不要用mysqldump, mysqldump 适合小的DB
|
h**********c 发帖数: 4120 | 14 finally the problem is solved in a machine's memory has bigger memory than
the file size. |