Viewing 15 posts - 466 through 480 (of 622 total)
Phil,
As usual, a simple solution to an annoying quirk of SSIS - Thanks. In this instance I am acutally only interested in the date so I have done a...
March 14, 2013 at 7:44 am
I expect that data is written in its RAW state. This is a standard method of passing data from one package to another and is proprietry to SSIS.
March 7, 2013 at 11:05 am
Tortiose subversion and Mercurial Hg are both free Source code control packages. Of the two, I think Mercurial is probably better for managing SSIS because of the number of...
March 7, 2013 at 10:57 am
how are the tables exposed. Are they on a linked server.
Can you ask the vendor for table definitions. You will probably find that you are not even looking...
March 7, 2013 at 10:52 am
I was under the impression that you can output data to Excel from SSIS but you can't format it; which it sounds like it is what you are trying to...
March 7, 2013 at 10:46 am
That looks like a badly formed query. You are missing a 'WHERE' and a field/column before the comparator.
Excel is definately the poor relation when it comes to reading and...
March 7, 2013 at 10:34 am
UPDATE:
Found half a solution so I am posting it here in case it is useful for anyone else.
I have created a synonymn for the table
CREATE SYNONYM [dbo].[MyTable] FOR [Dev].[MyTable]
You...
March 7, 2013 at 7:48 am
I have just run into the same problem :angry:
Minor bit of speen venting. Why on earth woudl anyone want to use Progress for modern applications! the database technology is...
March 6, 2013 at 8:27 am
Ok,
This is what we did.
Package scoped variable intIsGoodToGo (Int32)
For-loop with Eval Expression of 1==1 to keep the package constantly running
Konesans File Watcher looks for the file to arrive or change...
February 19, 2013 at 8:33 am
Nothing. I don't get the script editor window, which is why I assumed that I needed the full copy of VS to use scripts.
Add a Script task to the...
February 19, 2013 at 8:13 am
Thanks PM.
I'm sure I tried that previously with no success but it seems to be working now!
February 18, 2013 at 3:30 pm
Thanks to both..
The sproc gets fired up to 18 times, but by different tasks, which is why I wanted to use a package level variable.
I didn't want to use the...
February 18, 2013 at 10:18 am
What changes between the 30 scripts?
If it is just the table names then I would look for a ForEach loop solution.
February 12, 2013 at 9:56 am
Phil,
That would work but we try to avoid inline SQL tasks in our packages: where we need to use SQL to upsert data it shoudl go through a stored procedure....
February 12, 2013 at 9:45 am
Phil,
Thanks once again for coming to my rescue.
Yes, there will only be one batch per package execution
create table dbo.batchHeader(batchID int identity(1,1), description varchar(200),filename varchar(200))
create table dbo.batchLine (batchID int, partno int)
Import...
February 11, 2013 at 3:22 pm
Viewing 15 posts - 466 through 480 (of 622 total)