-
Notifications
You must be signed in to change notification settings - Fork 14.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Table [table_name] doesn't seem to exist, couldn't fetch metadata" #884
Comments
The error should be quite clear. Do you have that table in the db? Also friendly remainder that github issues are for reporting bugs not for support requests. There's a mailing list for that :) |
Exactly the same problem with postgresql. |
@topazas if you know what's wrong then please fix it and open a pull request, it would be great :) |
This should be something simple like your connection string (URL) isn't pointing to the right database (schema). That or maybe you have something funky going on in the table name (space, unicode, ...) |
Yesterday tried to upgrade caravel and dependencies (with pip), tested with couple PG users and connection string variants, no spaces or any funky symbols, other software uses the same user with no problems (RoR app, scala app with jdbc connection, simple python flask rest app). Caravel spits error messages :( Mainly, it cannot read table columns. It finds DB and tables, but cannot read column information. Today evening gonna debug and look further in to code... For now cannot confirm bug. |
I had this problem with a mssql db when the column type field was not long enough to hold a column's type I was trying to add. I edited the column directly in the db and promptly forgot about it... If I remember correctly there was a stack trace in the caravel log that sent me in that direction, so check log. |
@mistercrunch I just figured out that, I am actually able to load some tables from my database, |
this maybe coursed by some field type in you data table exceed the caravel table:table_columns,field:type 's size limit |
Notice: this issue has been closed because it has been inactive for 579 days. Feel free to comment and request for this issue to be reopened. |
I encountered this error after I replaced caravel db into MySQL. I am trying to add a mysql database that I want to work with. The database is loading properly as I see "seems ok" when I test the connection. But the error occurs when i want to add any valid table from my database.
The text was updated successfully, but these errors were encountered: