Viewing 15 posts - 12,751 through 12,765 (of 13,876 total)
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
Once again, I would suggest that the error message gives the game away. Try changing the data type of your derived column to [DT_STR].
June 2, 2009 at 11:21 am
Are you able to query user tables in the Access db?
Just wondering whether any additional permissions are required to query Access' system objects.
June 2, 2009 at 11:13 am
Or run a simple UPDATE query after the import has completed ...
June 2, 2009 at 11:09 am
You need to put a file there somehow for each of the connections you are creating.
Then create the connections, set 'delay validation' to true and delete the files.
June 1, 2009 at 4:56 pm
greengiant (6/1/2009)
In the derived column I left "add a new column".
In the expression I added "@[User::xCurrStatus]" This is my...
June 1, 2009 at 4:44 pm
Greg J (6/1/2009)
Destination table has 150 columns.
There...
June 1, 2009 at 4:32 pm
Does it have to be SSIS? Have you thought about using the Access upsizing wizard?
June 1, 2009 at 12:40 am
Viewing 15 posts - 12,751 through 12,765 (of 13,876 total)