Viewing 15 posts - 13,021 through 13,035 (of 13,838 total)
This is a common complaint with Excel input data. Check out this thread for some further details and ideas:
http://www.sqlservercentral.com/Forums/Topic423760-148-1.aspx
Phil
December 1, 2008 at 7:35 pm
🙂 I'm sorry I was so slow to understand what you were trying to do.
November 25, 2008 at 1:17 pm
So you want to use SQL Agent to start a Windows service? What happens if the service is already running?
What login credentials is the SQL Agent service running with? Can...
November 25, 2008 at 12:57 pm
SMAZ (11/25/2008)
1. If file file format is xls then
1.1 convert XLS file into CSV format
...
November 25, 2008 at 12:40 pm
The version of VB.NET used in SSIS is, I believe, called VB.NET for Applications and is not the full-blown development environment in which you have developed your earlier piece of...
November 25, 2008 at 12:32 pm
If this is pure numeric data in a CSV file, it should not be surrounded by text qualifiers ("). Try stripping these text qualifiers out from this field.
Phil
November 25, 2008 at 3:59 am
I had a quick look at the code: so for selected rows in a source SQL Server table you are executing an FTP process?
You need to get yourself on an...
November 24, 2008 at 2:13 pm
As you have things up and working, you've probably lost the urge to change how it operates now (I know I would!).
And given that you have so few source records,...
November 24, 2008 at 1:36 pm
The script task, as you have discovered, is just a place where you write VB.NET code and was, I believe, included to cover those situations where the other SSIS components...
November 24, 2008 at 1:19 pm
Just use a lookup from your source 'Item' data to retrieve the ID of the newly created Item and then use that to populate your ItemComments. No need for the...
November 23, 2008 at 3:19 pm
If it's numeric, cast to integer, otherwise leave as is:
declare @value varchar(10)
Set @Value = '0000006708'
if IsNumeric(@value) = 1
select cast(@value as integer)
else
select @value
Phil
November 19, 2008 at 8:13 pm
Not hard with a script component. Here's a snippet - assumes variables declared and strFilepath, strFilename have been set:
'Connect to the CSV file and...
November 19, 2008 at 7:19 pm
What do you want to do in those cases where the date is invalid? Error? Import the record with a null date?
November 18, 2008 at 6:16 pm
You want to execute a query that returns a resultset and iterate around that? Can you provide more detail about what you are trying to achieve?
November 18, 2008 at 3:16 pm
Excellent! Good to hear.
Phil
November 18, 2008 at 5:11 am
Viewing 15 posts - 13,021 through 13,035 (of 13,838 total)