I have a SQL database from which I need to analyze a very big table. I would like to use python for that.
Unfortunately I cannot access the SQL database directly via python.
Are there any suggestions to what to export the table to be able to work with it?
I tried to export to SQL file and to import that into pandas dataframe but of course out of memory.
I tried to access the database from python directly using pymysql using
db=pymysql.connect(host="localhost", db="all_data")
but I get "can't connect to MySQL server Win Error 10061"?
File type is .sql.
Many thanks