I'm currently using dbr.report followed by dbr.button so that the user sees a selectable button to run a report.
Currently for some reason the next select after these two fields is hidden and I have to put an empty select afterwards for this to work.
e.g.
SELECT 'dbr.report','sp_DBR_Delete_All_Old_Users';
SELECT 'dbr.button','Delete All Users Marked as Old';
SELECT users from users;
In this example the userstable results won't appear and I currently having to do the following:
SELECT 'dbr.report','sp_DBR_Delete_All_Old_Users';
SELECT 'dbr.button','Delete All Users Marked as Old';
SELECT '';
SELECT users from userstable;
This didn't use to be an issue so I'm not sure if I've done something to change this feature. Could someone confirm why it's doing this?