About 1,260,000 results
Open links in new tab
  1. How to send the records from a table in an e-mail body using SSIS ...

    On the SSIS package, place the following tasks: Execute SQL task, Foreach loop container, Script task within the Foreach loop container and Send Email task. Configure the Execute SQL …

  2. Script Task - SQL Server Integration Services (SSIS)

    Feb 28, 2023 · Provide the custom script that the task runs. Specify the method in the VSTA project that the Integration Services runtime calls as the entry point into the Script task code. …

  3. Dynamically create table in SSIS data flow - Stack Overflow

    Aug 29, 2011 · Since you want your package to create a table and then populate it, you can create one using the Execute SQL task. Just give it the script to create your table.

  4. Getting started with the SSIS Script Task - SQL Server Tips

    Mar 18, 2016 · The SSIS Script Task allows you to add functionality to your SSIS package that does not already exist with the other predefined tasks. In this tip, we look at how to get started …

  5. Sending query result from a table via email in SSIS in a table format

    Feb 16, 2012 · I was able to send the query results using execute sql task then a for each loop container inside which i had a script task where the results were (stored in variables) …

  6. Is it possible to dynamically create a table from as SSIS source

    Jan 30, 2018 · What I would do: get the field list from somewhere, paste into excel and make a table creation script. You might also be able to use the import/export wizard to create your table.

  7. Send Multiple Query Result Sets with HTML Tabular Format Email in SSIS

    Jun 1, 2016 · In this tip, we will see how we can send a single or multiple query result sets in HTML table format in a single email using SSIS. Solution. Using the SQL Server Integration …

  8. SSIS C# Script Task Example - SQL Server Tips

    Apr 6, 2016 · In this new tip (third in the series – see Part 1 and Part 2), we will learn how to create an SSIS package using C# code, how to add tasks and execute them. If you do not …

  9. Coding and Debugging the Script Task

    Jan 29, 2024 · To debug the code in your Script task, set at least one breakpoint in the code, and then close the VSTA IDE to run the package in SQL Server Data Tools (SSDT). When …

  10. How to Create Tables Dynamically from Flat Files and load Data in SSIS ...

    We are going to use Script Task in this post to create table dynamically for each flat file and load it. Open SSDT ( SQL Server Data Tools) and create new SSIS Package. After that go ahead …

Refresh