<?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: Snowflake ODBC integration with Blue Prism in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/108995#M49418</link>
    <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/54392"&gt;@ksandesh97&lt;/a&gt;&amp;nbsp;Hey SandeshK, how were you able to integrate Snowflake with Blue Prism? I am new to Snowflake but we have a use case for the integration and would love to know the detailed steps to connect Blue Prism and Snowflake&lt;/P&gt;</description>
    <pubDate>Tue, 26 Mar 2024 15:39:06 GMT</pubDate>
    <dc:creator>rochan16</dc:creator>
    <dc:date>2024-03-26T15:39:06Z</dc:date>
    <item>
      <title>Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84561#M35682</link>
      <description>Has anyone had success with connecting Snowflake ODBC with Blue Prism to execute SQL queries against Snowflake warehouses? &amp;nbsp; If so, were custom VBO's built to achieve this?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jonathan Jones&lt;BR /&gt;Manager&lt;BR /&gt;Chesapeake Energy&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 31 Jan 2020 17:43:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84561#M35682</guid>
      <dc:creator>JonathanJones</dc:creator>
      <dc:date>2020-01-31T17:43:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84562#M35683</link>
      <description>BluePrism has a ODBC VBO, you need to configure the DB connection in Window's ODBC data source and utilize the connection name(user DSN/system DSN) in Blueprism ODBC VBO to connect to the database.&lt;BR /&gt;&lt;BR /&gt;this VBO is not available in installation folder or Digital exhange but you can send one mail to Blue Prism support team, i believe they can provide that to you.&lt;BR /&gt;&lt;BR /&gt;Or you can utilize a code stage to do that, here is the link&amp;nbsp;&lt;BR /&gt;&lt;A href="https://valeriovalrosso.blogspot.com/2018/06/make-your-life-little-easier-with-odbc.html" target="_blank" rel="noopener"&gt;https://valeriovalrosso.blogspot.com/2018/06/make-your-life-little-easier-with-odbc.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ishan Mahajan &lt;BR /&gt;India&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Feb 2020 06:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84562#M35683</guid>
      <dc:creator>IshanMahajan</dc:creator>
      <dc:date>2020-02-03T06:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84563#M35684</link>
      <description>Thank you!&amp;nbsp; We'll give that a try.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jonathan Jones&lt;BR /&gt;Manager&lt;BR /&gt;Chesapeake Energy&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Feb 2020 14:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84563#M35684</guid>
      <dc:creator>JonathanJones</dc:creator>
      <dc:date>2020-02-04T14:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84564#M35685</link>
      <description>Thank you again for mentioning the code.&amp;nbsp; It works just fine.&amp;nbsp; The only tricky part was the particular connection string for Snowflake and ODBC driver installation.&amp;nbsp; Below is an example with Snowflake connection string referencing the Driver, Server, Uid, Pwd, and Schema . The query and network timeouts parameters are optional...&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV&gt;
&lt;PRE class="language-csharp"&gt;&lt;SPAN class="token keyword"&gt;string&lt;/SPAN&gt; connectionString &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"driver="&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; driver &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;";"&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt;
  &lt;SPAN class="token string"&gt;"uid="&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; uid &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;";"&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; 
  &lt;SPAN class="token string"&gt;"pwd="&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; pwd &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;";"&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; 
  &lt;SPAN class="token string"&gt;"authenticator="&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; authenticator &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;";"&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; 
  &lt;SPAN class="token string"&gt;"server="&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; server &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;";"&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; 
  &lt;SPAN class="token string"&gt;"schema="&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; schema &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt; "&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;+&lt;/SPAN&gt;
  &lt;SPAN class="token string"&gt;"query_timeout=60;+network_timeout=60;"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
OdbcConnection connection &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;OdbcConnection&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;connectionString&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
errorMessage &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;""&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
result &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;DataTable&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
success &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;false&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;try&lt;/SPAN&gt; 
 &lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt; 
  connection&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Open&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  OdbcCommand command &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;OdbcCommand&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;sqlCommand&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; connection&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  OdbcDataReader dataReader &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; command&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;ExecuteReader&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  result&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Load&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;dataReader&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
  success &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;true&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
 &lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;catch&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token class-name"&gt;Exception&lt;/SPAN&gt; ex&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;
 &lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt;
  errorMessage &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; ex&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;Message&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
 &lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;finally&lt;/SPAN&gt;
 &lt;SPAN class="token punctuation"&gt;{&lt;/SPAN&gt;
  connection&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Close&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
 &lt;SPAN class="token punctuation"&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jonathan Jones&lt;BR /&gt;Manager&lt;BR /&gt;Chesapeake Energy&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Feb 2020 15:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84564#M35685</guid>
      <dc:creator>JonathanJones</dc:creator>
      <dc:date>2020-02-11T15:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84565#M35686</link>
      <description>Glad that it worked.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ishan Mahajan &lt;BR /&gt;India&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Feb 2020 15:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84565#M35686</guid>
      <dc:creator>IshanMahajan</dc:creator>
      <dc:date>2020-02-11T15:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84566#M35687</link>
      <description>Hi ,&lt;BR /&gt;&lt;BR /&gt;I am using the ODBC object provided by the blueprism support team but my queries are getting ti,ed out. I added CommandTimeout in the code and still face the same issue.&lt;BR /&gt;When i try the same query on the HUE Console, the response comes within 60 seconds. Is this something you had come across when implementing your solution with the ODBC object.&lt;BR /&gt;&amp;nbsp;@&amp;nbsp;&lt;A biobubblekey="7ed12f31-6b6a-421c-8a5e-aa5cafbd0f29" href="https://community.blueprism.com/network/profile?UserKey=7ed12f31-6b6a-421c-8a5e-aa5cafbd0f29" target="_blank" rel="noopener"&gt;Jonathan Jones&lt;/A&gt;&amp;nbsp;&lt;A class="user-content-mention" data-sign="@" data-contactkey="e9860d45-5e2c-485e-b33c-ecb819fca0af" data-tag-text="@Ishan Mahajan" href="https://community.blueprism.com/network/profile?UserKey=e9860d45-5e2c-485e-b33c-ecb819fca0af" data-itemmentionkey="b2dd5bca-eb80-405a-85e2-524169b49724"&gt;@Ishan Mahajan&lt;/A&gt; I would be grateful if you can help me out with the same.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sohana&lt;BR /&gt;&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sohana Kamat&lt;BR /&gt;RPA Consultant&lt;BR /&gt;L&amp;amp;T Infotech&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 11 Mar 2020 10:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84566#M35687</guid>
      <dc:creator>SohanaKamat</dc:creator>
      <dc:date>2020-03-11T10:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84567#M35688</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We also faced timeout issue but the DBA team helped to performance tune SQL so it runs very fast now.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have not looked into the ODBC driver VBO code, not sure if that is similar to the code link i i shared on above thread, can you try that if it is different ?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ishan Mahajan &lt;BR /&gt;India&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sun, 15 Mar 2020 04:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84567#M35688</guid>
      <dc:creator>IshanMahajan</dc:creator>
      <dc:date>2020-03-15T04:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84568#M35689</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am using the object provided by blueprism support team. I have fine tuned my query with the DBA team but the error of Query Execution timeout occurs sometimes and other times it runs smoothly. The code is the same, the only difference is I have added a commandtimeout to check if that would help with the error.&lt;BR /&gt;Please let me know if you have any suggestions regarding the same.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sohana Kamat&lt;BR /&gt;RPA Consultant&lt;BR /&gt;L&amp;amp;T Infotech&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Apr 2020 14:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84568#M35689</guid>
      <dc:creator>SohanaKamat</dc:creator>
      <dc:date>2020-04-20T14:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84569#M35690</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Anyone succeeded with snowflake connection with blue prism? I downloaded the VBO and installed snowflake driver but getting error as "
&lt;P itemprop="name" class="question-title"&gt;ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified"&lt;BR /&gt;&lt;BR /&gt;In the VBO pre-requsities its been mentioned that 32 bit driver is required, but we are using 64bit VM. Will it be an issue? Please suggest.&lt;BR /&gt;&lt;BR /&gt;If yes, what could be the alternate way to connect snowflake with blueprim.&lt;BR /&gt;&lt;BR /&gt;Please help.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Sathish R&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sathish Rangan RPA Tech Lead&lt;BR /&gt;RPA Developer&lt;BR /&gt;TATA Consultancy services Limited&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Jun 2021 06:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84569#M35690</guid>
      <dc:creator>Sathish.Rangan</dc:creator>
      <dc:date>2021-06-11T06:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84570#M35691</link>
      <description>Hi Satish,&lt;BR /&gt;&lt;BR /&gt;I recently worked on integrating Snowflake with Blueprism. I have seen 32-bit Snowflake ODBC driver from officail site will work with Blueprism 7 and up. 64-bit doesnt work with Blueprism even though the system is 64-bit.&lt;BR /&gt;&lt;BR /&gt;Regarding DSN or default DSN, please supply the DSN name to Connection string given during installation and setup. This will resolve the error you are getting.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sandesh K&lt;BR /&gt;Consultant/RPA Developer&lt;BR /&gt;Deloitte USI&lt;BR /&gt;Karnataka, India&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Feb 2023 11:26:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/84570#M35691</guid>
      <dc:creator>ksandesh97</dc:creator>
      <dc:date>2023-02-01T11:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/108995#M49418</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/54392"&gt;@ksandesh97&lt;/a&gt;&amp;nbsp;Hey SandeshK, how were you able to integrate Snowflake with Blue Prism? I am new to Snowflake but we have a use case for the integration and would love to know the detailed steps to connect Blue Prism and Snowflake&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 15:39:06 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/108995#M49418</guid>
      <dc:creator>rochan16</dc:creator>
      <dc:date>2024-03-26T15:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: RE: Snowflake ODBC integration with Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/112846#M50536</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/43858"&gt;@Sathish.Rangan&lt;/a&gt;&amp;nbsp;Were you able to solve this issue? I am facing a similar error message&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 17:02:55 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Snowflake-ODBC-integration-with-Blue-Prism/m-p/112846#M50536</guid>
      <dc:creator>rochan16</dc:creator>
      <dc:date>2024-08-01T17:02:55Z</dc:date>
    </item>
  </channel>
</rss>

