DB population with one file #38
avishniakov-smwb
started this conversation in
Ideas
Replies: 1 comment
-
Hi @avishniakov-smwb, how did you try to pass the file into Firebolt? did you try to use any SDK or an HTTP call? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently we can't populate DB with a single SQL file, since Firebolt core does not support multiple statements in it. So I have to run population sql statement-by-statement. That is more or less fine until we recall that each time it raises up a connection, so auto statement split wouldn't work:
USE DATABASE testdb
won't be applied to next statements.Obviously there are ways like
-d
key forfbcli
command, or use fully-qualified name liketestdb.public.test_table
, but they all look weird.Are there any plans about first-class support for multi-statement files?
Beta Was this translation helpful? Give feedback.
All reactions