Viewing 15 posts - 5,416 through 5,430 (of 11,678 total)
The command line seems to be fine.
You installed the Oracle client, but did you also install the 32-bit provider?
Why not try to run the package in 64-bit by the way?
July 28, 2013 at 1:24 pm
Unpivot the data and use the Aggregate transform to find the max.
July 26, 2013 at 7:35 am
Please do not crosspost. It wastes peoples time and fragments replies. Original post can be found here:
July 26, 2013 at 1:24 am
Not sure if it is the same for DB2, but for SQL Server queries I use @myParameter for parameters. The question mark is used in SSIS, but not sure this...
July 26, 2013 at 1:23 am
Arcturus (7/25/2013)
Yes. The provider names are the same and I am running the package using CmdExec which uses the 32-bit runtime.
Can you show us the command line?
July 26, 2013 at 1:21 am
jk_in_San_Diego (7/25/2013)
July 26, 2013 at 12:53 am
Luis Cazares (7/25/2013)
Eric M Russell (7/25/2013)
Luis Cazares (7/25/2013)
How about this?
SELECT TOP 1 *
FROM MyTable
ORDER BY DateOfBirth DESC
We also can't assume that DateOfBirth isn't nullable.
SELECT TOP 1 *
FROM MyTable
WHERE DateOfBirth is...
July 26, 2013 at 12:52 am
jk_in_San_Diego (7/25/2013)
July 25, 2013 at 2:29 pm
jk_in_San_Diego (7/25/2013)
I would like to know if it's possible...
July 25, 2013 at 2:13 pm
SELECT * FROM myTable
WHERE BirthDate = (SELECT MIN(BirthDate) AS EarliestDate FROM myTable)
July 25, 2013 at 1:59 pm
Viewing 15 posts - 5,416 through 5,430 (of 11,678 total)