Hello!
I recently uploaded a fairly large table into mydb (~3.5e6 sources). And now I'm stuck because I can't operate with it in any way. I need to do a crossmatch with some Datalab tables (it doesn't work). I can't even list first 10 rows of it with a really simple sql query:
q = '''select * from mydb://table limit 10'''
convert(qc.query(sql=q))
I even can't drop it from mydb. The only thing that works is print(qc.mydb_list('table')).
Tank you in advance!