February 12, 2022 at 5:30 am
Hi
I am creating SSIS pacakges to automate data collection. I want to print out statements to the console. I tried below but they are not working. Nothing shows up in the output window in Visual Studio 2019. How exactly do I get them to work?
System.Diagnostics.Debug.WriteLine("debug");
Console.WriteLine("console");
Thank you
February 12, 2022 at 4:02 pm
Jeffrey Williams
“We are all faced with a series of great opportunities brilliantly disguised as impossible situations.”
― Charles R. Swindoll
How to post questions to get better answers faster
Managing Transaction Logs
February 12, 2022 at 6:38 pm
As SSIS is a server-based technology, outputting messages to a console is largely pointless, as there will usually be no one there to see them. Write your messages to a database table, a file or use one of the methods suggested in the link provided by Jeffrey Williams.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply