guides:reference:relations:transform
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
guides:reference:relations:transform [2019/12/30 12:56] – yspeerte | guides:reference:relations:transform [2024/07/03 12:31] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Transformed columns ====== | ||
+ | |||
+ | Relations (and custom reports too) can use in the query a NetYCE specific extension to the SQL syntax named " | ||
+ | |||
+ | When creating a relation (or 'named context' | ||
+ | |||
+ | This extension of columns is the result of transforming a field value from a selected column to a column name. The value(s) in that column then points to another selected value from the record. In that way, a result table in which every line describes a parameter, can be changed to a table in which this parameter-name becomes a field-name. That field name then receives one of the field values that belong to that parameter. | ||
+ | |||
+ | The syntax is '' | ||
+ | |||
+ | === Examples === | ||
+ | |||
+ | The example below shows it is very useful to create a column named after the the subnets' | ||
+ | |||
+ | < | ||
+ | -- using the relation without TRANSFORM | ||
+ | port hybrid vlan < | ||
+ | port hybrid vlan < | ||
+ | port hybrid pvid vlan < | ||
+ | |||
+ | -- using transformed net-name -> vlan-ids: | ||
+ | port hybrid vlan < | ||
+ | port hybrid vlan < | ||
+ | port hybrid pvid vlan < | ||
+ | </ | ||
+ | |||
+ | The relation query to for ' | ||
+ | |||
+ | <code sql> | ||
+ | TRANSFORM Net_name WITH Vlan_id | ||
+ | SELECT DISTINCT Ip_subnet.*, | ||
+ | FROM Port_map | ||
+ | INNER JOIN Ip_map ON (Port_map.Interface_id = Ip_map.Interface_id) | ||
+ | INNER JOIN Ip_subnet ON (Ip_map.Subnet_id = Ip_subnet.Subnet_id) | ||
+ | LEFT JOIN Node_vrf ON (Ip_subnet.Vrf_id = Node_vrf.Vrf_id) | ||
+ | LEFT JOIN Ip_dhcp ON (Ip_dhcp.Dhcp_id = Ip_subnet.Subnet_id) | ||
+ | WHERE Port_map.Hostname = '< | ||
+ | AND Ip_subnet.Vlan_id > 0 | ||
+ | ORDER BY Ip_subnet.Vlan_id | ||
+ | </ | ||
+ | |||
+ | The TRANSFORM is mostly used to extend an object like a Client with its configured **custom attributes**. In the example below, the custom column value (' | ||
+ | |||
+ | Using the TRANSFORM is the only way to access the Custom attributes of an object. | ||
+ | |||
+ | <code sql> | ||
+ | TRANSFORM Var_name WITH Var_value | ||
+ | SELECT Client.*, Par_groups.Var_name, | ||
+ | FROM Client | ||
+ | LEFT JOIN Par_groups ON (Client.Par_group = Par_groups.Par_group) | ||
+ | LEFT JOIN Par_vals ON (CONCAT_WS(' | ||
+ | AND Par_groups.Par_group = Par_vals.Par_group | ||
+ | AND Par_groups.Var_name = Par_vals.Var_name) | ||
+ | WHERE Client.ClientCode = '< | ||
+ | </ | ||
+ | |||
+ | The Par_groups table is included to find the custom attributes of the object type (here ' | ||
+ | |||
+ | Look at the Relation definitions for ' | ||
+ | |||
+ | > Note: The current implementation of Custom-attributes use the Par_vals table to store the custom attribute values for all objects. Although very flexible in setup, this method will not allow us to create custom attributes to ports and subnets due to scalability issues. A future NetYCE version will address this issue by implementing a different design. | ||
+ | |||