<?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: Need to define the struct and array of struct field colum in the delta live table(dlt) in databr in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58198#M31045</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/75976"&gt;@Lakshay&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for reply,&lt;/P&gt;&lt;P&gt;Yes, my transformation query(i.e dlt view) will have the columns with type struct field like(Column_name) below&lt;/P&gt;&lt;P&gt;Column_O STRING,&lt;/P&gt;&lt;P&gt;Column_name STRUCT&amp;lt; vaccines&lt;BR /&gt;ARRAY&amp;lt;&lt;BR /&gt;STRUCT&amp;lt; vaccineId STRING, date STRING &amp;gt; &amp;gt;&lt;BR /&gt;satisfiedBy ARRAY&amp;lt; STRUCT&amp;lt; vaccineId STRING, orderId STRING, orderItemId STRING &amp;gt;&amp;gt;&lt;BR /&gt;serviceName STRING,&lt;BR /&gt;dueDate STRING,&lt;BR /&gt;completedAt STRING,&lt;BR /&gt;state ARRAY&amp;lt; STRUCT&amp;lt;id STRING, name STRING&amp;gt;&amp;gt;,&lt;BR /&gt;nextDueDate STRING&lt;BR /&gt;&amp;gt;,&lt;/P&gt;&lt;P&gt;Column_name_2&amp;nbsp; &amp;nbsp;STRING,&lt;/P&gt;&lt;P&gt;.is it possible to create the column with above structure, basically it is combination of both structure and array of structure.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jan 2024 17:58:13 GMT</pubDate>
    <dc:creator>Data_Engineer3</dc:creator>
    <dc:date>2024-01-22T17:58:13Z</dc:date>
    <item>
      <title>Need to define the struct and array of struct field colum in the delta live table(dlt) in databrick.</title>
      <link>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58131#M31022</link>
      <description>&lt;P&gt;I want to create the columns with datatype struct and array of struct datatype in the DLT live tables, will it be possible, if possible could you share the sample for the same.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 13:27:27 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58131#M31022</guid>
      <dc:creator>Data_Engineer3</dc:creator>
      <dc:date>2024-01-22T13:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need to define the struct and array of struct field colum in the delta live table(dlt) in databr</title>
      <link>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58160#M31026</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/39382"&gt;@Data_Engineer3&lt;/a&gt;&amp;nbsp;, In DLT, we don't create empty tables to begin with but we create the tables by reading the source. For ex:-&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN&gt;CREATE&lt;/SPAN&gt;&lt;SPAN&gt; STREAMING LIVE &lt;/SPAN&gt;&lt;SPAN&gt;TABLE&lt;/SPAN&gt;&lt;SPAN&gt; customers&lt;/SPAN&gt;
&lt;SPAN&gt;AS&lt;/SPAN&gt; &lt;SPAN&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class="hljs-operator"&gt;*&lt;/SPAN&gt; &lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;SPAN&gt; cloud_files("/databricks-datasets/retail-org/customers/", "csv");&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;If your source data has the struct and array columns, your DLT tables will also have these columns as a result.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 14:16:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58160#M31026</guid>
      <dc:creator>Lakshay</dc:creator>
      <dc:date>2024-01-22T14:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need to define the struct and array of struct field colum in the delta live table(dlt) in databr</title>
      <link>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58198#M31045</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/75976"&gt;@Lakshay&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for reply,&lt;/P&gt;&lt;P&gt;Yes, my transformation query(i.e dlt view) will have the columns with type struct field like(Column_name) below&lt;/P&gt;&lt;P&gt;Column_O STRING,&lt;/P&gt;&lt;P&gt;Column_name STRUCT&amp;lt; vaccines&lt;BR /&gt;ARRAY&amp;lt;&lt;BR /&gt;STRUCT&amp;lt; vaccineId STRING, date STRING &amp;gt; &amp;gt;&lt;BR /&gt;satisfiedBy ARRAY&amp;lt; STRUCT&amp;lt; vaccineId STRING, orderId STRING, orderItemId STRING &amp;gt;&amp;gt;&lt;BR /&gt;serviceName STRING,&lt;BR /&gt;dueDate STRING,&lt;BR /&gt;completedAt STRING,&lt;BR /&gt;state ARRAY&amp;lt; STRUCT&amp;lt;id STRING, name STRING&amp;gt;&amp;gt;,&lt;BR /&gt;nextDueDate STRING&lt;BR /&gt;&amp;gt;,&lt;/P&gt;&lt;P&gt;Column_name_2&amp;nbsp; &amp;nbsp;STRING,&lt;/P&gt;&lt;P&gt;.is it possible to create the column with above structure, basically it is combination of both structure and array of structure.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 17:58:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58198#M31045</guid>
      <dc:creator>Data_Engineer3</dc:creator>
      <dc:date>2024-01-22T17:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need to define the struct and array of struct field colum in the delta live table(dlt) in databr</title>
      <link>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58201#M31047</link>
      <description>&lt;P&gt;I dont think there should an issue with it&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2024 19:43:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58201#M31047</guid>
      <dc:creator>Lakshay</dc:creator>
      <dc:date>2024-01-22T19:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need to define the struct and array of struct field colum in the delta live table(dlt) in databr</title>
      <link>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58235#M31060</link>
      <description>&lt;P&gt;I have created DLT live tables pipeline, In Job UI, i can able to see only steps and if any failure happened it show only error at that stage.&lt;BR /&gt;But if i use any log using print, it doesn't show the logs in the console or any where. how can i see the logs associated with the pipelines. Is there any way to check the logs in DLT flow for development??How do I see the logs of the running DLT pipeline&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 07:16:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58235#M31060</guid>
      <dc:creator>Data_Engineer3</dc:creator>
      <dc:date>2024-01-23T07:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need to define the struct and array of struct field colum in the delta live table(dlt) in databr</title>
      <link>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58264#M31073</link>
      <description>&lt;P&gt;You should be able to access the logs from the right side panel under Update details. Please refer the screenshot below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-01-23 at 4.42.44 PM.png" style="width: 960px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/5963iF0B15AC3F20D807B/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-01-23 at 4.42.44 PM.png" alt="Screenshot 2024-01-23 at 4.42.44 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 11:14:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/need-to-define-the-struct-and-array-of-struct-field-colum-in-the/m-p/58264#M31073</guid>
      <dc:creator>Lakshay</dc:creator>
      <dc:date>2024-01-23T11:14:33Z</dc:date>
    </item>
  </channel>
</rss>

