I have a ASP code that calls the oracle procedure, what's the correct way to write this stored procedure?
The ASP code is for registering a user on the web site, and the stored procedure should check if this user already exists in the database, if not add this user, if it does then prompt the user duplicate.
Should I use PL/SQL to write the procedure?
Thanks