NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

-Bonus Activity

--Creating a procedure for displaying firstname

CREATE OR REPLACE PROCEDURE proc_display_firstname(in_firstname VARCHAR2) IS
vn_length NUMBER(3);
vn_counter NUMBER(3) := 1;
BEGIN
vn_length := LENGTH(in_firstname);

DBMS_OUTPUT.PUT_LINE('--FIRSTNAME--');
LOOP
EXIT WHEN vn_counter > vn_length;
DBMS_OUTPUT.PUT_LINE(SUBSTR(in_firstname, vn_counter, 1));
vn_counter := vn_counter+1;
END LOOP;
END proc_display_firstname;
/
SHOW ERRORS;

/*To allow output to appear on the screen*/
SET SERVEROUTPUT ON;

execute proc_display_firstname('ALBERT');

--DROPPING proc_display_middlename procedure
DROP PROCEDURE proc_display_middlename;

--Creating a procedure for displaying middlename

CREATE OR REPLACE PROCEDURE proc_display_middlename(in_middlename VARCHAR2) IS
vn_length NUMBER(3);
vn_counter NUMBER(3) := 1;
BEGIN
vn_length := LENGTH(in_middlename)+1;

DBMS_OUTPUT.PUT_LINE('--MIDDLENAME--');

while vn_counter <= vn_length LOOP
DBMS_OUTPUT.PUT_LINE(SUBSTR(in_middlename, vn_counter, 1));
vn_counter := vn_counter+1;
END LOOP;

END proc_display_middlename;
/
SHOW ERRORS;

/*To allow output to appear on the screen*/
SET SERVEROUTPUT ON;

execute proc_display_middlename('BIBEK');



--DROPPING proc_display_surname procedure
DROP PROCEDURE proc_display_surname;

--Creating a procedure for displaying middlename

CREATE OR REPLACE PROCEDURE proc_display_surname(in_surname VARCHAR2) IS
vn_length NUMBER(3);
vn_counter NUMBER(3) := 1;
BEGIN
vn_length := LENGTH(in_surname);

DBMS_OUTPUT.PUT_LINE('--SURNAME--');

for vn_another_counter IN vn_counter .. vn_length LOOP
DBMS_OUTPUT.PUT_LINE(SUBSTR(in_surname, vn_another_counter, 1));
END LOOP;

END proc_display_surname;
/
SHOW ERRORS;

/*To allow output to appear on the screen*/
SET SERVEROUTPUT ON;

execute proc_display_surname('MISHRA');



--DROPPING proc_display_name procedure
DROP PROCEDURE proc_display_name;

--Creating a procedure for displaying middlename

CREATE OR REPLACE PROCEDURE proc_display_name(in_firstname VARCHAR2, in_middlename VARCHAR2, in_surname VARCHAR2) IS
--vn_length NUMBER(3);
--vn_counter NUMBER(3) := 1;
BEGIN
proc_display_firstname(in_firstname);
proc_display_middlename(in_middlename);
proc_display_surname(in_surname);

END proc_display_name;
/
SHOW ERRORS;

/*To allow output to appear on the screen*/
SET SERVEROUTPUT ON;

execute proc_display_name('ALBERT','BIBEK','MISHRA');








     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.