I'm taking classes now to get a developer cert. I hate not knowing enough about Oracle itself to actually use it for anything other than typing code. I still can't log in to the school server from here for some reason. I ran the error I got through google everything that came up looked like Greek to me. Net8 assistant and the configuration assistant won't even load. I try to run them and absolutely nothing happens. But I'm just glad I was able to test my code here. But even that has decided to give me problems. It compiles fine but when I run it I get the dreaded 'PLS-00306: wrong number or types of arguments...' error. Here's my code, if anyone could tell me what's wrong I'd appreciate it.
create or replace procedure new_member(
v_fname in S_MEMBER.First_Name%TYPE,
v_lname in S_MEMBER.Last_Name%TYPE,
v_street in S_MEMBER.Street%TYPE,
v_city in S_MEMBER.City%TYPE,
v_phone in S_MEMBER.Phone%TYPE)
as
v_date S_MEMBER.Valid_Date%TYPE:=sysdate;
begin
insert into S_MEMBER(Member_ID, First_Name, Last_Name, Street, City, Phone, Valid_Date) values(
s_member_id.NEXTVAL, v_fname, v_lname, v_street, v_city, v_phone, v_date);
end new_member;
/