I'm very much a novice at SQL Server programming, but I do have experience with access and oracle. Basically, I'm trying to return records from a stored procedure after first executing two other stored procedures. It looks like:
Create Procedure "myproc"
@date text
AS
"Call two other stored procedures..."
"SELECT statement here based on changes the other procedures just made."
RETURN
The SELECT statement returns records if I put it in its own sp, but here the sp does not return records. Any help is appreciated.
Create Procedure "myproc"
@date text
AS
"Call two other stored procedures..."
"SELECT statement here based on changes the other procedures just made."
RETURN
The SELECT statement returns records if I put it in its own sp, but here the sp does not return records. Any help is appreciated.