Viewing 3 posts - 1 through 3 (of 3 total)
Not working with a lot of data here, but I appreciate the 2nd solution. Always nice to have that in your back pocket 🙂
July 12, 2011 at 1:24 pm
kramaswamy (7/12/2011)
DECLARE @Message VARCHAR(MAX)
DECLARE @ResultsTable TABLE
(
ID INT IDENTITY PRIMARY KEY,
[Message] VARCHAR(MAX)
)
INSERT INTO @ResultsTable ([Message])
VALUES...
July 12, 2011 at 12:55 pm
Ahh, you are right, was missing a character 🙂
My issue now is, other users running it can not connect to the Target SQL Server Database.
Are credentials stored in the package?
April 13, 2011 at 8:24 am
Viewing 3 posts - 1 through 3 (of 3 total)