<?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: KQL Database - Shortcut creation failed in Eventhouse and KQL</title>
    <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3581122#M63</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644467" data-lia-user-login="AnibalBenedetto" class="lia-mention lia-mention-user"&gt;AnibalBenedetto&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet.&lt;BR /&gt;In case if you have any resolution please do share that same with the community as it can be helpful to others.&lt;BR /&gt;Otherwise, will respond back with the more details and we will try to help.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2023 05:40:58 GMT</pubDate>
    <dc:creator>v-cboorla-msft</dc:creator>
    <dc:date>2023-12-13T05:40:58Z</dc:date>
    <item>
      <title>KQL Database - Shortcut creation failed</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3568731#M59</link>
      <description>&lt;P&gt;Hello everyone!, I want to create a Shortcut in a KQL database pointing to a Warehouse table but I'm getting errors (I am the owner of both and they are in the same Workspace).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know If I'm doing something wrong and what can I do.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2024 21:07:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3568731#M59</guid>
      <dc:creator>AnibalBenedetto</dc:creator>
      <dc:date>2024-05-20T21:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: KQL Database - Shortcut creation failed</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3569894#M60</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644467" data-lia-user-login="AnibalBenedetto" class="lia-mention lia-mention-user"&gt;AnibalBenedetto&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for using Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;Apologies for the inconvenience.&lt;/P&gt;
&lt;P&gt;KQL databases don't currently support data in the Delta format. Tables in a KQL database only export to OneLake as Parquet files. Shortcuts in KQL databases that contain Delta-formatted data in the target aren't recognized as tables.&lt;/P&gt;
&lt;P&gt;For more details refer &lt;A href="https://learn.microsoft.com/en-us/fabric/onelake/onelake-shortcuts" target="_blank" rel="noopener"&gt;Link&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I tried creating a shortcut pointing to a Lakehouse which has csv file. Please find the screenshot for reference.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;I hope this helps. Please do let us know if you have any further questions. Glad to help.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 07:13:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3569894#M60</guid>
      <dc:creator>v-cboorla-msft</dc:creator>
      <dc:date>2023-12-06T07:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: KQL Database - Shortcut creation failed</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3570285#M61</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608020" data-lia-user-login="v-cboorla-msft" class="lia-mention lia-mention-user"&gt;v-cboorla-msft&lt;/a&gt;!&lt;/P&gt;&lt;P&gt;I’m confused. I have already created some shortcuts in my KQL Database pointing to Lakehouse or Warehouse tables using the wizard to do that.&lt;/P&gt;&lt;P&gt;In this particular case, I got an error.&lt;/P&gt;&lt;P&gt;I see that warehouse table which has a PK produces error in shortcut creation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps to reproduce:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1- Create a Warehouse called “test_shortcut”&lt;/P&gt;&lt;P&gt;2- Create two tables and only one of them with primary key&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;CREATE TABLE [test_shortcut].[dbo].[table_without_pk]
(
   col1 int NOT NULL,
   col2 varchar(10) NOT NULL
)
GO

CREATE TABLE [test_shortcut].[dbo].[table_with_pk]
(
   col1 int NOT NULL,
   col2 varchar(10) NOT NULL
)
GO
ALTER TABLE dbo.table_with_pk ADD CONSTRAINT table_with_pk_key PRIMARY KEY NONCLUSTERED (col1, col2) NOT ENFORCED
GO&lt;/LI-CODE&gt;&lt;P&gt;3- Create a Shortcut in KQL Database pointing to the new tables&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;table_without_pk -&amp;gt; ok&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;table_with_pk -&amp;gt; error&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 11:10:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3570285#M61</guid>
      <dc:creator>AnibalBenedetto</dc:creator>
      <dc:date>2023-12-06T11:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: KQL Database - Shortcut creation failed</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3570964#M62</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644467" data-lia-user-login="AnibalBenedetto" class="lia-mention lia-mention-user"&gt;AnibalBenedetto&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apologies for the inconvenience that you are facing here.&lt;/P&gt;
&lt;P&gt;I tried to repro the same scenario from our end and initially I have faced the same error, but after deleting the KQL Database and creating a new one the issue was resolved. Please try this workaround and let me know. I have attached screenshots for reference.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps. Please do let us know if you have any further questions. Glad to help.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 16:51:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3570964#M62</guid>
      <dc:creator>v-cboorla-msft</dc:creator>
      <dc:date>2023-12-06T16:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: KQL Database - Shortcut creation failed</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3581122#M63</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644467" data-lia-user-login="AnibalBenedetto" class="lia-mention lia-mention-user"&gt;AnibalBenedetto&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet.&lt;BR /&gt;In case if you have any resolution please do share that same with the community as it can be helpful to others.&lt;BR /&gt;Otherwise, will respond back with the more details and we will try to help.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 05:40:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3581122#M63</guid>
      <dc:creator>v-cboorla-msft</dc:creator>
      <dc:date>2023-12-13T05:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: KQL Database - Shortcut creation failed</title>
      <link>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3585555#M64</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="644467" data-lia-user-login="AnibalBenedetto" class="lia-mention lia-mention-user"&gt;AnibalBenedetto&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet.&lt;BR /&gt;In case if you have any resolution please do share that same with the community as it can be helpful to others.&lt;BR /&gt;If you have any question relating to the current thread, please do let us know and we will try out best to help you.&lt;BR /&gt;In case if you have any other question on a different issue, we request you to open a new thread.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2023 09:55:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventhouse-and-KQL/KQL-Database-Shortcut-creation-failed/m-p/3585555#M64</guid>
      <dc:creator>v-cboorla-msft</dc:creator>
      <dc:date>2023-12-15T09:55:39Z</dc:date>
    </item>
  </channel>
</rss>

