I have a VB program that calls stored procedures in MS SQL Server that
deliver a recordset. I need to do the same thing with Oracle. Following is
a simple SQL Server procedure that does this. How do I do that with Oracle?
CREATE PROCEDURE dbo.sp_Level1
@ClientDB varchar (30) = NULL,
@LevelID1 varchar (8) = NULL
AS
BEGIN
Select * from tblLevel1
where active='Y' and ClientDB=@ClientDB
order by DisplayOrder
END
return (0)
END