C
Candace
I know I have to use a stored procedure when I'm using
form parameters but I was wondering am I able to build the
stored procedure within the report rather than save that
stored procedure as a separate object then reference that
stored procedure name as the record source?
I don't like having a lot of unnecceary separate objects
and rather build it in. OR Should they be stored
procedures that are saved because the SQL server handles
the records differently and it is more optimal/efficient
to do it that way.
I tried just cutting and pasting the stored procedure in
like this
Alter PROCEDURE Patient_Line_Listing @Start_Date
datetime, @E ...
But as you can see I reference the procedure name
Patient_Line_Listing. I am assuming I have to set it up
as a temporary procedure but I don't know what the syntax
is.
Any thoughts?
Candace
form parameters but I was wondering am I able to build the
stored procedure within the report rather than save that
stored procedure as a separate object then reference that
stored procedure name as the record source?
I don't like having a lot of unnecceary separate objects
and rather build it in. OR Should they be stored
procedures that are saved because the SQL server handles
the records differently and it is more optimal/efficient
to do it that way.
I tried just cutting and pasting the stored procedure in
like this
Alter PROCEDURE Patient_Line_Listing @Start_Date
datetime, @E ...
But as you can see I reference the procedure name
Patient_Line_Listing. I am assuming I have to set it up
as a temporary procedure but I don't know what the syntax
is.
Any thoughts?
Candace