摘要: pandas中read_xxx的块读取功能 pandas设计时应该是早就考虑到了这些可能存在的问题,所以在read功能中设计了块读取的功能,也就是不会一次性把所有的数据都放到内存中来,而是分块读到内存中,最后再将块合并到一起,形成一个完整的DataFrame。 def read_sql_table( 阅读全文
posted @ 2019-11-19 17:04 wqbin 阅读(4324) 评论(0) 推荐(0)
摘要: 查看所有mysql数据库表和索引大小 mysql查看当前所有的数据库和索引大小 select table_schema, concat(truncate(sum(data_length)/1024/1024,2),' mb') as data_size, concat(truncate(sum(in 阅读全文
posted @ 2019-11-19 10:52 wqbin 阅读(1608) 评论(0) 推荐(0)