Skip to content

Instantly share code, notes, and snippets.

@zikato
zikato / Parse TSQL Stack
Last active November 4, 2022 16:01
TSQL Scripts
DECLARE @stackOrFrame xml = 'Paste the <frames></frames> here'
;WITH
xmlShred AS
(
SELECT
COALESCE
(
CONVERT(varbinary(64), f.n.value('.[1]/@handle', 'varchar(max)'), 1),
CONVERT(varbinary(64), f.n.value('.[1]/@sqlhandle', 'varchar(max)'), 1)