Viewing 3 posts - 1 through 3 (of 3 total)
I use window functions all the time! Would love to know how to enhance them even further.
SELECT t.Name,
t.CountryRegionCode,
t.[Group],
t.SalesYTD,
RANK() OVER (PARTITION BY [Group] ORDER BY SalesYTD) AS SubRank,
RANK() OVER (ORDER...
December 6, 2013 at 3:43 am
Hi,
I have exactly the same issue - is anyone able to assist?
Basically i am using the queryout option to execute a stored proc that ultimately returns rows to...
February 28, 2012 at 5:06 am
I am having a more basic problem.
I have a simple SSIS package that is connecting to an Oracle database. I want to run a script on the database that...
November 3, 2008 at 12:06 pm
Viewing 3 posts - 1 through 3 (of 3 total)