<?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: Error in Query using OLE DB in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75142#M27747</link>
    <description>Hi ,&lt;BR /&gt;I tried with space also,still getting same error.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mohini Shelke&lt;BR /&gt;RPA Developer&lt;BR /&gt;vElement It&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 16 Sep 2019 17:42:00 GMT</pubDate>
    <dc:creator>MohiniShelke</dc:creator>
    <dc:date>2019-09-16T17:42:00Z</dc:date>
    <item>
      <title>Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75136#M27741</link>
      <description>Hello All,&lt;BR /&gt;I am using OLE DB connection&amp;nbsp; in BluePrism.&lt;BR /&gt;I am trying to execute following Query:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;"SELECT * DISTINCT [User ID ] FROM [Sheet1$]"&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;But it is throwing following error message:&lt;BR /&gt;&lt;BR /&gt;Internal : Could not execute code stage because exception thrown by code stage: Syntax error (missing operator) in query expression '* DISTINCT [User ID ]'.&lt;BR /&gt;&lt;BR /&gt;Please help me to solve this error.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mohini Shelke&lt;BR /&gt;RPA Developer&lt;BR /&gt;vElement It&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2019 05:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75136#M27741</guid>
      <dc:creator>MohiniShelke</dc:creator>
      <dc:date>2019-09-16T05:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75137#M27742</link>
      <description>Mohini, SQL Query is wrong it should be&amp;nbsp;&lt;STRONG&gt;SELECT&amp;nbsp; DISTINCT [User ID ] FROM [Sheet1$]...U can use either Distinct or * both not together&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Saumitra Sharma&lt;BR /&gt;Consultant&lt;BR /&gt;EY&lt;BR /&gt;Indian/Christmas&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2019 10:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75137#M27742</guid>
      <dc:creator>SaumitraSharma</dc:creator>
      <dc:date>2019-09-16T10:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75138#M27743</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV dir="auto"&gt;Hello &lt;DIV dir="auto"&gt;&lt;BR /&gt; &lt;DIV dir="auto"&gt;You are right but if we user [User ID] , it will return only USER ID values in output&amp;nbsp;&lt;/DIV&gt; &lt;DIV dir="auto"&gt;&lt;BR /&gt; &lt;/DIV&gt; &lt;DIV dir="auto"&gt;I want all row data.&amp;nbsp;&lt;/DIV&gt; &lt;DIV dir="auto"&gt;&lt;BR /&gt; &lt;/DIV&gt; &lt;/DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------Original Message------&lt;BR /&gt;&lt;BR /&gt;Mohini, SQL Query is wrong it should be&amp;nbsp;&lt;STRONG&gt;SELECT&amp;nbsp; DISTINCT [User ID ] FROM [Sheet1$]...U can use either Distinct or * both not together&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Saumitra Sharma&lt;BR /&gt;Consultant&lt;BR /&gt;EY&lt;BR /&gt;Indian/Christmas&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2019 10:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75138#M27743</guid>
      <dc:creator>MohiniShelke</dc:creator>
      <dc:date>2019-09-16T10:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75139#M27744</link>
      <description>U can use this but this will delete the duplicate data permanently only unique data will be there...&lt;STRONG&gt;delete dups from (select *, row_number() OVER ( partition by [User ID] order by [User ID]) as rn from [Sheet1$]) dups WHERE rn &amp;gt; 1&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Select * from [Sheet1$]&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2019 10:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75139#M27744</guid>
      <dc:creator>SaumitraSharma</dc:creator>
      <dc:date>2019-09-16T10:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75140#M27745</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; Hi,&lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; I tried this query ,&lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; But getting following error:&lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; Internal : Could not execute code stage because exception thrown by code stage: Syntax error in query expression 'rn &amp;gt; 1Select * from [Sheet1$]'.&lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV&gt; &lt;DIV dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif"&gt; &lt;DIV dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif"&gt; &lt;P style="margin-top: 0;margin-bottom: 0"&gt; &lt;/P&gt;&lt;P style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;/P&gt; &lt;P style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; Thanks &amp;amp; Regards,&lt;/P&gt; &lt;P style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;BR /&gt; &lt;/P&gt; &lt;P dir="ltr" style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;B&gt;Mohini Shelke&lt;/B&gt;&lt;/P&gt; &lt;P dir="ltr" style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;SPAN style="color:rgb(0,111,201)"&gt;RPA Developer, &lt;/SPAN&gt;&lt;SPAN style="color:rgb(0,111,201)"&gt;vElement&lt;/SPAN&gt;&lt;SPAN style="color:rgb(0,111,201)"&gt; IT,&lt;/SPAN&gt;&lt;/P&gt; &lt;P dir="ltr" style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;/P&gt; &lt;DIV&gt;Cell : (+91)9503221751&lt;/DIV&gt; &lt;P style="margin-top: 0px;margin-bottom: 0px"&gt; &lt;/P&gt;&lt;P dir="ltr" style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;A href="https://velement.io/"&gt;https://velement.io/&lt;/A&gt;&lt;BR /&gt; &lt;/P&gt; &lt;DIV&gt;&lt;BR /&gt; &lt;/DIV&gt; &lt;/DIV&gt; &lt;span class="lia-inline-image-display-wrapper" image-alt="22317.gif"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/22451iFC2AB86903FF5427/image-size/large?v=v2&amp;amp;px=999" role="button" title="22317.gif" alt="22317.gif" /&gt;&lt;/span&gt;&lt;BR /&gt; &lt;/DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------Original Message------&lt;BR /&gt;&lt;BR /&gt;U can use this but this will delete the duplicate data permanently only unique data will be there...&lt;STRONG&gt;delete dups from (select *, row_number() OVER ( partition by [User ID] order by [User ID]) as rn from [Sheet1$]) dups WHERE rn &amp;gt; 1&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Select * from [Sheet1$]&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2019 12:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75140#M27745</guid>
      <dc:creator>MohiniShelke</dc:creator>
      <dc:date>2019-09-16T12:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75141#M27746</link>
      <description>Hi,&lt;BR /&gt;There should be &lt;STRONG&gt;space between&lt;/STRONG&gt; &lt;STRONG&gt;1 and Select&lt;/STRONG&gt; you have missed the space it should be&amp;nbsp;&lt;SPAN&gt;rn &amp;gt; 1 Select * from [Sheet1$]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Saumitra Sharma&lt;BR /&gt;Consultant&lt;BR /&gt;EY&lt;BR /&gt;Indian/Christmas&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2019 14:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75141#M27746</guid>
      <dc:creator>SaumitraSharma</dc:creator>
      <dc:date>2019-09-16T14:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75142#M27747</link>
      <description>Hi ,&lt;BR /&gt;I tried with space also,still getting same error.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mohini Shelke&lt;BR /&gt;RPA Developer&lt;BR /&gt;vElement It&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2019 17:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75142#M27747</guid>
      <dc:creator>MohiniShelke</dc:creator>
      <dc:date>2019-09-16T17:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75143#M27748</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV dir="auto"&gt;Hi,&amp;nbsp; &lt;DIV dir="auto"&gt;I tried this also but still getting same error.&amp;nbsp;&lt;/DIV&gt; &lt;DIV dir="auto"&gt;&lt;BR /&gt; &lt;/DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------Original Message------&lt;BR /&gt;&lt;BR /&gt;Hi,&lt;BR /&gt;There should be &lt;STRONG&gt;space between&lt;/STRONG&gt; &lt;STRONG&gt;1 and Select&lt;/STRONG&gt; you have missed the space it should be&amp;nbsp;&lt;SPAN&gt;rn &amp;gt; 1 Select * from [Sheet1$]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Saumitra Sharma&lt;BR /&gt;Consultant&lt;BR /&gt;EY&lt;BR /&gt;Indian/Christmas&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Sep 2019 05:19:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75143#M27748</guid>
      <dc:creator>MohiniShelke</dc:creator>
      <dc:date>2019-09-17T05:19:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75144#M27749</link>
      <description>Hi Mohini,&lt;BR /&gt;&lt;BR /&gt;Can you post your vbo here. Let me check.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Shashank Kumar&lt;BR /&gt;DX Integrations Partner Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Singapore&lt;BR /&gt;+6581326707&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Sep 2019 04:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75144#M27749</guid>
      <dc:creator>shashank.kumar280</dc:creator>
      <dc:date>2019-09-18T04:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75145#M27750</link>
      <description>&lt;DIV class="uconBody"&gt;&lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; Hello&amp;nbsp;&lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; I have attache My Process and also the input file.&lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; Please check and let me know what is the error?&lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);"&gt; &lt;BR /&gt; &lt;/DIV&gt; &lt;DIV&gt; &lt;DIV dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif"&gt; &lt;DIV dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif"&gt; &lt;P style="margin-top: 0;margin-bottom: 0"&gt; &lt;/P&gt;&lt;P style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;/P&gt; &lt;P style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; Thanks &amp;amp; Regards,&lt;/P&gt; &lt;P style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;BR /&gt; &lt;/P&gt; &lt;P dir="ltr" style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;B&gt;Mohini Shelke&lt;/B&gt;&lt;/P&gt; &lt;P dir="ltr" style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;SPAN style="color:rgb(0,111,201)"&gt;RPA Developer, &lt;/SPAN&gt;&lt;SPAN style="color:rgb(0,111,201)"&gt;vElement&lt;/SPAN&gt;&lt;SPAN style="color:rgb(0,111,201)"&gt; IT,&lt;/SPAN&gt;&lt;/P&gt; &lt;P dir="ltr" style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;/P&gt; &lt;DIV&gt;Cell : (+91)9503221751&lt;/DIV&gt; &lt;P style="margin-top: 0px;margin-bottom: 0px"&gt; &lt;/P&gt;&lt;P dir="ltr" style="margin-top: 0px;margin-bottom: 0px;font-family: Calibri,Helvetica,sans-serif;font-size: 16px"&gt; &lt;A href="https://velement.io/"&gt;https://velement.io/&lt;/A&gt;&lt;BR /&gt; &lt;/P&gt; &lt;DIV&gt;&lt;BR /&gt; &lt;/DIV&gt; &lt;/DIV&gt; &lt;span class="lia-inline-image-display-wrapper" image-alt="22323.gif"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/22459i06818E13FF2528F6/image-size/large?v=v2&amp;amp;px=999" role="button" title="22323.gif" alt="22323.gif" /&gt;&lt;/span&gt;&lt;BR /&gt; &lt;/DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------Original Message------&lt;BR /&gt;&lt;BR /&gt;Hi Mohini,&lt;BR /&gt;&lt;BR /&gt;Can you post your vbo here. Let me check.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Shashank Kumar&lt;BR /&gt;DX Integrations Partner Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Singapore&lt;BR /&gt;+6581326707&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Sep 2019 09:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75145#M27750</guid>
      <dc:creator>MohiniShelke</dc:creator>
      <dc:date>2019-09-18T09:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75146#M27751</link>
      <description>Hi mohini,&lt;BR /&gt;&lt;BR /&gt;That SQL query is not working for OLEDB....i have updated the distinct query now it's storing the unique value only however i have not incuded all the columns in the query because all the column does not contain the duplicate value for example if you see user id 121477&amp;nbsp; some of the column like( &lt;STRONG&gt;Training Topics, Training Title, Training vendor and so on&lt;/STRONG&gt;) these column does not have duplicate value hence i have excluded those column name from the select query and kept only those column name who have the duplicate value also as a result you will not get those excluded column value in the collection......I have attached the XML please find&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Saumitra Sharma&lt;BR /&gt;Consultant&lt;BR /&gt;EY&lt;BR /&gt;Indian/Christmas&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Sep 2019 11:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75146#M27751</guid>
      <dc:creator>SaumitraSharma</dc:creator>
      <dc:date>2019-09-19T11:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Error in Query using OLE DB</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75147#M27752</link>
      <description>Hi Mohini,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please try the below query&lt;BR /&gt;&lt;BR /&gt;
&lt;P&gt;"SELECT MAX([UserID]) as [UserID] ,[User First Name],[Employee Preferred Name],[User E-mail],[Location]FROM [Sheet1$] GROUP BY[User First Name],[Employee Preferred Name],[User E-mail],[Location]"&lt;BR /&gt;&lt;BR /&gt;You have to define your required columns individually in both select clause and and group by clause.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Naga.&lt;/P&gt;
&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Naga Ratna Mareddy&lt;BR /&gt;Associate&lt;BR /&gt;cognizant&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Sep 2019 12:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Error-in-Query-using-OLE-DB/m-p/75147#M27752</guid>
      <dc:creator>NagaM</dc:creator>
      <dc:date>2019-09-19T12:47:00Z</dc:date>
    </item>
  </channel>
</rss>

