Smart Grid Applications Overview > Responder Overview > Implement Responder > Data Preparation > Set Up Responder Map Layers > Create Definition Queries |
Version: 10.1 |
Rather than using Join Layers to create the Calls and Load Points layers, you can use Definition Queries. All other Responder layers are created using XY Event Layers. With this method, Responder users may see an increased performance.
This applies to the LoadPoints and Calls layers.
Loadpoints
In the sample below, the query connects the ServicePoint feature class (on which the definition query exists) to the rx_loadpoints table. Be sure your query reflects the accurate table name and owner (responder, in the example).
objectid in (select device_oid from responder.rx_loadpoints)Calls
In the sample below, the query connects the ServicePoint feature class (on which the definition query exists) to the rx_calls table. Be sure your query reflects the accurate table name and owner (responder, in the example).
objectid in (select device_oid from responder.rx_calls)