You just have to run a simple query in isql to find all the reserved words for Adaptive Server Enterprise and Sybase SQL Server. To list all reserved words for Adaptive Server Enterprise, log in to isql and run this query:
select name from master..spt_values where type = "W" go
The spt_values table is a look-up table in the master database that stores system values used by other server processes.