Preset Issue Codes
  • 16 Nov 2022
  • 6 Minutes to read
  • Dark
    Light

Preset Issue Codes

  • Dark
    Light

Article Summary

Below is a reference table of issue codes that can potentially appear when connecting or accessing data.

If you need assistance, please let us know via a Support Ticket so that we can get you up & running as quickly as possible!

Issue No.MessageDescription
1000The datasource is too large to query.It's likely your datasource has grown too large to run the current query, and is timing out. You can resolve this by reducing the size of your datasource or by modifying your query to only process a subset of your data.
1001The database is under an unusual load.Your query may have timed out because of unusually high load on the database engine. You can make your query simpler, or wait until the database is under less load and try again.
1002The database returned an unexpected error.Your query failed because of an error that occurred on the database. This may be due to a syntax error, a bug in your query, or some other internal failure within the database. This is usually not an issue within Superset, but instead a problem with the underlying database that serves your query.
1003There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.Your query failed because of a syntax error within the underlying query. Please validate that all columns or tables referenced within the query exist and are spelled correctly.
1004The column was deleted or renamed in the database.Your query failed because it is referencing a column that no longer exists in the underlying datasource. You should modify the query to reference the replacement column, or remove this column from your query.
1005The table was deleted or renamed in the database.Your query failed because it is referencing a table that no longer exists in the underlying database. You should modify your query to reference the correct table.
1006One or more parameters specified in the query are missing.Your query was not submitted to the database because it's missing one or more parameters. You should define all the parameters referenced in the query in a valid JSON document. Check that the parameters are spelled correctly and that the document has a valid syntax.
1007The hostname provided can't be resolved.The hostname provided when adding a new database is invalid and cannot be resolved. Please check that there are no typos in the hostname.
1008The port is closed.The port provided when adding a new database is not open. Please check that the port number is correct, and that the database is running and listening on that port.
1009The host might be down, and cannot be reached on the provided port.The host provided when adding a new database doesn't seem to be up. Additionally, it cannot be reached on the provided port. Please check that there are no firewall rules preventing access to the host.
1010Superset encountered an error while running a command.Something unexpected happened, and Superset encountered an error while running a command. Please reach out to your administrator.
1011Superset encountered an unexpected error.Something unexpected happened in the Superset backend. Please reach out to your administrator.
1012The username provided when connecting to a database is not valid.The user provided a username that doesn't exist in the database. Please check that the username is typed correctly and exists in the database.
1013The password provided when connecting to a database is not valid.The user provided a password that is incorrect. Please check that the password is typed correctly.
1014Either the username or the password used are incorrect.Either the username provided does not exist or the password was written incorrectly. Please check that the username and password were typed correctly.
1015Either the database is spelled incorrectly or does not exist.Either the database was written incorrectly or it does not exist. Check that it was typed correctly.
1016The schema was deleted or renamed in the database.The schema was either removed or renamed. Check that the schema is typed correctly and exists.
1017The user doesn't have the proper permissions to connect to the databaseWe were unable to connect to your database. Please confirm that your service account has the Viewer and Job User roles on the project.
1018One or more parameters needed to configure a database are missing.Not all parameters required to test, create, or edit a database were present. Please double check which parameters are needed, and that they are present.
1019The submitted payload has the incorrect format.Please check that the request payload has the correct format (eg, JSON).
1020The submitted payload has the incorrect schema.Please check that the request payload has the expected schema.
1021Results backend needed for asynchronous queries is not configured.Your instance of Superset doesn't have a results backend configured, which is needed for asynchronous queries. Please contact an administrator for further assistance.
1022Database does not allow data manipulation.Only SELECT statements are allowed against this database. Please contact an administrator if you need to run DML (data manipulation language) on this database.
1023CTAS (create table as select) doesn't have a SELECT statement at the end.The last statement in a query run as CTAS (create table as select) MUST be a SELECT statement. Please make sure the last statement in the query is a SELECT.
1024CVAS (create view as select) query has more than one statement.When running a CVAS (create view as select) the query should have a single statement. Please make sure the query has a single statement, and no extra semi-colons other than the last one.
1025CVAS (create view as select) query is not a SELECT statement.When running a CVAS (create view as select) the query should be a SELECT statement. Please make sure the query has a single statement and it's a SELECT statement.
1026Query is too complex and takes too long to run.The submitted query might be too complex to run under the time limit defined by your Superset administrator. Please double check your query and verify if it can be optimized. Alternatively, contact your administrator to increase the timeout period.
1027The database is currently running too many queries.The database might be under heavy load, running too many queries. Please try again later, or contact an administrator for further assistance.
1028One or more parameters specified in the query are malformatted.The query contains one or more malformed template parameters. Please check your query and confirm that all template parameters are surround by double braces, for example, "{{ ds }}". Then, try running your query again.
1029The object does not exist in this database.Either the schema, column, or table do not exist in the database.
1030The query potentially has a syntax error.The query might have a syntax error. Please check and run again.
1031The results backend no longer has the data from the query.The results from the query might have been deleted from the results backend after some period. Please re-run your query.
1032The query associated with the results was deleted.The query associated with the stored results no longer exists. Please re-run your query.
1033The results stored in the backend were stored in a different format, and no longer can be deserialized.The query results were stored in a format that is no longer supported. Please re-run your query.
1034The database port provided is invalid.Please check that the provided database port is an integer between 0 and 65535 (inclusive).
1035Failed to start remote query on a worker.The query was not started by an asynchronous worker. Please reach out to your administrator for further assistance.
1036The database was deleted.The operation failed because the database referenced no longer exists. Please reach out to your administrator for further assistance.

Was this article helpful?