Tagged Questions
The foreach-loop-container tag has no wiki summary.
3
votes
1answer
68 views
For each loop problem
I've some master categories and user groups, user groups are assigned to master categories. I am using the following code but it display only the last record in the table.. I need to display all ...
3
votes
1answer
2k views
SSIS Foreach Loop Folder as variable
I need to set the Folder in my Foreach loop to a variable location. I tried just adding the location to my package configuration, and it acted like it worked, but when I opened the configuration ...
2
votes
3answers
394 views
How do I programmatically get the list of MS Access tables within an SSIS package?
I have inherited a terribly written MS Access database that I need to import into SQL. The Access database has several thousand tables in it with field definitions that are identical. I have some ...
1
vote
1answer
33 views
Issue with position of data while displaying
I have 2 tables named authors & books. Authors must have a logo. I have to display this like author name , logo,then all the books of that author and so on. books table contain a field ...
1
vote
1answer
93 views
How can I bind a IEnumerable sequence to a container with multiple columns?
I believe that I couldn't find a proper title to explain my problem but I think this is the best possible short explanation.
Please let me explain the details.
I want to show a list of my pictures ...
1
vote
4answers
155 views
Remove duplicate values from Array
I can not "remove" the double values from an array even if I use the function array_unique!
<?php
$tags_array = array() ;
$query_tags = $mysql->Query("SELECT words AS kw FROM users ...
1
vote
1answer
173 views
For each loop and collision detection in Actionscript 3
I am in the progress of making a Flash game and currently I am doing the coding for collision detection. The collision detection will be for detecting if the player is running into obstacles, and if ...
1
vote
1answer
985 views
SSIS For Each File Loop and File System Task to copy Files
I'm using a files system task inside a for each loop container, just as described here:
link text
However, when I execute the package I get this error:
[File System Task] Error: An error occurred ...
0
votes
0answers
80 views
Using an SSIS variable in a DataFlow task
I have and SQL Execute task that gets me a list of years and save them into a an object variable, let's say "Years".
Then I have a ForEach Loop Counter that recieves thah variable, and inside that ...
0
votes
4answers
66 views
How to assign foreach loop to a variable?
I have this following code.
$sn_count = 1;
foreach($points as $point){
echo "<div class=\"points\">";
echo "<div class=\"serial\">".$sn_count."</div>";
echo "<div ...
0
votes
2answers
49 views
Loading last 7 days files with specific names in SSIS
I have a folder which gets a daily dump of 7 or 8 .xls files. Among all those files, I just need to load 2 files with a specific name.. ABC_datestamp.xls and XYZ_datestamp.xls.
The problem is I am ...
0
votes
1answer
37 views
XSLT order in months AND years
I have a problem. I have an XML tree which looks similar to this:
<wd:meta>
<wd:creation time="[TIMESTAMP]" />
<wd:title><![CDATA[Nice title]]></wd:title>
...
0
votes
2answers
80 views
Hello with a for loop with a nested foreach
I have the following php,
<ul>
<?php $count = count($products); ?>
<?php for($i=0; $i < $count; $i++ ): ?>
<li>
<?php foreach ...
0
votes
1answer
252 views
Problem inserting a user variable in connection expression
I am trying to import 110 excel files into a sql server database in SSIS2008.
I am at the the point where I have dragged in my foreach loop container, pointed to the correct folder. I have made a ...
0
votes
2answers
3k views
Using a variable from Foreach Loop Container in a SQL Task [SSIS]
Ok, I have a simple process...
Read a table and get the rows that
have a "StatusID" of 1. Simple.
Select ProductID from PreorderStatus where StatusID = 1
Foreach row returned from that
query, ...
-3
votes
1answer
87 views
Java, Using Iterator to search an ArrayList and delete matching objects
Basically, the user submits a String which the Iterator searches an ArrayList for. When found the Iterator will delete the object containing the String.
Because each of these objects contain two ...