how to i write the query 'NISHI' TO
N
I
S
H
I
Answer Posted / ajit nayak
DECLARE
V_NAME VARCHAR2(9);
V_LEN NUMBER;
V_POS VARCHAR2(10) := NULL;
BEGIN
V_NAME := '&ENTERNAME';
FOR I IN 1..LENGTH(V_NAME)
LOOP
V_POS := SUBSTR(V_NAME,I,1);
DBMS_OUTPUT.PUT_LINE(V_POS||CHR(10));
END LOOP;
END;
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
does the query needs a hint to access a materialized view?
Explain the use of record length option in exp command.
What is pragma autonomous transaction in oracle?
How to use windows user to connect to the server?
What query tells you how much space a tablespace named test is taking up, and how much space is remaining?
What is program global area (pga) in oracle?
What is the parameter mode that can be passed to a procedure?
What to do if the startbd.bat failed to start the xe instance?
What is oracle datasource?
Explain the importance of .pll extension in oracle?
How do I reset a sequence in oracle?
Explain the use of indexes option in exp command.
How to turn on or off recycle bin for the instance?
What are the differences between char and varchar2 in oracle?
How does oracle handle read consistency?