Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ilin
  • Order by date
  1. ilin

    File Operations in Script Task

    Do you have or can advice examples? Thanks
  2. ilin

    File Operations in Script Task

    I have DTS Package,which I need to migrate to SSIS. In my DTS I have 3 ActiveX scripts: one creates file with different name every day(Date Extension like FileName_YYYYMMDD). Then data transformation transform data from stored proc to this file. Second one creates another file (title) with...
  3. ilin

    Get Value for Global SSIS Variable in Script Task

    Thanks Paul very much for your time and help
  4. ilin

    Get Value for Global SSIS Variable in Script Task

    I found the problem. I had evaluate as expresion property set as true. After I fixed it it is correct
  5. ilin

    Get Value for Global SSIS Variable in Script Task

    Thanks Paul, I have the same. I have FileName as ReadOnlyVariables and FileFound As ReadWriteVariables. Also in Script Task Expressions I have @[User::FileFound] On a Package Level I have Variable FileFound on User NameSpace without any value in it, declared as String. Code is exactly as I...
  6. ilin

    Get Value for Global SSIS Variable in Script Task

    Sorry Paul for the confusion and thanks for your help. But even in my first message I stated that I am trying to migrate ActiveX Script in 2000 to ScriptTask in SSIS 2005. I created Package Scope variables FileName and FileFound as String. In ReadWriteVariables I put FileFound and in expression...
  7. ilin

    Get Value for Global SSIS Variable in Script Task

    Yes, this is a ReadWrite Variable. So I guess I need to lock it, right?
  8. ilin

    Get Value for Global SSIS Variable in Script Task

    I had it as string, but it still does not work even I changed to boolean. Should I lock the global variable before I assign value to it?
  9. ilin

    Get Value for Global SSIS Variable in Script Task

    How can I assign value to Global variable in SSIS using ScriptTask. The statement Dts.Variables("FileFound").Value = "1" gives me an error. Any advice? Should I lock variable before assigning value and if yes what would be the statement?
  10. ilin

    Get Value for Global SSIS Variable in Script Task

    Paul, Thanks very much, it is so simple and it works!
  11. ilin

    Get Value for Global SSIS Variable in Script Task

    In DTS I used workflow ActiveX script to determine File Existence and depends on the result run one of the following tasks. I had a global variable with FileName. Then in ActiveX script I had script like this: Function Main() Dim oFSO, sFileName sFilename =...

Part and Inventory Search

Back
Top