<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: QUESTION::LAKEHOUSE::BINARY COLUMN in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3866471#M575</link>
    <description>&lt;P&gt;@Anonymous&lt;/a&gt;&amp;nbsp;Thanks, but I've done enough software development in a previous life to know what System.Byte[] means.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That was not my question.&amp;nbsp; The question is:&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is this really a good UX for all those users who do not have my software dev background?&amp;nbsp; In other words, is the GUI supposed to show the content of a binary column as 'System.Byte[]'?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Couple days ago that's not how the column was displayed.&amp;nbsp; That's not how it is displayed in a SQL Server DB client such as DBeaver. And that's not how it is displayed in PBI Power Query Editor.&amp;nbsp; Aren't these enough hints to suggest that this is not the way to display a snapshot for type binary?&lt;BR /&gt;&lt;BR /&gt;Further, why not auto detect if the binary represent an image and automatically transform it to type text during the pipeline Copy data process since PBI Desktop can only handle such data when it is of type text, ie show the picture data in a report???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And finally, as a former GUI developer myself, this is horrible UX.&amp;nbsp; I trust I do not have to explain why as it is so self-evident.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Apr 2024 20:25:56 GMT</pubDate>
    <dc:creator>Element115</dc:creator>
    <dc:date>2024-04-24T20:25:56Z</dc:date>
    <item>
      <title>QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3863416#M573</link>
      <description>&lt;P&gt;Is this the expected display behavior in a LH view pane for a column of type binary?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-04-23 155123.jpg" style="width: 159px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1084646i3CD238C7EFD8CE12/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-04-23 155123.jpg" alt="Screenshot 2024-04-23 155123.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2024 19:54:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3863416#M573</guid>
      <dc:creator>Element115</dc:creator>
      <dc:date>2024-04-23T19:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3864314#M574</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/268213"&gt;@Element115&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for using Fabric Commnity.&lt;BR /&gt;This is an expected behavior in Fabric Lakehouse.&lt;/P&gt;
&lt;P data-sourcepos="1:1-1:199"&gt;System.Byte[] you encounter in programming is a data type specifically used to represent raw binary data. It's essentially an array that stores a collection of individual bytes.&lt;/P&gt;
&lt;P data-sourcepos="3:1-3:36"&gt;Here's a breakdown of what it means:&lt;/P&gt;
&lt;UL data-sourcepos="5:1-7:0"&gt;
&lt;LI data-sourcepos="5:1-5:174"&gt;&lt;STRONG&gt;System.Byte:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;This refers to the built-in&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;Byte&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;data type, which represents a single unsigned 8-bit integer. This means each value in the array can range from 0 to 255.&lt;/LI&gt;
&lt;LI data-sourcepos="6:1-7:0"&gt;&lt;STRONG&gt;[]:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;The square brackets indicate it's an array, which is a collection of elements of the same data type. In this case, the array holds multiple&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;Byte&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;values.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-sourcepos="8:1-8:298"&gt;Hope this helps. Please let me know if you have any further questions.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 06:10:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3864314#M574</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-24T06:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3866471#M575</link>
      <description>&lt;P&gt;@Anonymous&lt;/a&gt;&amp;nbsp;Thanks, but I've done enough software development in a previous life to know what System.Byte[] means.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That was not my question.&amp;nbsp; The question is:&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is this really a good UX for all those users who do not have my software dev background?&amp;nbsp; In other words, is the GUI supposed to show the content of a binary column as 'System.Byte[]'?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Couple days ago that's not how the column was displayed.&amp;nbsp; That's not how it is displayed in a SQL Server DB client such as DBeaver. And that's not how it is displayed in PBI Power Query Editor.&amp;nbsp; Aren't these enough hints to suggest that this is not the way to display a snapshot for type binary?&lt;BR /&gt;&lt;BR /&gt;Further, why not auto detect if the binary represent an image and automatically transform it to type text during the pipeline Copy data process since PBI Desktop can only handle such data when it is of type text, ie show the picture data in a report???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And finally, as a former GUI developer myself, this is horrible UX.&amp;nbsp; I trust I do not have to explain why as it is so self-evident.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 20:25:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3866471#M575</guid>
      <dc:creator>Element115</dc:creator>
      <dc:date>2024-04-24T20:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3866533#M576</link>
      <description>&lt;P&gt;Besides, the lakehouse SQL endpoint does show the content of the same binary column as an hexadecimal string.&amp;nbsp; So having the LH data preview pane show System.Byte[] is total UX nonsense.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-04-24 165805.jpg" style="width: 901px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1085526i58CA2A6622F4C237/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-04-24 165805.jpg" alt="Screenshot 2024-04-24 165805.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2024 21:00:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3866533#M576</guid>
      <dc:creator>Element115</dc:creator>
      <dc:date>2024-04-24T21:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3869004#M577</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/268213"&gt;@Element115&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for the feedback.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate if you could share the feedback on our feedback channel, which would be open for the user community to upvote &amp;amp; comment on. This allows our product teams to effectively prioritize your request against our existing feature backlog and gives insight into the potential impact of implementing the suggested feature.&lt;/P&gt;
&lt;P&gt;Feedback Link: &amp;nbsp;&lt;A class="" title="https://ideas.fabric.microsoft.com/" href="https://ideas.fabric.microsoft.com/" target="_blank" rel="noreferrer noopener nofollow" aria-label="Link https://ideas.fabric.microsoft.com/"&gt;https://ideas.fabric.microsoft.com/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Please let me know if you have any other questions.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2024 17:38:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3869004#M577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-25T17:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3875201#M578</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/268213"&gt;@Element115&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;We haven’t heard from you on the last response and was just checking back to see if you could provide the feedback. Otherwise, will respond back with the more details and we will try to help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 10:21:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3875201#M578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-29T10:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3875953#M579</link>
      <description>&lt;P&gt;I posted the permalink of this topic on&amp;nbsp; &lt;A href="https://ideas.fabric.microsoft.com/" target="_blank"&gt;https://ideas.fabric.microsoft.com/&lt;/A&gt;&amp;nbsp;.&amp;nbsp; Now we wait, I guess.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 14:37:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/3875953#M579</guid>
      <dc:creator>Element115</dc:creator>
      <dc:date>2024-04-29T14:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/4052103#M3176</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/268213"&gt;@Element115&lt;/a&gt;&amp;nbsp;Have you found the correct way of readin this type of data back in pyspark notebook?&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jul 2024 22:02:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/4052103#M3176</guid>
      <dc:creator>arlindTrystar</dc:creator>
      <dc:date>2024-07-20T22:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/4054409#M3199</link>
      <description>&lt;P&gt;I have not tried.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 17:45:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/4054409#M3199</guid>
      <dc:creator>Element115</dc:creator>
      <dc:date>2024-07-22T17:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: QUESTION::LAKEHOUSE::BINARY COLUMN</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/4056455#M3217</link>
      <description>&lt;P&gt;for anyone interested:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from pyspark.sql import functions as F
df = spark.read.table('tableName')
df = df.withColumn('columnName', F.hex('columnName')) &lt;/LI-CODE&gt;&lt;P&gt;assuming that those bytes represent a hexadecimal value, which was my case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 13:02:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/QUESTION-LAKEHOUSE-BINARY-COLUMN/m-p/4056455#M3217</guid>
      <dc:creator>arlindTrystar</dc:creator>
      <dc:date>2024-07-23T13:02:32Z</dc:date>
    </item>
  </channel>
</rss>

