Access ArcGIS Server data using Visual Studio

From Wildsong
Revision as of 18:40, 13 July 2018 by Brian Wilson (talk | contribs) (Created page with "View-> SQl Server Object Explorer == See the roles attached to a geodatabase == Select the ArcGIS database you want to look at. Right click and select "New Query...". This...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

View-> SQl Server Object Explorer

See the roles attached to a geodatabase

Select the ArcGIS database you want to look at.

Right click and select "New Query...".

This opens a SQL query window. You can then type this in:

SELECT [name] FROM sys.database_principals 
       WHERE type = 'R' and principal_id>0 and principal_id<16384;

To run it, you can click the "play" button in the top bar.

Here is a screen shot after the query runs.

Left