Is it possible to import big oracle database(600+ GB) to jupyter notebook?

青春壹個敷衍的年華 提交于 2020-01-03 19:41:17

问题


Is it possible to import a large database to the jupyter notebook? Is it restricted to certain types of database and is it possible to do with oracle database?


回答1:


Is it possible to import [600+ GB] to the jupyter notebook?

No. At the moment it seems Jupyter has a maximum limit of 100MB. Check out the source.

Notebooks are for sharing analyses and the data to drive them. They are not intended for the sort of heavy duty data crunching suggested by 600GB.

Is it restricted to certain types of database and is it possible to do with oracle database?

You can do anything with Jupyter that you could do with any other Python tool. So you can use the cx_oracle library to import data into a Pandas dataframe and work with that in Jupyter. The CERN site has some very useful information on working with Oracle, Pandas and Jupyter (and they wrangle huuuuge amounts of data). Find out more



来源:https://stackoverflow.com/questions/54781056/is-it-possible-to-import-big-oracle-database600-gb-to-jupyter-notebook

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!