Put this inside SQL Task and the last line (SELECT statement) is just a regular output to extract the values from. So, create a variable called entNum, type INT for "entNum" column and variable Name, type STRING for "Name". Once you have that set then those variables can be used throughout the package. DECLARE @x_temp TABLE ( rowID INT IDENTITY(0, 1) PRIMARY KEY clustered, [entNum] [int] NULL, [Name] [nvarchar](100) NULL)INSERT INTO @x_temp (entNum, Name) VALUES (1,'John Doe');INSERT INTO @x_temp (entNum, Name) VALUES (2,'Jane Doe');INSERT INTO @x_temp (entNum, Name) VALUES (3,'Susan Smith');INSERT INTO @x_temp (entNum, Name) VALUES (4,'Cindy Moore');INSERT INTO @x_temp (entNum, Name) VALUES (5,'Ramon Martinez');select entNum, Name from @x_temp