EXERCISE TOPIC▼
SSIS EXERCISES▼
SSIS INTEGRATION SERVICES EXERCISES▼
- Data flow tasks (4)
- Basic data transforms (1)
- Data conversion transforms (2)
- Conditional split transforms (5)
- Lookup transforms (4)
- Looping over files (3)
- Looping over rows (2)
- Merge joins (1)
- Previous versions (18)
- Script tasks (1)
- Variables in script (1)
- Script components (2)
- Accessing file attributes (2)
SSIS Integration Services | Previous versions exercise | Create a new column within a script component
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
You can learn how to do this exercise on the relevant Wise Owl classroom training course (sadly for the moment only in the UK).
Software ==> | SSIS Integration Services (46 exercises) |
Version ==> | SSIS 2012 and later |
Topic ==> | Previous versions (18 exercises) |
Level ==> | Average difficulty |
You need a minimum screen resolution of about 700 pixels width to see our exercises. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
Create a new package called Derived columns are better. Within this create a single data flow task as follows:

The task should import rows from the Series worksheet in the Excel workbook in the above folder, then use a script component to set the value of a new column called RunLength to equal the duration of each series in days (see below for code excerpt). Finally, the task should use Union All as a dead-end destination, and display the results in a data viewer on the pipe leading to this.
Here's some sample code to work out the difference between two dates in days, which may help you:
// take the time difference, and convert it into days
Row.RunLength = (Row.Finishdate - Row.Startdate).Days;
When you run your package, you should see this in the data viewer:

The first few series in the data viewer, showing the length of the series in days.
Final thought: why do you suppose that this exercise suggests giving the package the name it does?