No announcements
Found 2757792 threads
-
0 Votes
Loop to get Columns and Values
Hi Jassim Rahma, We could also use entity framework to achieve it. like this: #models public partial class Blog { public Blog() ...Answered | 2 Replies | 572 Views | Created by Jassim Rahma - Sunday, July 24, 2016 4:35 PM | Last reply by Zhanglong Wu - Tuesday, July 26, 2016 3:22 AM -
0 Votes
Foreach loop to update gridview
Your own example as a foreach would read: foreach (DataGridViewRow ...Answered | 4 Replies | 18220 Views | Created by Scorgi - Wednesday, October 28, 2009 10:48 AM | Last reply by moji87 - Wednesday, February 6, 2013 6:47 PM -
2 Votes
Looping Cursor through columns of a Row
And i found cursors could loop through the rows of a table, but only if the table returns one column it would be handy.Answered | 19 Replies | 32545 Views | Created by Gopi S V - Wednesday, April 24, 2013 8:56 AM | Last reply by Chris Sijtsma - Friday, April 26, 2013 3:25 PM -
0 Votes
Foreach Loop - Get the Directories
I have several directories I want to loop into.Answered | 5 Replies | 18958 Views | Created by TarugoKing - Tuesday, January 18, 2011 5:48 PM | Last reply by SSISJoost - Thursday, January 20, 2011 8:49 PM -
0 Votes
ForEach Loop
I have a ForEach loop.Answered | 4 Replies | 3376 Views | Created by Pete Newman - Friday, June 22, 2012 3:38 PM | Last reply by ArthurZ - Friday, June 22, 2012 4:36 PM -
4 Votes
foreach loop how to find previous and next item while on current item
foreach(Data d in Datalist) { d.Name = compare with next item?Answered | 6 Replies | 80775 Views | Created by Jumpingboy - Wednesday, November 14, 2012 9:36 PM | Last reply by Bob Shen - Friday, November 23, 2012 5:49 AM -
0 Votes
foreach loop not modifying first value
index values, temp will get these values on each step ( on each step temp will be 0) on each step "temp" will get value of ...Answered | 3 Replies | 3026 Views | Created by Akash_delhi - Thursday, November 25, 2010 10:28 AM | Last reply by mohammad ansari - Thursday, November 25, 2010 7:51 PM -
0 Votes
Problem with ForEach Loop and rowcount
You can avoid package from failing by setting Propagate variable to false and continue with next sheet on failure.Answered | 2 Replies | 980 Views | Created by SuzSQL - Monday, March 3, 2014 8:35 PM | Last reply by Visakh16 - Thursday, March 6, 2014 4:45 PM -
3 Votes
foreach Loop Performance
I agree with Manu - classic loops seem faster than using an iterator.Answered | 7 Replies | 3804 Views | Created by AhmadMou - Wednesday, August 8, 2012 1:40 PM | Last reply by rachmann - Friday, August 10, 2012 12:34 AM -
1 Votes
UnPivot in the foreach loop container
If yes you can simply order by it first followed by default ordering of UNPIVOT (ordinal number you set inside output column propertes)Please Mark This As Answer if it helps to solve the ...Answered | 5 Replies | 1305 Views | Created by Gilles Machetto - Tuesday, March 11, 2014 3:24 PM | Last reply by Gilles Machetto - Wednesday, March 19, 2014 5:36 AM -
1 Votes
Next Not Looping
Did you get any error message?Answered | 3 Replies | 390 Views | Created by BAT JME - Wednesday, December 2, 2015 5:47 PM | Last reply by Fei Xue - Thursday, December 3, 2015 5:37 AM -
0 Votes
Need help with a ForEach Loop Container
essentially, what happens is that the foreach loop container would store the file name in an ssis variable.Answered | 3 Replies | 3730 Views | Created by PReardon - Tuesday, March 10, 2009 6:40 PM | Last reply by Duane Douglas - Friday, March 13, 2009 8:28 AM -
0 Votes
SSIS - Foreach Loop
You could use my regex foreach loop with a regular expression like: ^.*\.Answered | 5 Replies | 3460 Views | Created by Dharmendra.BI - Friday, July 6, 2012 8:17 AM | Last reply by Sifiso W. Ndlovu - Friday, July 6, 2012 9:56 AM -
0 Votes
set variable in foreach loop
If you have your package structured as a ForEach Loop Container that's configured to iterate over the files in the folder, and to fill a variable ...Answered | 7 Replies | 803 Views | Created by MTL2014 - Wednesday, October 26, 2016 3:10 AM | Last reply by RyanAB - Thursday, October 27, 2016 1:02 AM -
0 Votes
Row Count of various destinations within a Foreach Loop Container
So after the Foreach loop you will have the total value in the above variable.Answered | 12 Replies | 10833 Views | Created by psudershan - Friday, November 13, 2009 12:17 PM | Last reply by Shivendoo Kumar Dubey - Monday, October 14, 2019 3:26 AM -
0 Votes
foreach loop iteration
Thanks, Shalin Do you have your file system task in the foreachloop our outside the foreach ...Answered | 9 Replies | 4918 Views | Created by Shalin83 - Thursday, July 7, 2011 6:22 PM | Last reply by Shalin83 - Friday, July 8, 2011 2:23 PM -
0 Votes
Textbox with table next to it and 1st value is on next row.
I have no nulls nor blanks in my ouput with no header column as well.Answered | 6 Replies | 4297 Views | Created by Ismailc - Monday, November 2, 2009 11:26 AM | Last reply by Ismailc - Tuesday, November 3, 2009 12:47 PM -
2 Votes
Foreach loop container Foreach File Enumerator sort files
"ld asc" ' name of the column from the select statement dtt = dv.ToTable("dtt") i = 0 For Each row In dtt.Rows ...Answered | 27 Replies | 39725 Views | Created by Cylon2005 - Wednesday, April 4, 2007 11:49 PM | Last reply by Sifiso Ndlovu - Thursday, August 3, 2017 6:41 PM -
0 Votes
Run Stored Procedures Outside a Foreach Loop Container, without the Foreach Loop waiting for completion prior to moving on
For instance, lets say i enter the foreach loop and product1 starts to process.Answered | 5 Replies | 1654 Views | Created by george0112 - Tuesday, August 13, 2013 3:14 PM | Last reply by jakubk - Wednesday, August 14, 2013 2:58 AM -
0 Votes
Difference between For and Foreach loop
for loop is maintained in condition level... it executed 0 or more times While for each loop repeats a group of ...Answered | 7 Replies | 28778 Views | Created by Pratyaksh - Friday, May 7, 2010 6:37 AM | Last reply by ADB26 - Thursday, January 5, 2012 5:38 AM - Items 1 to 20 of 2757792 Next ›
No announcements