Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

convert query from MSSQL to Oracle

MoazzamMar 24 2011 — edited Mar 24 2011
I am using Oracle 10.2 and want to convert following SQLServer query to oracle:
WITH Factor (Code, StartDate, EndDate, Rate, Ranks, Factors) AS
(
	SELECT Code, StartDate, EndDate, Rate, Ranks, CONVERT(FLOAT, 1.0)
	FROM GSplitDateRangeRank
	WHERE Ranks = 1
	UNION ALL
	SELECT S.Code, S.StartDate, S.EndDate, S.Rate, S.Ranks, CASE WHEN S.Rate > 0 THEN F.Factors / S.Rate ELSE F.Factors END
	FROM GSplitDateRangeRank S
	JOIN Factor F
	ON S.Code = F.Code
	AND S.Ranks = F.Ranks + 1
)
SELECT * FROM Factor order by code
Following is the query converted in Oracle:
with Factor AS
(
	SELECT Code, StartDate, EndDate, Rate, Ranks, 1.0 Factors
	FROM GSplitDateRangeRank
	)
select Code, StartDate, EndDate, Rate, Ranks, CASE WHEN Rate > 0 THEN Factors / Rate ELSE Factors END Factors
from Factor 
start with ranks = 1 
connect by code = code
            and  ranks = prior ranks +1;
But the rows generated by Oracle query are lot more than those in MSSQL. Can any body kindly help me.
This post has been answered by Frank Kulash on Mar 24 2011
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 21 2011
Added on Mar 24 2011
3 comments
565 views