If you need to recreate tables, fields, field types, indexes, constraints etc. I would suggest following a relevant Snowflake migration guide: Snowflake Resource Library.
If you only need to move data into an already created schema in Snowflake then:
Create and ODBC connection to Snowflake, choose "Other SQL" dialect (Snowflake SQL dialect will be supported starting from version 4.6)
Create a list of tables by querying the database metadata table
Iterate across the list:
3.1) Import using the "Import from database" with a custom SQL query, such as SELECT * FROM {TableName} where parameter {TableName} is a table name from the list assigned in the iteration
3.2) Export into a CSV file
3.3) (Optionally) Upload the CSV file into a cloud storage supported by Snowflake
3.4) Use the "Database command" action, command "Custom SQL" to run a bulk upload SQL statement in Snowflake to import the CSV file into Snowflake.