In SQL Server ,One of my table has a text column named description and it contains the value in one particular row as
"addText : PCS 10.17.16.5 is activated notificationId : 429 probableCause : TransmitFailure(54) severity : severe(3) " 
From the mentioned Text I need to fetch the value for the each key seperately and display the result in a seperate column .
I used the below SQL Query but it is not working !
SELECT  SPLIT(description,"_") FROM [dbo].[Stg_Event]
# (or)
SELECT  Split(description,':') FROM [dbo].[Stg_Event]
please help..Thanks in Advance
 
    