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
How remove data files before opening a database?
What is the difference between view and materialized view in Oracle?
Does oracle charge for java?
What is memory advisor in Oracle?
How to download oracle database 10g xe?
What is a synonym? What are its various types?
How to use "in out" parameter properly?
Is oracle the best database?
Explain constraining triggers.
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
What is data type in oracle?
WHAT IS ecc 6.0
What are the tools for Oracle ?
What to do if the binary spfile is wrong for the default instance?
What is clustered table in Oracle?