Advertisement
Advertisement
| 09.02.2008 at 07:45AM PDT, ID: 23696177 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: |
CREATE OR REPLACE PROCEDURE PROD.TEST (P_REP_CURSOR IN OUT CR_PACKAGE.CR_CURSOR,
P_PARAM IN VARCHAR2)
IS
V_PARAM CHAR(10) := null;
V_RETURN_CD NUMBER(5) := 0;
BEGIN
BEGIN
IF P_PARAM is not null then
V_PARAM:= P_PARAM;
END IF;
EXCEPTION
WHEN OTHERS THEN
V_RETURN_CD := 9999;
V_PARAM := NULL;
END;
OPEN P_REP_CURSOR FOR
select * from tab_city where ct_cd in V_PARAM;
END TEST;
/
|