For police teams the neighbourhood_teams (point) dataset must be joined to the neighbourhood_boundaries (polygon) dataset before you can use the data.
...
Task Details
Enter the following:
Task Name
Enter a Name for the task e.g. Join Teams and Boundaries
Connection
Select the Data Share database from the list.
Stored Procedure
First select the AstunWorkflow radio button as this will limit the list of available stored procedures and then select the at_syswkf_create_table entry from the listexecutecmd entry from the list (from v6.0.0 this is called wkf_executecmd under the -Workflow- Function filter).
Parameters
Click on Parameter 1. tablename and enter police_neighb_teams in the Edit parameter 'tablename' box e.g.Now click on Parameter 2. selectstatement and enter the following select statement in the Edit parameter 'selectstatement' box. cmdtoexecute and enter the following:
Code Block | ||||
---|---|---|---|---|
| ||||
drop table if exists police_neighb_teams;
Create table police_neighb_teams as
select a.ogc_fid, a.name, a.rank, a.id, b.name as neighbourhood, b.forcename, b.wkb_geometry from neighbourhood_teams a, neighbourhood_boundaries b where st_within(a.qkb_geometry, b.wkb_geometry) |
e.g.
...
; |
Now click the Run button to run the Task to create the police_neighb_teams table.