I think you're mixing up a few things.
[ul]
[li]micros.db is the actual database file[/li]
[li]micros is the logical name of the database, as well as the ODBC connection name[/li]
[li]It's a little confusing at first, but once you realize that there are 3 distinct entities named "micros" it makes sense for consistency.[/li]
[/ul]
[ul]
[li]Sybase is the database system, similar to Microsoft SQL Server[/li]
[li]Sybase Central is an application for displaying and modifying database object, similar to SSMS (SQL Server Management Studio)[/li]
[/ul]
[ul]
[li]The "xxx." before a table name shows what database account owns or created the table.[/li]
[li]Tables starting with "sys." are standard system tables used by the database engine to keep track of the database objects. You can use these to list tables, users and procedures.[/li]
[li]Tables, procedures, views and functions starting with "micros." are specific to the micros database.[/li]
[/ul]
You won't see xxx_dtl or xxx_cfg tables in SQL tutorials online. Those all belong to the "micros" user account, therefore they're specific to the micros database. Anything online will be as generic as possible. You won't be able to find the exact query you need online, they're made to show the concept behind managing and manipulating a database so you can apply those concepts to the database you're using.