问题
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