Viewing 15 posts - 12,706 through 12,720 (of 13,838 total)
I'm afraid that your logic is not quite sound 🙂
You are setting Bin1, Bin2, ..., Bin9 to the same value for each letter in the binary string - so they...
June 9, 2009 at 6:09 pm
Wow, that's what I call dedication - get that man a beer!
June 9, 2009 at 8:19 am
tobe_ha (6/9/2009)
I tried to understand the structure of the xml in the package. When I format the xml, afterwards the package cannot be loaded. "Error loading ..."
How can that be?...
June 9, 2009 at 8:00 am
You have multiple sources and 1 destination - so surely it is your source data which should be dynamic and the destination which should be fixed?
Why not use a SQL...
June 9, 2009 at 5:34 am
This thread might be of interest:
http://www.sqlservercentral.com/Forums/Topic463182-148-1.aspx
June 8, 2009 at 7:16 pm
Nice solution. What happens if the expression evaluates to FALSE? I'm assuming that control flow doesn't just stop because there is no onward path?
Yeah, I know I should know the...
June 8, 2009 at 7:11 pm
Well done for persisting with this one.
In case you're still interested, here's a function I sometimes use for reading variables:
Private Function GetVariable(ByVal varName As String) As String
...
June 4, 2009 at 5:34 pm
Rather than listing your variables in the Read Only section of the component, you will almost certainly have more success by using VariableDispenser to read them.
I can post an example...
June 4, 2009 at 9:07 am
I suggest that you import your data as two columns: Name, TheRest and add a derived column transformation, ClockNum, which is defined as Left(TheRest, 5).
Phil
June 4, 2009 at 12:57 am
Declare @month int, @year int
Declare @dt Datetime
Set @dt = getdate()
set @month = month(@dt) - 1
set @year = year(@dt)
if @month = 0 --january
begin
Set @month = 12
Set...
June 4, 2009 at 12:48 am
Thank you Guenter - there's always something to learn with this product!
June 3, 2009 at 6:28 am
You could try making a view (in Access) of MSysObjects and attempt to access that?
--edit: (cough) Oops! I think they're just called 'queries' in Access 🙂
June 2, 2009 at 9:50 pm
kevin.lanners (6/2/2009)
The update statement worked... I was right, it was pretty simple as soon as started thinking "outside the table"
Instead of referencing the newly created table I added an Execute...
June 2, 2009 at 5:39 pm
Did you try my suggestion of changing the derived column's datatype to DT_STR?
Then we should be keeping DT_STR from one end of the pipeline to the other and your destination...
June 2, 2009 at 5:30 pm
You just need to avoid mixing and matching your datatypes if you can. Working with DT_STR is just fine. Try using the Advanced Editor on your datasource and looking at...
June 2, 2009 at 11:26 am
Viewing 15 posts - 12,706 through 12,720 (of 13,838 total)