How to load data from SFTP to Snowflake destination
Learn how to use Airbyte to synchronize your SFTP data into Snowflake destination within minutes.


Building your pipeline or Using Airbyte
Airbyte is the only open source solution empowering data teams to meet all their growing custom business demands in the new AI era.
Building in-house pipelines
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
After Airbyte
- Reliable and accurate
- Extensible and scalable for all your needs
- Deployed and governed your way
Start syncing with Airbyte in 3 easy steps within 10 minutes



Take a virtual tour
Demo video of Airbyte Cloud
Demo video of AI Connector Builder
Setup Complexities simplified!
Simple & Easy to use Interface
Airbyte is built to get out of your way. Our clean, modern interface walks you through setup, so you can go from zero to sync in minutes—without deep technical expertise.
Guided Tour: Assisting you in building connections
Whether you’re setting up your first connection or managing complex syncs, Airbyte’s UI and documentation help you move with confidence. No guesswork. Just clarity.
Airbyte AI Assistant that will act as your sidekick in building your data pipelines in Minutes
Airbyte’s built-in assistant helps you choose sources, set destinations, and configure syncs quickly. It’s like having a data engineer on call—without the overhead.
What sets Airbyte Apart
Modern GenAI Workflows
Streamline AI workflows with Airbyte: load unstructured data into vector stores like Pinecone, Weaviate, and Milvus. Supports RAG transformations with LangChain chunking and embeddings from OpenAI, Cohere, etc., all in one operation.
Move Large Volumes, Fast
Quickly get up and running with a 5-minute setup that enables both incremental and full refreshes for databases of any size, seamlessly scaling to handle large data volumes. Our optimized architecture overcomes performance bottlenecks, ensuring efficient data synchronization even as your datasets grow from gigabytes to petabytes.
An Extensible Open-Source Standard
More than 1,000 developers contribute to Airbyte’s connectors, different interfaces (UI, API, Terraform Provider, Python Library), and integrations with the rest of the stack. Airbyte’s AI Connector Builder lets you edit or add new connectors in minutes.
Full Control & Security
Airbyte secures your data with cloud-hosted, self-hosted or hybrid deployment options. Single Sign-On (SSO) and Role-Based Access Control (RBAC) ensure only authorized users have access with the right permissions. Airbyte acts as a HIPAA conduit and supports compliance with CCPA, GDPR, and SOC2.
Fully Featured & Integrated
Airbyte automates schema evolution for seamless data flow, and utilizes efficient Change Data Capture (CDC) for real-time updates. Select only the columns you need, and leverage our dbt integration for powerful data transformations.
Enterprise Support with SLAs
Airbyte Self-Managed Enterprise comes with dedicated support and guaranteed service level agreements (SLAs), ensuring that your data movement infrastructure remains reliable and performant, and expert assistance is available when needed.
What our users say

Raman Singh
Predictable, straightforward pricing model that simplified budgeting and significantly reduced overall spend

Chase Zieman

“Airbyte helped us accelerate our progress by years, compared to our competitors. We don’t need to worry about connectors and focus on creating value for our users instead of building infrastructure. That’s priceless. The time and energy saved allows us to disrupt and grow faster.”

Rupak Patel
"With Airbyte, we could just push a few buttons, allow API access, and bring all the data into Google BigQuery. By blending all the different marketing data sources, we can gain valuable insights."
How to Sync to Manually
Step 1: Prepare the Data on SFTP Server
1. Log in to the SFTP server: Use an SFTP client or command-line tool to connect to the SFTP server with the appropriate credentials.
2. Locate the data files: Navigate to the directory where the data files you want to move are stored.
3. Export the data (if necessary): If the data isn't already in a flat-file format (CSV, JSON, etc.), export it to a format that Snowflake can ingest.
4. Compress the data (optional): To speed up the transfer, you can compress the data files using a tool like `gzip`.
Step 2: Transfer Data from SFTP to Cloud Storage
Snowflake can directly load data from cloud storage services like Amazon S3, Google Cloud Storage, or Azure Blob Storage. Choose the one that is most suitable for your Snowflake account and region.
If using Amazon S3:
1. Install AWS CLI: Install and configure the AWS Command Line Interface (CLI) with the necessary permissions to access your S3 bucket.
2. Upload to S3: Use the AWS CLI to upload the data files from your local machine to the appropriate S3 bucket using the `aws s3 cp` or `aws s3 sync` command.
If using Google Cloud Storage:
1. Install Google Cloud SDK: Install and configure the Google Cloud SDK with the necessary permissions to access your Cloud Storage bucket.
2. Upload to GCS: Use the `gsutil cp` command to upload the data files from your local machine to the appropriate Cloud Storage bucket.
If using Azure Blob Storage:
1. Install Azure CLI: Install and configure the Azure Command Line Interface (CLI) with the necessary permissions to access your Blob Storage container.
2. Upload to Blob Storage: Use the `az storage blob upload` command to upload the data files from your local machine to the appropriate Blob Storage container.
Step 3: Load Data into Snowflake
Once the data is in cloud storage, you can load it into Snowflake using the COPY INTO command.
1. Log in to Snowflake: Use the Snowflake web interface or a SQL client that supports Snowflake to log in to your account.
2. Create a File Format: Define a file format that matches the format of your data files:
```sql
CREATE FILE FORMAT my_file_format
TYPE = 'CSV'
FIELD_DELIMITER = ','
SKIP_HEADER = 1
NULL_IF = ('\\N');
```
3. Create a Stage: Create a stage object that points to the location of the files in the cloud storage:
```sql
-- For Amazon S3
CREATE STAGE my_stage
URL = 's3://mybucket/data/'
FILE_FORMAT = my_file_format
CREDENTIALS = (AWS_KEY_ID = 'my_aws_key_id' AWS_SECRET_KEY = 'my_aws_secret');
-- For Google Cloud Storage
CREATE STAGE my_stage
URL = 'gcs://mybucket/data/'
FILE_FORMAT = my_file_format
CREDENTIALS = (GCS_CREDENTIALS = 'my_gcs_credentials_json');
-- For Azure Blob Storage
CREATE STAGE my_stage
URL = 'azure://myaccount.blob.core.windows.net/mycontainer/data/'
FILE_FORMAT = my_file_format
CREDENTIALS = (AZURE_SAS_TOKEN = 'my_azure_sas_token');
```
4. Create a Target Table: Create a table in Snowflake to hold the data:
```sql
CREATE TABLE my_table (
column1 STRING,
column2 STRING,
...
);
```
5. Copy Data into Snowflake: Use the COPY INTO command to load the data from the stage into the Snowflake table:
```sql
COPY INTO my_table
FROM @my_stage
FILE_FORMAT = (FORMAT_NAME = my_file_format);
```
6. Verify the Data Load: After the COPY INTO command completes, verify that the data has been loaded correctly:
```sql
SELECT * FROM my_table LIMIT 10;
```
Step 4: Clean Up
After the data has been successfully loaded into Snowflake, you may want to clean up any temporary files or data that is no longer needed.
1. Remove Temporary Files: If you created any temporary files during the process, make sure to delete them from your local machine and cloud storage.
2. Close SFTP Connection: Log out from the SFTP server to ensure security.
3. Review Snowflake Costs: Loading data into Snowflake may incur costs, so review your usage and consider setting up resource monitors to manage expenses.
Remember to handle any sensitive credentials securely and to rotate them periodically. Also, consider automating this process for recurring data transfers using scripting and scheduling tools.