You can use SQL to create a view and include the spatial column in the view definition. You would do this so you can view the features in ArcMap. You might also create a spatial view to allow you to use a table that contains more than one spatial column; your spatial view would only include one spatial column so you can use it with ArcGIS.
In this example, a spatial view is created to join data from the employees table and the region feature class.
Create a view with a spatial column
Define the view to include the spatial column and ObjectID from the feature class along with the other attribute columns you want in the view.
The owner of the employees table and region feature class is the gdb user; therefore, the user already has the necessary privileges to create the view.
CREATE VIEW emp_region_v
AS SELECT (e.emp_name,e.emp_id,r.rname,r.reg_id,r.region)
FROM employees e,region r
WHERE e.emp_id = r.emp_id;
The reg_id is the not null, number ObjectID column from the region feature class. Region is the spatial column from the region feature class.
Grant privileges on the spatial view
Now that the view exists, grant select privileges to dispatch_mgr.
GRANT SELECT
ON emp_region_v
TO dispatch_mgr;