Viewing 5 posts - 1 through 5 (of 5 total)
Pam Abdulla - Thanks for the responce but it doesn't seem to work the same. Darren uses a table/view to table/view pump. I am doing a table/view to delimited...
June 1, 2006 at 7:33 am
Add the following code to your ActiveX Script.
With DTSGlobalVariables.Parent.Connections("[Put the Connection Name here]")
.Catalog = 'string value e.g. "pubs"
.Connection = 'boolean value e.g. true
.ConnectionImmediate = 'boolean value e.g. trueTrue
.ConnectionTimeOut =...
May 22, 2006 at 3:45 am
I'n not a big fan of using "LIKE". It slows down you queries when working wit hlarge amounts of data. This is what I would do:
CREATE Procedure select_Proc1
@Key3...
May 22, 2006 at 3:09 am
Sorry about the above sql formatting. But the site doesn't seem to allow indenting.
May 22, 2006 at 3:04 am
Hi guys,
I might be missing something here but shouldn't it be as easy as:
SELECT
[FIRST].A,
[FIRST].B,
[FIRST].C
FROM
YOUR_TABLE AS [FIRST]
WHERE
EXISTS (
...
May 22, 2006 at 2:58 am
Viewing 5 posts - 1 through 5 (of 5 total)