Analyze SQL Server Integration Services (SSIS) packages and their dependencies.
SSIS Dependency Analyzer is a Python script that simplifies the analysis of SQL Server Integration Services (SSIS) packages. It extracts valuable information about connection managers, related tables, and procedures used in your SSIS packages, making it easier to understand and document your data integration workflows. Whether you are managing a complex ETL process or want to gain insights into your SSIS packages, this script has you covered.
- 💾 Connection Manager Data Extraction: Extracts connection manager data from SSIS package files.
- 🔍 Dependency Identification: Identifies related tables and procedures utilized within SSIS packages.
- 📁 Output in Multiple Formats: Generates a JSON file containing connection manager information and creates an Excel file with a detailed summary of SSIS package dependencies.
Getting started with SSIS Dependency Analyzer is a straightforward process:
-
Clone this repository to your local machine:
git clone https://github.com/fedisoltani/SSIS-Dependency-Analyzer.git
-
Navigate to the project directory:
cd SSIS-Dependency-Analyzer
-
Install the necessary Python packages using
pip
:pip install pandas openpyxl
-
Execute the script:
python main.py
The script also requires the following libraries, which are part of the standard Python library and are included by default:
os
(Operating System Interface): Used for interacting with the operating system.re
(Regular Expressions): A library for working with regular expressions.xml.etree.ElementTree
: A library for parsing XML files.pandas
(Python Data Analysis Library): A library for data manipulation and analysis.json
(JavaScript Object Notation): A library for handling JSON data.
Analyzing your SSIS packages is just a few steps away:
-
Run the script by executing the
main.py
file:python main.py
-
Follow the prompts to specify the paths to your SSIS package files and the desired output file paths for both JSON and Excel files.
-
The script will process your SSIS packages and generate JSON and Excel files that provide you with connection manager data and a comprehensive summary of SSIS package dependencies.
Customizing the script to meet your specific requirements is possible. You can modify the main.py
file to streamline your workflow further.
The script generates two essential output files:
cnx_mngrs.json
: A JSON file containing detailed connection manager information.dependencies.xlsx
: An Excel file summarizing SSIS package dependencies, including related connections, tables, and procedures.
- Fedi Soltani - GitHub
Contributions and suggestions to enhance this script are always welcome. Please visit the GitHub repository to report issues or contribute to the project's development.
We encourage feedback and suggestions to improve this script. If you encounter any issues or have ideas for enhancements, please don't hesitate to create an issue.
This script is provided as open-source software, and anyone is welcome to use it. Happy analyzing!