Just create the following view:
CREATE VIEW [dbo].[DeserializedCommits] AS SELECT [StreamId] ,[StreamRevision] ,[Items] ,[CommitId] ,[CommitSequence] ,[CommitStamp] ,[Dispatched] ,CAST([Headers] AS VARCHAR(MAX)) AS [Headers] ,CAST([Payload] AS VARCHAR(MAX)) AS [Payload] FROM [dbo].[Commits]
You can request your event store for specific events using LIKE in the Payload column.
Jakub konecki
source share