Marcelo Soares
Marcelo Soares

Reputation: 187

How can I recover a recently expired BigQuery table?

A table I had been updating every day disappeared, and I found out it may have expired. I hadn't taken notice of it.

Is there a simple way to recover that table?

Upvotes: 0

Views: 499

Answers (1)

Yun Zhang
Yun Zhang

Reputation: 5503

If it is within 7 days, you may be able to fetch the data using time-travel: https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#for_system_time_as_of

And once you are able to read the data, you can save the result to a destination table as kind of a way to recover the table.

Upvotes: 1

Related Questions