Splinter,
Are you referring this ?
Creating in-memory temporary databases:
Many queries and applications use tempdb for worktables and for temporary tables that hold intermediate results. ASE 15.5 adds in-memory temporary databases to help improve application performance by utilizing optimizations.specific for in-memory databases. In-memory temporary database are functionally identical to regular temporary databases.
The following example creates an in-memory temporary database :
1> create inmemory temporary database temp_imdb
2> on timdb_dev1 = ‘100M’
3> with durability = no_recovery
4> go
Database ‘temp_imdb’ is now online
Regards
Kiran Kumar A