Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spaghettidba/extendedtsqlcollector
Custom collector types to extend and simplify the features offered by the built-in SQL Server Data Collector and read data from Extended Events and/or queries.
https://github.com/spaghettidba/extendedtsqlcollector
collector collector-types extended-events gui sql-server
Last synced: about 2 months ago
JSON representation
Custom collector types to extend and simplify the features offered by the built-in SQL Server Data Collector and read data from Extended Events and/or queries.
- Host: GitHub
- URL: https://github.com/spaghettidba/extendedtsqlcollector
- Owner: spaghettidba
- License: lgpl-2.1
- Created: 2017-07-26T16:47:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-22T17:16:23.000Z (almost 7 years ago)
- Last Synced: 2024-06-16T13:31:49.236Z (7 months ago)
- Topics: collector, collector-types, extended-events, gui, sql-server
- Language: SQLPL
- Homepage:
- Size: 852 KB
- Stars: 17
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: license.md
Awesome Lists containing this project
README
# Extended T-SQL Collector
_Custom collector types to extend and simplify the features offered by the built-in SQL Server Data Collector and read data from Extended Events and/or queries._**Extended T-SQL Collector = Extended Events + Data Collector**
**Extended T-SQL Collector** includes a XEReader collector type that lets you collect data from Extended Events sessions. This is the easiest way around to save Extended Events to a table.
SQL Server ships with a built-in T-SQL Collector Type that lets you collect data based on an custom T-SQL statement. However, it doesn't let you collect data in **any** fomat: you are limited to the data types accepted by the intermediate format used to store the cache files (SSIS Raw Files, which do not allow BLOB data).
To overcome this limitation, **Extended T-SQL Collector** offers a T-SQL query collector type that uses a different cache format and lets you collect XML and varchar(max)/nvarchar(max) columns.
When it comes to performance tuning and troubleshooting, the most interesting data is available in SQL Server as XML. With this collector type, you can easily collect and upload XML data to your MDW instance.
The Collection Set Manager utility lets you manage:
* installation of the collector type to the target SQL Server instance
* edit collection sets
* edit collection items
* edit collector typesCollection sets and collection items can also be created via script. You can find examples in the [documentation](Documentation/Documentation.md).
# Screenshots
You can see what the GUI looks like by visiting the [Screenshots](Documentation/Screenshots.md) page
# Features
* ExtendedTSQLCollector - a Collector Type that lets you collect BLOB data from a T-SQL query
* ExtendedXEReaderCollector - a Collector Type to collect data directly from an Extended Events session
* ConnectionSetManager - a GUI utility to manage the components of data collection on a target instance# Requirements
* SSIS - the target machine must have SSIS installed, as some collection packages require tasks not included in the Database Engine installation
# Documentation
The complete description of the collector types and sample code to create custom collection sets can be found in the [documentation](Documentation/Documentation.md)