Relative Content

Tag Archive for sqlsnowflake-cloud-data-platform

Max LOB size (16777216) exceeded, actual size of parsed column is 37699772

with cte as ( select function_returning_array(start, end) as arr from my_table ) select array_agg(value) from cte, table (flatten(cte.arr)); The code above returns the error: Max LOB size (16777216) exceeded, actual size of parsed column is 37699772 How can I improve this code so it will run? I understand the error is coming from the dataset […]