Viewing 15 posts - 16 through 30 (of 34 total)
a) different rows via different routes
A conditional split will produce more than one output & you can then perform different tasks on each output e.g. you may use the...
October 27, 2009 at 5:36 am
TheSQLGuru (10/27/2009)
October 27, 2009 at 5:21 am
I do this by right clicking the chart choosing chart properties -> Value Axis Properties & then setting the Minimum to 0 & the Maximum to 100.
Or am I totally...
October 27, 2009 at 4:12 am
Right click on the table you want to copy in management Studio choose "Script Table As" -> "Create To" -> "Clipboard"
Make a connection to the server you want to copy...
October 27, 2009 at 3:58 am
OK - so log shipping copies (ships) transaction Logs from one server to another. The error is telling you that there are no transaction logs to copy on the source...
October 27, 2009 at 3:55 am
1) Is it possible to send multiple columns out put from conditional split
The Conditional Split will pass all columns through - it just sends different rows via different routes.
2)...
October 27, 2009 at 3:24 am
Hmm - well that's a bit more difficult. I use Configuration files a lot but I use XML ones. Typically I would run the same package multiple times from a...
October 26, 2009 at 2:59 pm
It does seem to be straight after it goes into single user mode something else beats the SPROC to the single connection but I like the idea of a TRY...
October 26, 2009 at 8:19 am
I see where you a re coming from in disabling TCPIP but that's a step too far for me & it would affect other databases as well....
October 26, 2009 at 7:35 am
Sproc is in the same database (AttendaDW) which is what makes in so damn annoying!! the next statement in the SPROC should just hop onto the connection & away I...
October 26, 2009 at 7:33 am
How about this? Set up 2 connection managers for the flat flat file one for " the other for ^ delimiter.
Then enable package configurtaions from the SSIS menu -> package...
October 26, 2009 at 6:48 am
Yep - this is exactly what I am doing
ALTER DATABASE AttendaDW
SET SINGLE_USER
WITH ROLLBACK IMMEDIATE
DECLARE @FGName varchar(50)
DECLARE @sqlvarchar(200)
DECLARE FG_cursor CURSOR FOR
SELECT FileGroupName FROM maintenance.getRequiredOldFGs
OPEN FG_cursor
FETCH NEXT FROM FG_cursor INTO...
October 26, 2009 at 4:28 am
Hi - I think you need to pass the data from the Flat file source straight into the lookup, then compare each row, any rows which match are the same...
October 26, 2009 at 4:09 am
You could use a script component & use a few lines of VB to convert the date, e.g. something like this??
Public Overrides Sub Input0_ProcessInputRow(ByVal Row As Input0Buffer)
Dim strDate=Row.MyDate...
October 26, 2009 at 3:47 am
Hi - I would set up my your query like this in the Data source of the data flow (assuming an oleDB source)
SELECT PaidWeight =
CASE
WHEN M.Weight = '0' THEN ?
ELSE...
October 26, 2009 at 3:34 am
Viewing 15 posts - 16 through 30 (of 34 total)