How to create an SDE View in 10.3

2926
2
01-19-2016 03:51 PM
JoseSanchez
Occasional Contributor III

Hello everyone,

How can I create an sde view or modify an existing sde view created in 10.0 witn 10.3?

Thanks

0 Kudos
2 Replies
AsrujitSengupta
Regular Contributor III

How to create an sde view in 10.2.2

The answer is quite the same. Only that SDE Command line tools have been deprecated at 10.3.x, however it can still be used for now with an SDE 10.3.x geodatabase.

44300 - Can ArcSDE command line tools be used against 10.3 and newer geodatabases?

VinceAngelo
Esri Esteemed Contributor

Keep in mind that there really hasn't been anything called an "SDE View" for a long time.  The term of art is "spatial view" or just "database view" (geometry columns being a normal part of modern databases).

The only time sdetable -o create_view should be used is with SDEBINARY storage geometry layers (which are rapidly becoming rare).  For all other use cases, the database or geodatabase view construction tools are the appropriate tools.  After view construction and validation, you can use sdelayer -o register to eliminate the Query Layer requirement of selecting an ID column (views must always be registered with a USER-set rowid column).

If you need to replace an existing view which has been registered with ArcSDE, you should use ArcCatalog or sdetable -o delete to drop the previous view, then use database tools to recreate the view, then use sdelayer -o register to re-register with ArcSDE.

- V