Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex DataLens
  • Audit Trails events

Requested database column does not exist

Written by
Yandex Cloud
Updated at October 11, 2024

ERR.DS_API.DB.COLUMN_DOES_NOT_EXIST

Nonexistent field used.

Possible causes:

  • A new field was added to the data source but the dataset has not been updated. To update the dataset, click Update fields.

  • When building a dataset from a ClickHouse® connection, an SQL subquery is used. If this is the case, set an alias for the selected fields.

    Example:

    SELECT DISTINCT
      id as offer_id,
      upper(proposed_meta)
      FROM
    

    DataLens may incorrectly identify the upper(proposed_meta) field, so you need to set an alias for it:

    SELECT DISTINCT
      id as offer_id,
      upper(proposed_meta) as upper_proposed_meta
      FROM
    
  • When building a dataset, the SQL subquery makes an implicit reference to the selected fields (SELECT * FROM). To avoid an error, explicitly list the required fields in the SELECT clause.

ClickHouse® is a registered trademark of ClickHouse, Inc.

Was the article helpful?

© 2025 Direct Cursus Technology L.L.C.