Viewing 15 posts - 12,871 through 12,885 (of 13,855 total)
Gift Peddie (4/23/2009)
I don't think that is a better source than Jeffrey who is running solution with it and the experts at SSIS.
Huh??? The quotation backs up what Jeffrey says.
April 23, 2009 at 6:05 pm
Here is a direct quotation from "Professional SQL Server 2005 Integration Services" regarding this:
As for SSIS, you'll have to use at least Standard Edition to receive the bulk of the...
April 23, 2009 at 5:49 pm
You do not need to extract data into a holding area first - just do it all in one statement, eg (untested):
INSERT into [dbname].[schema].target(Field1, Field2, ... Fieldn)
SELECT Field1, Field2, ......
April 23, 2009 at 5:21 pm
This would seem to come down to MS's definition of 'standard' and 'advanced' transforms - has anyone seen them listed/categorised one by one?
April 23, 2009 at 4:59 pm
That was a constructive comment, in my opinion. Perhaps a little terse.
It seems that you already know exactly what you want to do and how it should be implemented. I...
April 23, 2009 at 4:54 pm
You really are new!
I suggest that you search around on the Internet for something like "Creating your first SSIS package" to find the sort of step-by-step detail that you are...
April 23, 2009 at 7:50 am
If both of your tables are in SQL Server, just issue the relevant INSERT and UPDATE queries using Execute SQL tasks ...
Or avoid SSIS completely and use a standard SQL...
April 23, 2009 at 7:33 am
It's always easier to find something when you know roughly where it is:-D Glad I could help.
April 23, 2009 at 6:56 am
On your dataflow, if your source is DataReader, Excel or OLE DB, you have the option of setting the SQL Command property within that source.
In your case, set it along...
April 22, 2009 at 5:24 pm
Not done it myself, but in the Execute SQL task change source type to FileConnection and then set the FileConnection property accordingly ... Looks like it should work.
April 22, 2009 at 5:14 pm
I made this work by creating a script transformation component and adding an extra 'RowNum' column as an output.
Within the script component, after defining the new output column, you just...
April 22, 2009 at 5:02 pm
See my preceding post - the line in bold. It was not showing correctly before, so I just edited it. Maybe that was your problem.
April 21, 2009 at 7:24 pm
Add a Script task after your SQL task.
Click on Script and In ReadOnlyVariables, enter User::InDatabase
Click on Design Script and enter just one line in Main() to make it look like...
April 21, 2009 at 7:02 pm
Edit the task. Choose 'Expressions' and create a new one by clicking on the ellipsis, then select SourceDatabaseName as your property and enter the variable expression under 'Expression' ...
April 21, 2009 at 6:34 pm
I think I would handle this slightly differently.
I would split the input columns so that the numeric data is in one column and the 'special' character is in another.
I would...
April 21, 2009 at 5:48 pm
Viewing 15 posts - 12,871 through 12,885 (of 13,855 total)