Skip to content

Instantly share code, notes, and snippets.

View apop880's full-sized avatar

Alex Popoutsis apop880

View GitHub Profile
@apop880
apop880 / COPY_FROM_SNOWFLAKE.sql
Created December 22, 2021 05:55
A sample stored procedure for moving data from Snowflake to SQL Server using Snowflake as a linked server. This is a companion for my blog post at https://apop.tech/posts/moving-data-from-snowflake-to-sql-server
USE [STAGE]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: Alex Popoutsis