Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SSIS data conversion
Message
From
08/02/2016 08:59:19
 
 
General information
Forum:
Microsoft SQL Server
Category:
Business Intelligence
Miscellaneous
Thread ID:
01631053
Message ID:
01631056
Views:
41
>>How doe SSIS select the data type for excel columns and how can I override it.
>>
>>Thanks
>
>Nick, over the years I've been frustrated with the way that SSIS works with Excel. So if I'm able to convert the spreadsheet to a CSV file without any loss in functionality, I'll do so.
>
>Naomi's post might very well help - the IMEX property can be of great use - but I always try to use CSV where possible.


Thanks Kevin


I'd found a link about the IMEX property and it seems to solve my problem.


BTW this code seems to resolve the NULL filling in part of my previous issue with this data

declare @Case_ID nvarchar(255);

UPDATE [dbo].[Complaints]
SET
@Case_ID = COALESCE([Case ID],@Case_ID),
[Case ID] = COALESCE([Case ID], @Case_ID)


Nick
Previous
Reply
Map
View

Click here to load this message in the networking platform