Datacom SQL and Datacom Server do not have any restriction for submitting multiple SQL requests.
Use a Query Terminator in WinSQL to break the scripts into multiple queries before submitting it to the back-end database.
WinSQL Query Terminator allow users to write a script like:
select * from table1
go
select * from table2
In this case, WinSQL will first send a query to fetch records from table1 and then send a second request for table2.
By default, WinSQL uses the word "GO" as a Query Terminator.
To change this value click Edit/Options on the main menu and change the value for Query Terminator String.
Change the string to ";" terminator.