Skip to main content
Version: Current

Views - introduction

Tables are a tidy and efficient way of organising your data - all your counterparties in one place and all your instruments in another place, for example.

But your application needs to present that data in useful ways.

Your Trade table, for example, needs unique fields that are essential to a trade, such as a PRICE and a QUANTITY. But other vital details of a trade - such as the INSTRUMENT and the COUNTERPARTY - are held in different tables. You don't want to duplicate those fields in your database; instead, you want fetch the information from the other tables where you are storing them so neatly.

Here is how a view called ALL_TRADES could be constructed:

To do this you would make a join in your table of trades to fetch the INSTRUMENT_NAME field (and possibly others) from the Instrument table and the COUNTERPARTY_NAME field from the Counterparty table. By default, once you have made a join, all the fields in the joined table are included, but you can specify only a subset if you prefer.

We call these joined-up tables Views, because they are the most useful ways of looking at the data in the tables.

The table you are making the join from is called the root table, and you can join it to one or more other tables in order to bring one or more fields from those tables into the view.

There are some useful things to note:

  • By default, only the root table is monitored for changes - so updates to fields in the joined tables are not monitored. If you want to include real-time updates from those tables, you can declare your joins as backwards joins.
  • You can create derived fields in a view to create additional information. For example, you can create a notional value for the trade by multiplying the unit price by the quantity.

Like tables, views are database constructs. To make data from a table or view available to the front end, you need to create a Request Server requestReply for snapshot data, or a Data Server query for streaming data.

Views are defined in the file application-name-view-dictionary.kts.

By default, this file is located in the folder:
server/appname/src/main/genesis/cfg/