How do you create a stored procedure or view in oracle 8?
pseudo syntax:
create or replace procedure_name (param var_type) AS local_var vartype; BEGIN all_code_here;
Obviously, you don't necessarily have to have any parameters or local variables, but that is where they go if you need them. HTH