<?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: Different between the two logs generated by PowerBi. in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3476868#M44927</link>
    <description>&lt;P&gt;Hi Ibendlin,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have designed a custom connector which supports native query, now I would like to add support for limit clause. I have done changes refering to this&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/power-query/odbc-parameters#limitclause" target="_blank" rel="noopener nofollow noreferrer"&gt;Parameters for the Odbc.DataSource function - Power Query | Microsoft Learn&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;but I still dont see the Limit clause getting appended to the query I pass.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AstVisitor = [
            LimitClause = (skip,take) =&amp;gt;
                  if (skip &amp;gt; 0) then error "Skip/Offset not supported"
                   else
              [
                Text = Text.Format("LIMIT #{0}", {take}),
                Location = "AfterQuerySpecification"
              ]
        ],&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was going through the logs, at first the query got appened with limit, later it didnt.&lt;BR /&gt;FYI:&lt;BR /&gt;I havent made any code changes further.&lt;/P&gt;</description>
    <pubDate>Sat, 14 Oct 2023 15:06:22 GMT</pubDate>
    <dc:creator>SushmaMudayappa</dc:creator>
    <dc:date>2023-10-14T15:06:22Z</dc:date>
    <item>
      <title>Difference between the two logs generated by PowerBi.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3472827#M44895</link>
      <description>&lt;P&gt;Hi Team,&lt;BR /&gt;Wanted clarity with the two logs attached. First log has the query with limit clause , second log doesn't have the limit clause.&lt;BR /&gt;But we see a change in the flow. Can someone briefly explain about.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#first log&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ObjectCacheSessions/Data/CacheStats/Size {"Start":"2023-10-09T06:21:52.9058892Z","Action":"ObjectCacheSessions/Data/CacheStats/Size","entryCount":"1","totalSize":"24","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"00000000-0000-0000-0000-000000000000","Process":"Microsoft.Mashup.Container.NetFX45","Pid":32112,"Tid":1,"Duration":"00:00:00.0008726"}
ObjectCacheSessions/Data/CacheStats/Access {"Start":"2023-10-09T06:21:52.9086791Z","Action":"ObjectCacheSessions/Data/CacheStats/Access","hits":"0","requests":"1","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"00000000-0000-0000-0000-000000000000","Process":"Microsoft.Mashup.Container.NetFX45","Pid":32112,"Tid":1,"Duration":"00:00:00.0000482"}
SimpleDocumentEvaluator/GetResult/Compile {"Start":"2023-10-09T06:21:53.0454434Z","Action":"SimpleDocumentEvaluator/GetResult/Compile","HostProcessId":"23320","PartitionKey":"Section1/Query1/Source","Expression":"let\r\n  _t = Section1!Query1\r\nin\r\n  if _t is table then Table.FirstN(_t, 1000) meta Value.Metadata(_t)\r\n  else if _t is list then List.FirstN(_t, 1000) meta Value.Metadata(_t)\r\n  else _t","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"9ed0e21c-b30b-4d20-80f3-2b68379bf0d2","Process":"Microsoft.Mashup.Container.NetFX45","Pid":32112,"Tid":1,"Duration":"00:00:00.4476034"}
ObjectCache/Data/CacheStats/Size {"Start":"2023-10-09T06:21:54.0170048Z","Action":"ObjectCache/Data/CacheStats/Size","HostProcessId":"23320","entryCount":"1","totalSize":"836","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"9ed0e21c-b30b-4d20-80f3-2b68379bf0d2","Process":"Microsoft.Mashup.Container.NetFX45","Pid":32112,"Tid":1,"Duration":"00:00:00.0000298"}
ObjectCache/Data/CacheStats/Access {"Start":"2023-10-09T06:21:54.0170701Z","Action":"ObjectCache/Data/CacheStats/Access","HostProcessId":"23320","hits":"0","requests":"2","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"9ed0e21c-b30b-4d20-80f3-2b68379bf0d2","Process":"Microsoft.Mashup.Container.NetFX45","Pid":32112,"Tid":1,"Duration":"00:00:00.0000096"}
ObjectCache/Data/CacheStats/Size {"Start":"2023-10-09T06:21:54.1384327Z","Action":"ObjectCache/Data/CacheStats/Size","HostProcessId":"23320","entryCount":"2","totalSize":"1179","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"9ed0e21c-b30b-4d20-80f3-2b68379bf0d2","Process":"Microsoft.Mashup.Container.NetFX45","Pid":32112,"Tid":1,"Duration":"00:00:00.0000159"}
ObjectCache/Data/CacheStats/Access {"Start":"2023-10-09T06:21:54.1384755Z","Action":"ObjectCache/Data/CacheStats/Access","HostProcessId":"23320","hits":"0","requests":"4","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"9ed0e21c-b30b-4d20-80f3-2b68379bf0d2","Process":"Microsoft.Mashup.Container.NetFX45","Pid":32112,"Tid":1,"Duration":"00:00:00.0000090"}
Engine/IO/Odbc/Command/Prepare {"Start":"2023-10-09T06:21:59.3674716Z","Action":"Engine/IO/Odbc/Command/Prepare","ResourceKind":"AmazonAthena","ResourcePath":"Simba Athena","HostProcessId":"23320","PartitionKey":"Section1/Query1/Source","CommandText":"select keycolumn,column1 from AwsDataCatalog.sen.wlongvarchar_table limit 1000","Statement":"2805389631136","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"9ed0e21c-b30b-4d20-80f3-2b68379bf0d2","Process":"Microsoft.Mashup.Container.NetFX45","Pid":32112,"Tid":1,"Duration":"00:00:05.6333227"}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#second log&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ObjectCacheSessions/Data/CacheStats/Size {"Start":"2023-10-11T10:39:39.0618907Z","Action":"ObjectCacheSessions/Data/CacheStats/Size","entryCount":"1","totalSize":"24","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"00000000-0000-0000-0000-000000000000","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0006009"}
ObjectCacheSessions/Data/CacheStats/Access {"Start":"2023-10-11T10:39:39.0638633Z","Action":"ObjectCacheSessions/Data/CacheStats/Access","hits":"0","requests":"1","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"00000000-0000-0000-0000-000000000000","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000370"}
SimpleDocumentEvaluator/GetResult/Compile {"Start":"2023-10-11T10:39:39.1635262Z","Action":"SimpleDocumentEvaluator/GetResult/Compile","HostProcessId":"16136","PartitionKey":"Section1/Query1/Source","Expression":"let\r\n  _t = Section1!Query1\r\nin\r\n  if _t is table then Table.FirstN(_t, 1000) meta Value.Metadata(_t)\r\n  else if _t is list then List.FirstN(_t, 1000) meta Value.Metadata(_t)\r\n  else _t","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"4e07d457-4fc2-4405-957e-35e21fd65597","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.3046526"}
ObjectCache/Data/CacheStats/Size {"Start":"2023-10-11T10:39:39.8194814Z","Action":"ObjectCache/Data/CacheStats/Size","HostProcessId":"16136","entryCount":"1","totalSize":"480","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"4e07d457-4fc2-4405-957e-35e21fd65597","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000170"}
ObjectCache/Data/CacheStats/Access {"Start":"2023-10-11T10:39:39.8195639Z","Action":"ObjectCache/Data/CacheStats/Access","HostProcessId":"16136","hits":"0","requests":"2","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"4e07d457-4fc2-4405-957e-35e21fd65597","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000080"}
ObjectCache/Data/CacheStats/Size {"Start":"2023-10-11T10:39:39.9025869Z","Action":"ObjectCache/Data/CacheStats/Size","HostProcessId":"16136","entryCount":"2","totalSize":"823","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"4e07d457-4fc2-4405-957e-35e21fd65597","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000688"}
ObjectCache/Data/CacheStats/Access {"Start":"2023-10-11T10:39:39.9026820Z","Action":"ObjectCache/Data/CacheStats/Access","HostProcessId":"16136","hits":"0","requests":"4","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"4e07d457-4fc2-4405-957e-35e21fd65597","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000193"}
SimpleDocumentEvaluator/GetResult/Evaluate {"Start":"2023-10-11T10:39:39.4682107Z","Action":"SimpleDocumentEvaluator/GetResult/Evaluate","HostProcessId":"16136","PartitionKey":"Section1/Query1/Source","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"4e07d457-4fc2-4405-957e-35e21fd65597","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.4608203"}
SimpleDocumentEvaluator/GetResult&amp;lt;IPreviewValueSource&amp;gt; {"Start":"2023-10-11T10:39:39.1583981Z","Action":"SimpleDocumentEvaluator/GetResult&amp;lt;IPreviewValueSource&amp;gt;","HostProcessId":"16136","PartitionKey":"Section1/Query1/Source","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"4e07d457-4fc2-4405-957e-35e21fd65597","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.8461171"}
FirewallDocumentEvaluator/GetResult&amp;lt;Microsoft.Mashup.Evaluator.Interface.IPreviewValueSource&amp;gt; {"Start":"2023-10-11T10:39:39.1276870Z","Action":"FirewallDocumentEvaluator/GetResult&amp;lt;Microsoft.Mashup.Evaluator.Interface.IPreviewValueSource&amp;gt;","HostProcessId":"16136","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"4e07d457-4fc2-4405-957e-35e21fd65597","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.8026896"}
ObjectCacheSessions/Data/CacheStats/Size {"Start":"2023-10-11T10:40:56.4290056Z","Action":"ObjectCacheSessions/Data/CacheStats/Size","entryCount":"2","totalSize":"871","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"00000000-0000-0000-0000-000000000000","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000174"}
ObjectCacheSessions/Data/CacheStats/Access {"Start":"2023-10-11T10:40:56.4290435Z","Action":"ObjectCacheSessions/Data/CacheStats/Access","hits":"0","requests":"2","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"00000000-0000-0000-0000-000000000000","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000075"}
SimpleDocumentEvaluator/GetResult/Compile {"Start":"2023-10-11T10:40:56.4330101Z","Action":"SimpleDocumentEvaluator/GetResult/Compile","HostProcessId":"16136","PartitionKey":"Section1/Query1/Source","Expression":"let\r\n  _t = Section1!Query1\r\nin\r\n  if _t is table then Table.FirstN(_t, 0) meta Value.Metadata(_t)\r\n  else if _t is list then List.FirstN(_t, 0) meta Value.Metadata(_t)\r\n  else _t","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0100961"}
ObjectCache/Data/CacheStats/Size {"Start":"2023-10-11T10:41:01.0612561Z","Action":"ObjectCache/Data/CacheStats/Size","HostProcessId":"16136","entryCount":"1","totalSize":"480","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000148"}
ObjectCache/Data/CacheStats/Access {"Start":"2023-10-11T10:41:01.0612949Z","Action":"ObjectCache/Data/CacheStats/Access","HostProcessId":"16136","hits":"0","requests":"6","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000080"}
Engine/IO/Odbc/Command/GetTables {"Start":"2023-10-11T10:41:01.0640178Z","Action":"Engine/IO/Odbc/Command/GetTables","ResourceKind":"AmazonAthena","ResourcePath":"Simba Athena","HostProcessId":"16136","PartitionKey":"Section1/Query1/Source","CatalogName":"%","SchemaName":"","TableName":"","TableType":"","Execution":"00:00:00.0240137","Result":"00:00:00.0098332","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0341164"}
DiskCache/Data/CacheStats/Size {"Start":"2023-10-11T10:41:01.1082753Z","Action":"DiskCache/Data/CacheStats/Size","HostProcessId":"16136","entryCount":"1","totalSize":"1024","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000135"}
DiskCache/Data/CacheStats/Access {"Start":"2023-10-11T10:41:01.1083065Z","Action":"DiskCache/Data/CacheStats/Access","HostProcessId":"16136","hits":"3","requests":"5","hitrate":"0.6","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000161"}
ObjectCache/Data/CacheStats/Size {"Start":"2023-10-11T10:41:01.1083436Z","Action":"ObjectCache/Data/CacheStats/Size","HostProcessId":"16136","entryCount":"2","totalSize":"823","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000024"}
ObjectCache/Data/CacheStats/Access {"Start":"2023-10-11T10:41:01.1083498Z","Action":"ObjectCache/Data/CacheStats/Access","HostProcessId":"16136","hits":"0","requests":"8","hitrate":"0","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:00.0000170"}
Engine/IO/Odbc/Command/Prepare {"Start":"2023-10-11T10:41:03.3001873Z","Action":"Engine/IO/Odbc/Command/Prepare","ResourceKind":"AmazonAthena","ResourcePath":"Simba Athena","HostProcessId":"16136","PartitionKey":"Section1/Query1/Source","CommandText":"select keycolumn,column1 from AwsDataCatalog.sen.wlongvarchar_table","Statement":"2820449281040","ProductVersion":"2.121.169.0 (23.09)","ActivityId":"cf640b47-e18c-4e65-938c-af2ccdf48f0f","Process":"Microsoft.Mashup.Container.NetFX45","Pid":18204,"Tid":1,"Duration":"00:00:07.5069672"}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sushma&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 09:20:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3472827#M44895</guid>
      <dc:creator>SushmaMudayappa</dc:creator>
      <dc:date>2023-10-16T09:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Different between the two logs generated by PowerBi.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3476489#M44924</link>
      <description>&lt;P&gt;The first one can come from a developer working in Power Query editor, the second one from the dataset.&amp;nbsp; &amp;nbsp;What problem are you trying to solve?&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2023 00:46:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3476489#M44924</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-10-14T00:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: Different between the two logs generated by PowerBi.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3476868#M44927</link>
      <description>&lt;P&gt;Hi Ibendlin,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have designed a custom connector which supports native query, now I would like to add support for limit clause. I have done changes refering to this&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/power-query/odbc-parameters#limitclause" target="_blank" rel="noopener nofollow noreferrer"&gt;Parameters for the Odbc.DataSource function - Power Query | Microsoft Learn&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;but I still dont see the Limit clause getting appended to the query I pass.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AstVisitor = [
            LimitClause = (skip,take) =&amp;gt;
                  if (skip &amp;gt; 0) then error "Skip/Offset not supported"
                   else
              [
                Text = Text.Format("LIMIT #{0}", {take}),
                Location = "AfterQuerySpecification"
              ]
        ],&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was going through the logs, at first the query got appened with limit, later it didnt.&lt;BR /&gt;FYI:&lt;BR /&gt;I havent made any code changes further.&lt;/P&gt;</description>
      <pubDate>Sat, 14 Oct 2023 15:06:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3476868#M44927</guid>
      <dc:creator>SushmaMudayappa</dc:creator>
      <dc:date>2023-10-14T15:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Different between the two logs generated by PowerBi.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3478578#M44939</link>
      <description>&lt;P&gt;We have cleared cache as well.&amp;nbsp;&lt;BR /&gt;Under --&amp;gt; Options --&amp;gt;Global --&amp;gt; Data Load&lt;BR /&gt;&lt;BR /&gt;At first, limit clause got appened with the query we pass. But later on, it didnt behave as expected.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you suggest any changes that needs to be done in power query (.pq) file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sushma&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 10:32:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3478578#M44939</guid>
      <dc:creator>SushmaMudayappa</dc:creator>
      <dc:date>2023-10-16T10:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Different between the two logs generated by PowerBi.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3479198#M44948</link>
      <description>&lt;P&gt;I am not aware of a way to tell Power Query not to use the cache. Maybe set the cache size to zero?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 15:03:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3479198#M44948</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-10-16T15:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Different between the two logs generated by PowerBi.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3481339#M44967</link>
      <description>&lt;P&gt;Yes, I tried that. It didnt work either.&lt;BR /&gt;But could you suggest, how do we actually desgin a custom connector which supports limit under native query.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SushmaMudayappa_0-1697553911994.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/982261i4330A4D5A687E777/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SushmaMudayappa_0-1697553911994.png" alt="SushmaMudayappa_0-1697553911994.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 14:45:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3481339#M44967</guid>
      <dc:creator>SushmaMudayappa</dc:creator>
      <dc:date>2023-10-17T14:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Different between the two logs generated by PowerBi.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3481425#M44969</link>
      <description>&lt;P&gt;Sorry, that's outside my area of expertise. Haven't learned about custom connectors yet.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 15:15:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3481425#M44969</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-10-17T15:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Different between the two logs generated by PowerBi.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3527179#M45295</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/623916"&gt;@SushmaMudayappa&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;For enabled 'Native Query' support in custom connector, you can refer the following links:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://powerquery.microsoft.com/en-us/blog/implement-native-query-support-in-your-power-query-custom-connectors/" target="_blank"&gt;Implement Native Query support in your Power Query Custom Connectors | Microsoft Power Query&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-query/native-query-sdk" target="_blank"&gt;Native query support in the Power Query SDK - Power Query | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;REference link about how to create custom connector:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-query/creating-first-connector" target="_blank"&gt;Creating your first connector - Hello World - Power Query | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Xiaoxin Sheng&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2023 07:57:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Difference-between-the-two-logs-generated-by-PowerBi/m-p/3527179#M45295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-11-10T07:57:24Z</dc:date>
    </item>
  </channel>
</rss>

