|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Wednesday, June 05, 2013 9:12 PM
Points: 1,034,
Visits: 2,611
|
|
|
|
|
|
Mr or Mrs. 500
      
Group: General Forum Members
Last Login: Wednesday, September 19, 2012 8:39 AM
Points: 595,
Visits: 1,226
|
|
Nice article.
I try to use the ForEach container as much as I can. Saves lots of work.
Converting oxygen into carbon dioxide, since 1955.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Yesterday @ 9:34 AM
Points: 1,
Visits: 161
|
|
Hi Tim,
wonderful article. However, when setting the vendor variable in the result set tab be sure to rename the property name (result name) to 0.
http://www.techsolutions55.com/microsoft/498b01c802393.php.
Thanks.
Francisco.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, June 11, 2013 8:00 PM
Points: 8,
Visits: 449
|
|
| That worked for me. I was wondering what I did wrong. Thanks Francisco.
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, June 30, 2011 9:01 AM
Points: 18,
Visits: 6
|
|
Nice article! I was wondering if I will be able to use configuration file for dynamically naming the output file. I have used dynamic out put file in some of my packages. But I could not use a configuration file for my settings while using file name dynamically. May be I am doing something wrong.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Wednesday, June 05, 2013 9:12 PM
Points: 1,034,
Visits: 2,611
|
|
Jananth, you can use a configuration file to set the filename, but when used in the context of this example, the filename declared in the expression would win out at runtime. Are you trying to define the output folder (rather than the filename) in the config file? If that's the case, you could set a variable to define the output folder in the config file, and append your dynamic filename to that folder name.
Let me know if this answers your question.
hth, Tim
Tim Mitchell SQL Server MVP www.TimMitchell.net @Tim_Mitchell
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, June 30, 2011 9:01 AM
Points: 18,
Visits: 6
|
|
| I am trying to use the file name itself in the config file.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Wednesday, June 05, 2013 9:12 PM
Points: 1,034,
Visits: 2,611
|
|
Sure, you can hard-code the filename in the config file if you want to use a single output file (rather than one file per iteration of the loop). Be aware that if you use repeating logic such as a ForEach loop, you'll need to set the flat file output to append rather than overwrite, otherwise you'll only get the data from the last iteration of the loop.
hth, Tim
Tim Mitchell SQL Server MVP www.TimMitchell.net @Tim_Mitchell
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Thursday, May 30, 2013 12:02 AM
Points: 11,
Visits: 137
|
|
Hello, Really nice article. I am newbie in this area. Can I implement the same in my environment? here is the scenario.
1. I have lot of different tables data to be extracted to flat files like table1, table2, table3.....tableXXX. 2. I need to run select * from each table and capturing the data in flat files by naming the file as table name. I am trying to use foreach loop in the case but getting error...I captured table names (table1, table2 etc.,) and Query (select * from table1, select * from table2 etc., ) to a temp table and then using the variables tablename and query as variables in the foreach loop container and ending with error.
So my question is ...can I use yours in my scenario? I heard some where that each table contains different columns and the each query leads to different columns and hence the columns are changing flatfile extraction is not possible. Is that correct? Can you kindly suggest some method to my schenario? Krishna.
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Wednesday, June 05, 2013 9:12 PM
Points: 1,034,
Visits: 2,611
|
|
Krishna,
Unfortunately, the most difficult scenarios to address are those with variable metadata. I understand that there are some custom components available for purchase that allow you to declare metadata outside the package (I think CozyRoc has something like this) but I've never used their tools so I can't speak to what they can or can't do.
An alternative could be to use a fully scripted solution (most likely a single Script Task) to read the file, create the table, and write the rows to the output.
hth, Tim
Tim Mitchell SQL Server MVP www.TimMitchell.net @Tim_Mitchell
|
|
|
|