Viewing 15 posts - 12,901 through 12,915 (of 13,874 total)
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
There is an SSIS Data Flow Transformation called a Merge Join, which takes as its inputs (sorted) data from two datasets and merges them in the way you want.
The staging...
April 21, 2009 at 5:26 pm
Or, depending on the nature of your source, you could have used 'SQL Command' as your data access mode and added a suitable WHERE clause to exclude the unwanted data.
April 21, 2009 at 5:17 pm
That is not what I mean. If you right click white space in the control flow window and select Variables, a list will be displayed. Column 1 is variable name,...
April 20, 2009 at 11:25 pm
Can you confirm the scope of your variables?
April 20, 2009 at 9:28 pm
Unless this needs to be done in (near) real time, a scheduled package containing a simple foreach loop should be sufficient for your needs ...
April 20, 2009 at 9:06 am
I added a derived column called 'Match' to a test transformation - expression as follows:
price == floor(price)
where price is a numeric(17,4) field and it worked perfectly, using the examples you...
April 20, 2009 at 12:35 am
I think I would be tempted to use an 'Expression and Constraint' Precedence Constraint to control the flow, as Excel files are not really errors, just a different path ...
Can...
April 18, 2009 at 9:18 pm
Jeffrey Williams (4/17/2009)
...
The permissions on the services appear to be correct - and shouldn't need to be changed. I would...
April 17, 2009 at 5:30 pm
Do you mean that you are having trouble writing the T-SQL? Or some other problem?
April 17, 2009 at 5:17 pm
Yep, you need to change Local System Account to something which has the appropriate access - a domain user.
April 17, 2009 at 5:05 pm
Panks (4/16/2009)
The problem is i am not a DBA, just a developer. So i can't
download and install just any...
April 17, 2009 at 3:50 am
Viewing 15 posts - 12,901 through 12,915 (of 13,874 total)