<?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: sql point to R studio in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4424043#M7471</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/259233"&gt;@jcamilo1985&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we did not get a response, may I know if the above reply could clarify your issue, or could you please help confirm if we may help you with anything else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And if the provided information meets your requirements, you can Accept the solution and also give Kudos on that reply. It helps other users who are searching for this same information and find the information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your understanding and patience will be appreciated.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2025 09:03:43 GMT</pubDate>
    <dc:creator>v-sgandrathi</dc:creator>
    <dc:date>2025-02-24T09:03:43Z</dc:date>
    <item>
      <title>sql point to R studio</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4417839#M7346</link>
      <description>&lt;P&gt;Hello, greetings to everyone, it's been a while since I've been here.&lt;/P&gt;&lt;P&gt;The question is really simple, does anyone know the process to connect the SQL point that generates fabric to R Studio?&lt;/P&gt;&lt;P&gt;I appreciate any help&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 13:20:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4417839#M7346</guid>
      <dc:creator>jcamilo1985</dc:creator>
      <dc:date>2025-02-19T13:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: sql point to R studio</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4418943#M7362</link>
      <description>&lt;P&gt;Install the Required Packages&lt;BR /&gt;First, ensure you have the required R packages installed:&lt;/P&gt;&lt;P&gt;r&lt;/P&gt;&lt;P&gt;install.packages("odbc")&lt;BR /&gt;install.packages("DBI")&lt;/P&gt;&lt;P&gt;Get Your Fabric SQL Details&lt;BR /&gt;Open Microsoft Fabric.&lt;BR /&gt;Navigate to your Lakehouse or Warehouse.&lt;BR /&gt;Click on "SQL Endpoint", and note down the Server and Database details.&lt;/P&gt;&lt;P&gt;Connect R Studio to Fabric&lt;BR /&gt;Now, use the below R code to connect:&lt;/P&gt;&lt;P&gt;r&lt;/P&gt;&lt;P&gt;library(odbc)&lt;BR /&gt;library(DBI)&lt;/P&gt;&lt;P&gt;con &amp;lt;- dbConnect(odbc::odbc(),&lt;BR /&gt;Driver = "ODBC Driver 17 for SQL Server", # Ensure this driver is installed&lt;BR /&gt;Server = "your-fabric-server.database.windows.net",&lt;BR /&gt;Database = "your_database_name",&lt;BR /&gt;UID = "your_username",&lt;BR /&gt;PWD = "your_password";&lt;BR /&gt;Encrypt = "yes",&lt;BR /&gt;TrustServerCertificate = "no",&lt;BR /&gt;Authentication = "ActiveDirectoryPassword") # Adjust authentication if necessary&lt;/P&gt;&lt;P&gt;# Check that the connection succeeds&lt;BR /&gt;dbListTables(con)&lt;BR /&gt;Run a Query&lt;BR /&gt;After being connected, you can fetch some data like this:&lt;/P&gt;&lt;P&gt;r&lt;BR /&gt;df &amp;lt;- dbGetQuery(con, "SELECT TOP 10 * FROM your_table_name")&lt;BR /&gt;print(df)&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 06:15:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4418943#M7362</guid>
      <dc:creator>girishthimmaiah</dc:creator>
      <dc:date>2025-02-20T06:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: sql point to R studio</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4420656#M7399</link>
      <description>&lt;P&gt;First of all, thank you very much for answering.&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/929819"&gt;@girishthimmaiah&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I have not been successful, I have problems with authentication, I connected the SQL point from the dbeaver client, with MFA authentication, but here I cannot get it to work.&lt;BR /&gt;Regarding the initial code, I have some differences, for example the driver I have installed is the ODBC Driver 18 for SQL Server&lt;BR /&gt;and my SQL point has the structure&lt;BR /&gt;...-datawarehouse.fabric.microsoft.com&lt;/P&gt;&lt;P&gt;Can this be solved?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2025 23:19:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4420656#M7399</guid>
      <dc:creator>jcamilo1985</dc:creator>
      <dc:date>2025-02-20T23:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: sql point to R studio</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4421391#M7412</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/259233"&gt;@jcamilo1985&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Since you have ODBC Driver 18 for SQL Server installed, make sure your connection code reflects this by specifying the driver correctly in your connection string.&lt;/P&gt;
&lt;P&gt;As you mentioned successfully connecting using DBeaver, ensure that the same connection parameters are used in R Studio.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;By following these adjustments, you should be able to resolve the authentication issues and successfully connect R Studio to your Microsoft Fabric SQL endpoint.&lt;BR /&gt;&lt;BR /&gt;If this solution worked for you, kindly mark it as Accept as Solution and feel free to give a Kudos, it would be much appreciated!&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Thank you for being a part of the Microsoft Fabric Community.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2025 07:37:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4421391#M7412</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-02-21T07:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: sql point to R studio</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4424043#M7471</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/259233"&gt;@jcamilo1985&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As we did not get a response, may I know if the above reply could clarify your issue, or could you please help confirm if we may help you with anything else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And if the provided information meets your requirements, you can Accept the solution and also give Kudos on that reply. It helps other users who are searching for this same information and find the information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your understanding and patience will be appreciated.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 09:03:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4424043#M7471</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-02-24T09:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: sql point to R studio</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4551308#M7485</link>
      <description>&lt;P&gt;Thank you very much for the guidance &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/882995"&gt;@v-sgandrathi&lt;/a&gt;&amp;nbsp;the driver in the text string was correctly placed, however the problem was in the driver configuration in Windows, to solve it I went to the ODBC data source administrator, select configure the ODBC_driver_sql_server driver, in this case the one I have installed is ODBC Driver 18 for SQL Server. The authentication type select "with Microsoft entre ID integrated authentication", the rest I left as default. In R studio, the dbConnect argument, I set it to: Authentication = ActiveDirectoryInteractive&lt;BR /&gt;and finally it worked&lt;/P&gt;&lt;P&gt;Again, thank you very much for the support&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/882995"&gt;@v-sgandrathi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 22:13:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/sql-point-to-R-studio/m-p/4551308#M7485</guid>
      <dc:creator>jcamilo1985</dc:creator>
      <dc:date>2025-02-24T22:13:14Z</dc:date>
    </item>
  </channel>
</rss>

