1Z0-147 試験問題を無料オンラインアクセス
試験コード: | 1Z0-147 |
試験名称: | Oracle9i program with pl/sql |
認定資格: | Oracle |
無料問題数: | 111 |
更新日: | 2025-09-11 |
Examine this code:
CREATE OR REPLACE FUNCTION gen_email_name
(p_first VARCHAR2, p_last VARCHAR2)
RETURN VARCHAR2
IS
v_email_name VARCHAR (19) ;
BEGIN
v_email_bame := SUBSTR(p_first, 1, 1) ||
SUBSTR(p_last, 1, 7) ||
RETURN v_email_name;
END;
/
Which two statements are true? Select two.
You have a table with the following definition:
CREATE TABLE long_tab
(id NUMBER);
long_col LONG)
You need to convert the LONG_COL column from a LONG data type to a LOB data type. Which
statement accomplish this task?