Skip to main content

SQL Query Errors


Invalid Namespace Error

invalid-namespace | IOMETEinvalid-namespace | IOMETE

When you encounter an Invalid Namespace error while running a query, it means your query is missing a valid database reference. This happens when:

  • You haven't specified a database in your query
  • The specified database doesn't exist
  • You don't have access to the specified database

To resolve this:

  1. Select a database from the dropdown menu in the top-right corner of the IOMETE SQL Editor
  2. OR explicitly include the database name in your query (e.g., SELECT * FROM database_name.table_name)

The database reference is required for all queries in IOMETE to ensure they execute in the correct context.