Is there any native support for GUID / Uniqueidentifier in SSIS 2008 R2?
I am tasked to load the data from excel spreadsheets into SQL table using SSIS 2008 R2. Each load (excel sheet) has its batch number (GUID / Uniqueidentifier) generated within the package in order to identify the whole batch. Now when declaring the variables in SSIS I cant see any data type representing GUID / Uniqueidentifier. I can use string and cast that string into GUID but its failing too.
The only solution that I can think of is to use GUID as string all the way through SSIS and save into SQL table as varchar.
I dont know if this is the best option I have. Could someone please advise?
Thanks!