<?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: Collection to SQL Server Database in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116953#M52346</link>
    <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2407"&gt;@Mohamad_Dakkouri&lt;/a&gt;&amp;nbsp;It worked for me!&lt;BR /&gt;Thank you very much!&lt;/P&gt;</description>
    <pubDate>Sun, 17 Nov 2024 12:28:37 GMT</pubDate>
    <dc:creator>DipinDevP</dc:creator>
    <dc:date>2024-11-17T12:28:37Z</dc:date>
    <item>
      <title>Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116909#M52329</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a requirement to write a large set of collection data to an SQL server database table. Currently I am looping collection and execute insert query one by one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any method to insert all the collection data as a single unit or bulk in Blue Prism?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 12:53:10 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116909#M52329</guid>
      <dc:creator>DipinDevP</dc:creator>
      <dc:date>2024-11-14T12:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116912#M52332</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/58907"&gt;@DipinDevP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually with one of my customer i work with Sql server and what we do is the following:&lt;/P&gt;&lt;P&gt;We loop all the collection and we insert the request in a text data item [query].&lt;/P&gt;&lt;P&gt;How?&lt;/P&gt;&lt;P&gt;With a&lt;SPAN&gt;&amp;nbsp;calculation stage. Something like [query]&amp;amp;"your new insert request" and we store it in query text data item.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Then we make the execution with the data item [query] that contains our Sql insert request (in one time)&lt;/P&gt;&lt;P&gt;Is it clear for you ?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 18:46:39 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116912#M52332</guid>
      <dc:creator>Mohamad_Dakkouri</dc:creator>
      <dc:date>2024-11-14T18:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116918#M52333</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/58907"&gt;@DipinDevP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For SQL server there is a bulkl insert query you can run but it will insert from a file rather than from a collection. e.g.&amp;nbsp;&lt;SPAN&gt;BULK &lt;/SPAN&gt;&lt;SPAN class=""&gt;INSERT&lt;/SPAN&gt;&lt;SPAN&gt; Sales.Orders &lt;/SPAN&gt;&lt;SPAN class=""&gt;FROM&lt;/SPAN&gt; &lt;SPAN class=""&gt;'\\SystemX\DiskZ\Sales\data\orders.dat'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If its a collection you need to use then likely you need to go through this line by line and insert each one using a loop or alternatively you can do this in a code stage using a for each loop after although this would do essentially the same thing it might work a little faster.&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 10:35:33 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116918#M52333</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2024-11-15T10:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116936#M52340</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2407"&gt;@Mohamad_Dakkouri&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2654"&gt;@michaeloneil&lt;/a&gt;for your suggestions!&lt;/P&gt;&lt;P&gt;I am trying both the approaches.&lt;/P&gt;&lt;P&gt;I am facing another issue now related to Time Zone, while using looping approach.&lt;/P&gt;&lt;P&gt;I am using Get CSV Text As Collection action (File-Utility Management object) to get the CSV data as collection, but Date Time column values are changing to UTC time zone even I tried with datatype Text in collection.&lt;/P&gt;&lt;P&gt;Example: CSV value -&amp;nbsp;05-11-2024 14:15:00&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Output Collection value - 05-11-2024 08:45:00&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions to get the DateTime value as exactly in the CSV file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2024 05:40:58 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116936#M52340</guid>
      <dc:creator>DipinDevP</dc:creator>
      <dc:date>2024-11-17T05:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116937#M52341</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/58907"&gt;@DipinDevP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is a lot of way to do it.&lt;/P&gt;&lt;P&gt;If you are looking for rapidity we coded a custom code that do this. But before using jt you need to ensure that there is no row without a date type in your column.&lt;/P&gt;&lt;P&gt;If you are confortable with this i can give you the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2024 05:59:51 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116937#M52341</guid>
      <dc:creator>Mohamad_Dakkouri</dc:creator>
      <dc:date>2024-11-17T05:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116938#M52342</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2407"&gt;@Mohamad_Dakkouri&lt;/a&gt;&amp;nbsp;There will be values always in DateTime column, which is mandatory to have value in it.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2024 06:24:56 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116938#M52342</guid>
      <dc:creator>DipinDevP</dc:creator>
      <dc:date>2024-11-17T06:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116939#M52343</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/58907"&gt;@DipinDevP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I mean value that are not a date time datatype for instance first row is ok '23/03/2022 09:12:10' and second row is (-----). The code will not work because of the (----)&lt;/P&gt;&lt;P&gt;You see what i mean ?&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2024 06:29:21 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116939#M52343</guid>
      <dc:creator>Mohamad_Dakkouri</dc:creator>
      <dc:date>2024-11-17T06:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116940#M52344</link>
      <description>&lt;P&gt;Yes. I understand. All the rows wiil have values in DateTime format in our case.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2024 06:33:50 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116940#M52344</guid>
      <dc:creator>DipinDevP</dc:creator>
      <dc:date>2024-11-17T06:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116952#M52345</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/58907"&gt;@DipinDevP&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Well,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Follow these steps.&lt;/P&gt;&lt;P&gt;Go to colection manipulation add a new action name it [Apply Function UTC To Local on column - CUSTOM], then drag and drop a code stage and name it&amp;nbsp;UTC To Local CUSTOM and publish it like this :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_0-1731831039312.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39835i41E2809CF6EF94A0/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_0-1731831039312.png" alt="Mohamad_747_0-1731831039312.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Open the code stage and provide these for input :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_1-1731831070474.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39836i07EEBE0738D87DF7/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_1-1731831070474.png" alt="Mohamad_747_1-1731831070474.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do the same for output&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_2-1731831086184.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39837i9D835AAC4396DE07/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_2-1731831086184.png" alt="Mohamad_747_2-1731831086184.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In Code stage put this :&amp;nbsp;&lt;/P&gt;&lt;P&gt;--------------------------------------------------------&lt;/P&gt;&lt;DIV&gt;Try&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Dim local As Date&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Dim columnIndex As Integer = In_DataTable.Columns.IndexOf(Field_Name)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; If columnIndex &amp;gt;= 0 Then&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; For i As Integer = 0 To In_DataTable.Rows.Count - 1&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim utcDate As Date = In_DataTable.Rows(i)(Field_Name)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim utcDateTime As DateTime = DateTime.SpecifyKind(utcDate, DateTimeKind.Utc)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If Not String.IsNullOrEmpty(Time_Zone_ID) Then&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim tz As TimeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById(Time_Zone_ID)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; local = TimeZoneInfo.ConvertTimeFromUtc(utcDateTime, tz)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Else&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; local = utcDateTime.ToLocalTime()&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;local = DateTime.SpecifyKind(local, DateTimeKind.UTC)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; In_DataTable.Rows(i)(Field_Name) = local&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Next&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Out_DataTable = In_DataTable&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Message = ""&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Success = True&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Else&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Success = False&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Message = "Column '" &amp;amp; Field_Name &amp;amp; "' does not exist in the input collection."&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; End If&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Catch e As Exception&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Success = False&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Message = e.Message&lt;/DIV&gt;&lt;DIV&gt;End Try&lt;/DIV&gt;&lt;P&gt;--------------------------------------------------------&lt;/P&gt;&lt;P&gt;Like this :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_3-1731831151571.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39838i59E7561C0A4C24DE/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_3-1731831151571.png" alt="Mohamad_747_3-1731831151571.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Your action should look like this :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_4-1731831214220.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39839iFC84FB2530C35741/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_4-1731831214220.png" alt="Mohamad_747_4-1731831214220.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Dont forget to put the inputs in start stage and the output in end stage.&lt;/P&gt;&lt;P&gt;Save and go to process now.&lt;/P&gt;&lt;P&gt;Lets make a test.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have these csv file see below :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_5-1731831294705.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39840i70C97FD920C63164/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_5-1731831294705.png" alt="Mohamad_747_5-1731831294705.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When i import it inside Blue Prism i have this :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_6-1731831346228.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39841iE51F22634F4CCFAD/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_6-1731831346228.png" alt="Mohamad_747_6-1731831346228.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Notice Blue Prism make the conversion to UTC by default.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now i want to use my CUSTOM CODE, see below the parameters :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_7-1731831594620.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39842i57F73B040E4C1EAD/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_7-1731831594620.png" alt="Mohamad_747_7-1731831594620.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Notice that i leave the timezone empty because its already set by Blue Prism but you can provide&lt;/P&gt;&lt;P&gt;some of these inputs for timezone id :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;"Eastern Standard Time"&lt;/SPAN&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN class=""&gt;"Central Standard Time"&lt;/SPAN&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN class=""&gt;"Mountain Standard Time"&lt;/SPAN&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN class=""&gt;"Pacific Standard Time"&lt;/SPAN&gt;&amp;nbsp;, "&lt;SPAN class=""&gt;Alaskan Standard Time"&lt;/SPAN&gt;&amp;nbsp;, "&lt;SPAN class=""&gt;Hawaiian Standard Time",&amp;nbsp;Central Europe Standard Time",&amp;nbsp;"India Standard Time"&lt;/SPAN&gt;&amp;nbsp;and there is more &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Try to leave it blank at the begining and if its not working for you try to put your time zone id.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_8-1731831609239.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39843i13B840D91CA53902/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_8-1731831609239.png" alt="Mohamad_747_8-1731831609239.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Your process should look like this :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_9-1731831665504.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39844i05A38F0A96C7EE97/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_9-1731831665504.png" alt="Mohamad_747_9-1731831665504.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Now run and you will have the same wanted value see below :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mohamad_747_10-1731831783145.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/39845iDCA8204CDCAF7586/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Mohamad_747_10-1731831783145.png" alt="Mohamad_747_10-1731831783145.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If i answered your request please put &lt;STRONG&gt;best answer&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2024 08:28:05 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116952#M52345</guid>
      <dc:creator>Mohamad_Dakkouri</dc:creator>
      <dc:date>2024-11-17T08:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Collection to SQL Server Database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116953#M52346</link>
      <description>&lt;P&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/2407"&gt;@Mohamad_Dakkouri&lt;/a&gt;&amp;nbsp;It worked for me!&lt;BR /&gt;Thank you very much!&lt;/P&gt;</description>
      <pubDate>Sun, 17 Nov 2024 12:28:37 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Collection-to-SQL-Server-Database/m-p/116953#M52346</guid>
      <dc:creator>DipinDevP</dc:creator>
      <dc:date>2024-11-17T12:28:37Z</dc:date>
    </item>
  </channel>
</rss>

