<?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 works, thankyou ! in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85604#M36576</link>
    <description>works, thankyou !</description>
    <pubDate>Tue, 03 May 2016 15:54:00 GMT</pubDate>
    <dc:creator>sneha_komatinen</dc:creator>
    <dc:date>2016-05-03T15:54:00Z</dc:date>
    <item>
      <title>Unable to perform 'Get Collection' action in 'Data - SQL Server' VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85599#M36571</link>
      <description>I intend to do the following:
1. Connect to BluePrism Database from Process Studio 
2. Execute certain query
3. Retrieve the output as a collection

Able to connect successfully to database but facing below error at 'get collection' stage --
Internal : Unexpected error Can't convert System.Guid to a Blue Prism data type.

I have tried 'Get CSV/Get CSV file' actions - which are working fine.
Could you please help with this error. Let me know if you need any more info.</description>
      <pubDate>Tue, 03 May 2016 11:09:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85599#M36571</guid>
      <dc:creator>sneha_komatinen</dc:creator>
      <dc:date>2016-05-03T11:09:00Z</dc:date>
    </item>
    <item>
      <title>If you are using windows</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85600#M36572</link>
      <description>If you are using windows authentication, please do not use username and password in ""Set Connection"" stage. Also write your query without using * symbol(Include column names in query). example:- Select name, id, description from [test].[dbo].[BPAPackage]</description>
      <pubDate>Tue, 03 May 2016 11:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85600#M36572</guid>
      <dc:creator>psagar</dc:creator>
      <dc:date>2016-05-03T11:48:00Z</dc:date>
    </item>
    <item>
      <title>Thanks Sagar, yes 'Set</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85601#M36573</link>
      <description>Thanks Sagar, yes 'Set connection' stage is working fine. And my query specifies the column list.
Problem is specific to 'Get Collection' action. Error as below.
Internal : Unexpected error Can't convert System.Guid to a Blue Prism data type.</description>
      <pubDate>Tue, 03 May 2016 12:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85601#M36573</guid>
      <dc:creator>sneha_komatinen</dc:creator>
      <dc:date>2016-05-03T12:37:00Z</dc:date>
    </item>
    <item>
      <title>BluePrism does not support</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85602#M36574</link>
      <description>BluePrism does not support GUID data type. If you have guid column in your query, please exclude that column from the query or you can convert that column into varchar like "" Select name, convert(varchar(50), userid) as userID from [test].[dbo].[BPAPackage]</description>
      <pubDate>Tue, 03 May 2016 13:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85602#M36574</guid>
      <dc:creator>psagar</dc:creator>
      <dc:date>2016-05-03T13:12:00Z</dc:date>
    </item>
    <item>
      <title>This error occurs because</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85603#M36575</link>
      <description>This error occurs because Blue Prism has specific data types, and Guid isn't one of these, so to get around the issue the code stage needs to be amended so that if a variable is of Guid type, it is first cast to string and then this will be held as a Blue Prism Text type in the collection. Because this involves modifying a VBO provided by Blue Prism, I'd recommend creating a copy and modifying that instead, but when doing so make sure you use the set connection from this ""copy"" object to ensure the global variables are set.
Within the code you will need to use specifier D to maintain the same format that Blue Prism uses (https://msdn.microsoft.com/en-us/library/97af8hh4(v=vs.110).aspx)</description>
      <pubDate>Tue, 03 May 2016 13:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85603#M36575</guid>
      <dc:creator>hassan_chaudhry</dc:creator>
      <dc:date>2016-05-03T13:17:00Z</dc:date>
    </item>
    <item>
      <title>works, thankyou !</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85604#M36576</link>
      <description>works, thankyou !</description>
      <pubDate>Tue, 03 May 2016 15:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-perform-Get-Collection-action-in-Data-SQL-Server-VBO/m-p/85604#M36576</guid>
      <dc:creator>sneha_komatinen</dc:creator>
      <dc:date>2016-05-03T15:54:00Z</dc:date>
    </item>
  </channel>
</rss>

