Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
RustyNails
Helper III
Helper III

Decrypting a SQL Server Column from Binary encryption during PBI Data Import

Hello. I have a SQL Server table with an encrypted Column that uses CEK_Auto1 Encryption key (deterministic). It converted the column into a Hex format (0x0126E595C47C89086...). In PowerBI I need to decrypt this column (my user should have been given the SQL privileges to do so). The Column's original datatype is nvarchar(100) but in reality it is just numbers being stored in nvarchar type.

 

In PBI the column shows up as "Binary". How do I Decrypt this column in PBI?

 

Thanks

1 ACCEPTED SOLUTION
dax
Community Support
Community Support

Hi RustyNails, 

According to yiur description, it seems that you want to convert binary to hex or text, right? If so, you could try below M code to see whether it work or not.

= Table.AddColumn(Source, "Custom", each Binary.ToText([a],BinaryEncoding.Base64))
or
= Table.AddColumn(#"Added Custom", "Custom.1", each Binary.ToText([a],BinaryEncoding.Hex))

 You could refer to Binary.ToText ,Converting Binary to hex value or numeric value  or this blog  for details.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
dax
Community Support
Community Support

Hi RustyNails, 

According to yiur description, it seems that you want to convert binary to hex or text, right? If so, you could try below M code to see whether it work or not.

= Table.AddColumn(Source, "Custom", each Binary.ToText([a],BinaryEncoding.Base64))
or
= Table.AddColumn(#"Added Custom", "Custom.1", each Binary.ToText([a],BinaryEncoding.Hex))

 You could refer to Binary.ToText ,Converting Binary to hex value or numeric value  or this blog  for details.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.