Thanks for your quick reponse.
I know that i can see everything which has been executed in the history tab.
But in Version 16 it was possible to see "message xxx type info to client" immediately in the message tab in the moment they were executed.
In Version 17 i see all executed "message xxx type info to client" only after all commands has been executed.
Here is one example to illustrate the differences:
begin
message 'Test1' type info to client;
select * from sysevent;
message 'Test2' type info to client;
select * from systable;
message 'Test3' type info to client;
select * from sysprocedure;
message 'Test4' type info to client;
end
While executing these commands in DBISQL16 i will get 'Test1','TEST2'.. in the message tab after every select command.
In DBISQL17 i only see 'TEST1','TEST2'.. after executing the last select command.
This makes it very hard in DBISQL17 if you want to see which command is being executed now.
I hope this could better explain the problem.