1. I have a stored proc that does 3 things:
a. Clears a table
b. inserts data into the table using dynamic SQL, so that I can change parameter choices
c. selects from the table for display
Then I wrote a report to call the proc.
2. If I use a parameter that says show all data where widget = 'N' it will display fine
3. But if I change the parameter setting to widget = 'Y', the displayed data is still from #2.
4. Then, if I simply click "View Report" one more time, I get the correct data.
Is there anything I've said here that is a red flag? It behaves as if it cached the data from the first run,
but it didn't get flushed until I ran the report two times!
Corey Fleig