Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
547 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
Getting at file attributes from FOREACH loop in SSIS |
---|
SSIS makes it easy to loop over files, but it's less obvious how to get at file attributes such as the date created or last modified date. To do this you'll need a scripting task, as explained by this blog. |
In this blog
I've previously blogged on how to loop over files in Integration Services, writing the name and path of each one found to a SQL Server table. However, how do you just include files modified since a given date, or pick out the most recently created one? This blog shows you the technique you'll need!
To save you time, gentle reader, here's the table I'm using for this example:
-- create a table to hold the files
CREATE TABLE tblFile(
-- number each file added (just a habit!)
FileId int IDENTITY(1,1) NOT NULL PRIMARY KEY,
-- the name of each file (including path)
FileName nvarchar(max) NULL,
-- when the file was last updated
LastUpdated date NULL
)
Just run this script in SQL Server Management Studio to create a table with 3 columns.
This is aimed at people who have been on our SSIS course, although you can probably get all of the information you need from my previous blog on looping over files alluded to above. Assume that we now have the following package:
The package deletes all of the rows in the files table, then adds then back in.
The main settings for the loop are as follows:
This loop will pick out all files with an SQL extension in a given folder (and all of its subfolders); yours could do something different.
Here are the variables I've used:
The variables capture the name of each file and - later, at any rate - the date it was last updated.
The loop over files captures each file name in the FileName variable:
The first (and only) bit of information returned for each file is its name and path, which we capture in the FileName variable.
Finally, here's the SQL statement being run each time round the loop:
This statement will insert a row into the table of files, substituting in the file name and when the file was last updated.
Here's the parameter mapping for this SQL statement:
The first question mark will become the file name, and the second the date it was last updated.
So far all we've done is get the name of the file; how do you get other attributes, such as its size, or when it was last updated? The only way seems to be to add a script task to get a reference to the file in code. First add the script task:
The script task to get at the file's details.
Now configure it (I'm using C# here, but the VB equivalent would be identical, apart from the choice of language):
We'll pass in the name of each file, and set when it was last updated.
Here's the C# script to get at the file's details:
public void Main()
{
// get the name of this file, including path
string filePath = Dts.Variables["FileName"].Value.ToString();
// get a reference to this file
System.IO.FileInfo eachFile = new System.IO.FileInfo(filePath);
// set when it was last updated (could also get other attributes)
Dts.Variables["LastUpdated"].Value = eachFile.LastWriteTime;
// finished OK
Dts.TaskResult = (int)ScriptResults.Success;
}
Because I'm feeling generous today, here's the VB equivalent code:
Public Sub Main()
'get the name of this file, including path
Dim filePath As String = Dts.Variables("FileName").Value.ToString
'get a reference to this file
Dim eachFile As New System.IO.FileInfo(filePath)
'set when it was last updated (could also get other attributes)
Dts.Variables("LastUpdated").Value = eachFile.LastWriteTime
'finished OK
Dts.TaskResult = Convert.ToInt32(ScriptResults.Success)
End Sub
Like magic, when you run this you'll get the date/time each file was last updated:
The results of running this improved package - we have the file update date/time.
Happy packaging!
Some other pages relevant to the above blog include:
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.