Hi @Pranaya Rajalingari,
You may configure Logging in SQL Server Data Tools.
When you add the log to a package, you choose the log provider and the location of the log. The log provider specifies the format for the log data: for example, a SQL Server database or text file.
Integration Services includes the following log providers:
The Text File log provider, which writes log entries to ASCII text files in a comma-separated value (CSV) format. The default file name extension for this provider is .log.
- The SQL Server Profiler log provider, which writes traces that you can view using SQL Server Profiler. The default file name extension for this provider is .trc.
- The SQL Server log provider, which writes log entries to the sysssislog table in a SQL Server database. You may experience decreased performance if you log to a system database such as master or msdb. A good practice is to create a separate database for Integration Services logging.
The Windows Event log provider, which writes entries to the Application log in the Windows Event log on the local computer.
- The XML File log provider, which writes log files to an XML file. The default file name extension for this provider is .xml.
You can write log entries to the sysssislog table as mentioned.
Integration Services (SSIS) Logging
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.