1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-06 22:15:23 +02:00
tldr/pages/common/snowsql.md
Managor d1fa35edf6
common/*: reduce usage of "command-line" (part 2) (#16950)
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2025-06-29 11:47:23 +03:00

24 lines
895 B
Markdown

# snowsql
> SnowSQL client for Snowflake's Data Cloud.
> More information: <https://docs.snowflake.com/en/user-guide/snowsql.html>.
- Connect to a specific instance at <https://account.snowflakecomputing.com> (password can be provided in prompt or configuration file):
`snowsql --accountname {{account}} --username {{username}} --dbname {{database}} --schemaname {{schema}}`
- Connect to an instance specified by a specific configuration file (defaults to `~/.snowsql/config`):
`snowsql --config {{path/to/configuration_file}}`
- Connect to the default instance using a token for multi-factor authentication:
`snowsql --mfa-passcode {{token}}`
- Execute a single SQL query or SnowSQL command on the default connection (useful in shell scripts):
`snowsql --query '{{query}}'`
- Execute commands from a specific file on the default connection:
`snowsql --filename {{path/to/file.sql}}`