Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

I have an SDE geodatabase with different versions for each user.

How can I list each version using Python?

share|improve this question

1 Answer

up vote 7 down vote accepted

There is a function on arcpy called ListVersions. Here's online help for it.

    >>> print (arcpy.ListVersions('bigiron.sde'))
    [u'BILLY.VersionOne', u'JOE.2B8E86', u'S.DEFAULT']
    >>>
share|improve this answer
Just what I needed, thanks. I swear I searched on there first, but I must have missed that. – I-B May 9 at 19:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.