Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Recently, in the last few days, we're having lot's of errors about "Future data is not yet available for table " when running a

CREATE OR REPLACE TABLE <tbl name> CLONE <db>.<schema>.tmp_<tbl name> COPY GRANTS

query. This was happening out-of-the-blue and there's no any indication about this specific error in the documentation or in the knowledge base.

What's the error in here? To what is it referring to and how can we avoid it?

Thanks!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

The tables you want to clone seem to be marked as dropped. Probably undropping your table is helping: https://docs.snowflake.com/en/sql-reference/sql/undrop-table.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...