Hi
We are migrating certain database and SPs to netezza.
We have an sp in Sql server 2008 which does a join between 2 tables and returns the join.
How can i write this in netezza as an sp.
As far as i read the doc, it says that it can return only an existing table. does it mean i have to create a permenant table and then insert into that table and then return ?
any sample which shows how to create an sp and return an ondemand query results from join of 2 tables would be useful .
SELECT
P.POSITIONID,
S.VALUEID,
S.LEGID,
S.CURRENCY, --NULL AS CURRENCY,
S.CURVEID,
S.MATURITYPERIOD,
S.RESULTVALUE2 AS RESULTVALUE,
S.RESULT
FROM
SIMRESULTBASE_D S ,
POSITIONS_D P
WHERE S.SIMID = pSIMID
AND P.SIMULATIONID = pSIMID
AND P.SIMULATIONID = S.SIMID
AND P.POSITIONUID = S.POSITIONUID
AND P.POSITIONID >= pSTARTPID
AND P.POSITIONID <= pENDPPID
AND S.VALUEID = pRESULTID
AND LENGTH(S.CURRENCY) > 0
Dhaval
However, direct communication with ibm suport tells me that there might be the issues.
Once get more info, will submit here.