Viewing 15 posts - 11,401 through 11,415 (of 11,678 total)
Another option is to use a temporary table to store your update records.
Then, after the data flow task, you can issue one update statement against the destination table using the...
May 25, 2010 at 2:22 am
I don't believe it is possible to do it right away in the Flat File Source.
However, you can add a derived column component to add the doubel quotes:
"\" + MyColumn...
May 25, 2010 at 2:18 am
Phil Parkin (5/21/2010)
da-zero (5/21/2010)
May 21, 2010 at 7:30 am
Yeah, I'm very fortunate to have never worked with Access before, so I didn't realize the getdate() function doesn't exist in Access. Apparently Now() is the equivalent (Google is your...
May 21, 2010 at 7:10 am
Can you show us the query that you are using?
May 21, 2010 at 5:53 am
If it is just nvarchar to varchar casting, do the following:
create a global temp table (or a fixed staging table, it doesn't really matter) that has the exact same structure...
May 21, 2010 at 5:51 am
Has the number that comes from the input file always two digits after the decimal point?
May 21, 2010 at 5:44 am
sachinrshetty (5/21/2010)
I have used below query
SELECT ...
May 21, 2010 at 5:41 am
You have two options:
either filter on the data when you select it from the Access database (with a WHERE clause or something like that).
EDIT: Phil Parkin apparently already suggested this...
May 21, 2010 at 4:53 am
Can you give us the exact error, the expression that you use in the derived column editor and some sample data?
May 21, 2010 at 4:31 am
tommyh (5/21/2010)
da-zero (5/20/2010)
I count 7 types of indexes:
clustered, non-clustered, unique, index with included columns, indexed views, full-text and xml.
See http://msdn.microsoft.com/en-us/library/ms175049(v=SQL.90).aspx.
Even in the explanation given I...
May 21, 2010 at 1:39 am
Why is the correct answer 4?
I count 7 types of indexes:
clustered, non-clustered, unique, index with included columns, indexed views, full-text and xml.
See http://msdn.microsoft.com/en-us/library/ms175049(v=SQL.90).aspx.
Even in the explanation given I count more...
May 20, 2010 at 11:54 pm
I think you have to deploy the entire cube.
But I believe that won't take so long, unless there is massive validation to do.
May 20, 2010 at 5:35 am
The following set-up should work:
in your script task, create 3 variables that will hold the counters.
Create a nested if then else statement in the Input0_ProcessInputRow method, which checks the value...
May 20, 2010 at 5:28 am
To be short: you can't do dynamic column mapping with out-of-the-box SSIS. The metadata will always be screwed over.
The only option is to use script tasks/components to dynamically read/write your...
May 20, 2010 at 5:18 am
Viewing 15 posts - 11,401 through 11,415 (of 11,678 total)