

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
In this exercise, there is an introduction to the use of Oracle PL SQL such as anonymous PL/SQL block, functions, subprograms, compilers, procedures.
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!
Identify the vocabulary word for each definition below:
Unnamed blocks of code not stored in the database and do not exist after they are executed
A program that computes and returns a single value
Named PL/SQL blocks that are stored in the database and can be de- clared as procedures or functions
Software that checks and translates programs written in high-level pro- gramming languages into binary code to execute
A program that performs an action, but does not have to return a value
Deklarasi variabel, konstanta, cursor dan exception (yang ditetapkan pengguna). BEGIN
SQL Statement dan PL/SQL Statement. EXCEPTION
Bagian pengecualian di bagian yang bisa di eksekusi / (handling error). END;
(Mengakhiri BEGIN dengan END; )
A) Gagal , karena untuk untuk mengeksekusi nya tidak cukup hanya BEGIN dan END harus ada statement nya minimal 1 statement agar bisa di eksekusi. B) Gagal , karena bagian paling penting yaitu BEGIN tidak ada jadi tidak bisa di eksekusi. C) Gagal , karena untuk mengeksekusinya harus ada statement nya minimal 1 agar bisa di eksekusi. D) Sukses.