|-
|}
After the setting is set to "Enabled" we recommend to restart UBIK.Studio (as settings are read during the initialization of the system).
The initial creation of "all" views must be triggered using custom code (e.g. using the "Debug View):
<source lang="csharp">
bool result = anyUbikObject.Environment.UBIKDataFactory().CreateAllViews();
</source>
[[Category:Database|Database View Creation]]
=== Disabling the View Creation ===
To disable the view creation you have to change the setting to "Disabled".
After the setting is set to "Disabled" we recommend to restart UBIK.Studio (as settings are read during the initialization of the system).
The removal of "all" views must be triggered using custom code (e.g. using the "Debug View):
<source lang="csharp">
bool result = anyUbikObject.Environment.UBIKDataFactory().DropAllViews();
</source>
=== Resolving an Error in View Creation ===