Comments are available to members only. Sign up or Log in to view these comments.
Main Topics
Browse All TopicsI have the following sql declared in a cursor. The SQL runs fine in toad if I populate the variables but it won't compile in forms...
CURSOR cAssetData (pRank IN NUMBER) IS
SELECT asset_class_code,
product_id,
payment_method_code,
model_code,
manufacturer_code,
year_of_manufacture,
serial_number,
location_code,
asset_location_notes,
asset_status_code
FROM (
SELECT nvl(a.asset_class_code,'ME
a.product_id,
a.payment_method_code,
a.model_code,
a.manufacturer_code,
a.year_of_manufacture,
a.serial_number,
lpad(a.location_code,2,0) location_code,
a.asset_location_notes,
nvl(a.asset_status_code,'L
RANK() OVER (ORDER BY a.effective_from_date DESC) ASSET_RANK
FROM vw_meter_point mp, asset a
WHERE mp.meter_point_reference = vMeterPointReference
AND mp.supply_start_date = (SELECT MAX(supply_start_date)
FROM VW_METER_POINT mp2
WHERE mp2.meter_point_reference = vMeterPointReference
)
AND a.meter_point_id = mp.meter_point_id
)
WHERE ASSET_RANK = pRank;
The compile error I get is...
Encountered the symbol "(" when expecting one of the following:
, from
Any help would be much appreciated.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: sdstuberPosted on 2008-06-16 at 09:32:15ID: 21795197
Comments are available to members only. Sign up or Log in to view these comments.