// store procedure name = test proc
// accessing the prov via MS JDBC Driver for MS SQL Server 2000
/* best not to have proc that contains special character like white
space
however, if you are not the developer ...
*/
cs = con.prepareCall("{call [test proc]}"); // won't work

How to?

tia.