Single snapshot for multiple CREATE OR REPLACE TABLE operations #441
-
Hello, I have a process that runs several Example
Today this produces two snapshots (one per table). My goal would be to have a single snapshot covering both operations in the same run/transaction. Is that possible? If yes, what’s the recommended way to achieve it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Howdy! Have you happened to try wrapping your sql queries in |
Beta Was this translation helpful? Give feedback.
Howdy! Have you happened to try wrapping your sql queries in
BEGIN TRANSACTION; ... queries! ... COMMIT;
? I think that may produce the results you are looking for!