alias handin8711 /export/home/csc8711/bin/handinTo submit source files, execute the command:
handin8711 1 file1 file2 etcHere the number 1 is the assignment number; You will use 2 for assignment 2 and 3 for assignment 3 etc. Please submit all source files.
IMPORTANT NOTE FOR ASSIGNMENT 1: My grader plans to execute YOUR CODE on HER DATA. To make this possible you need to do three things:
SQL> grant execute on procedure/package to raj; SQL> grant execute on procedure/package to cscycwx;for all your procedures and packages. If you put all code inside a package (strongly recommended), you will have to grant the privilege only once for the package.
create or replace package bboard authid current_user is or create or replace procedure p1 authid current_user isOnce again, if you put all code within a package, you have to do this only once, for the package specification.
htp.formOpen(owa_util.get_owa_service_path || 'cscxxxx.bboard.procedure1', 'POST', 'display_window');Your procedure calls are typically within htp.formOpen, with HTML form tags, and sometimes with SQL queries, or within your code. Please make sure all procedure calls are covered.