ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • ヘルプ
  • Sign Out
ArcGIS Desktop

ArcGIS Online

組織のマッピング プラットフォーム

ArcGIS Desktop

完全なプロ仕様の GIS

ArcGIS Enterprise

エンタープライズ GIS

ArcGIS for Developers

位置情報利用アプリの開発ツール

ArcGIS Solutions

各種業界向けの無料のテンプレート マップおよびテンプレート アプリケーション

ArcGIS Marketplace

組織で使えるアプリとデータを取得

  • ドキュメント
  • サポート
Esri
  • サイン イン
user
  • マイ プロフィール
  • サイン アウト

Help

  • ホーム
  • はじめに
  • マップ
  • 解析
  • データ管理
  • ツール
  • その他...

ListUsers

  • サマリー
  • 説明
  • 構文
  • コードのサンプル

サマリー

Returns a list of named tuples containing information for users who are connected to an enterprise geodatabase.

説明

The ListUsers function is used by an administrative user to identify users who are currently connected to an enterprise geodatabase.

  • The ListUsers function must utilize an administrative connection to the database.
  • This function will fail if attempted by a nonadministrative user.

構文

ListUsers (sde_workspace)
パラメーター説明データ タイプ
sde_workspace

An enterprise geodatabase (sde connection file).

The connection properties specified in the enterprise geodatabase must have administrative rights that allow the user to disconnect other connections.

String

戻り値

データ タイプ説明
tuple

The ListUsers function returns a list of named tuples. The named tuples returned each have the following five items:

NameDatatypeDescription

ClientName

String

Name of the client machine from where the connection is being made.

ConnectionTime

Datetime

The time when the user made the initial connection to the geodatabase.

ID

Integer

The SDE connection identifier. This is the value that can be used in the DisconnectUser function to identify the user to disconnect.

IsDirectConnection

Boolean

True if the connection is a direct connection (two-tier). False if the connection is an application server connection (three-tier).

Name

String

The name of the user who is connected to the database.

コードのサンプル

ListUsers example 1
import arcpy

arcpy.ListUsers("Database Connections/admin.sde")
ListUsers example 2

The following example demonstrates how to print a list of connected users along with their connection time.

import arcpy

users = arcpy.ListUsers("Database Connections/admin.sde")
for user in users:
    print("Username: {0}, Connected at: {1}".format(
        user.Name, user.ConnectionTime))
ListUsers example 3

The following example demonstrates how to generate a new list of only SDE IDs from the list returned by ListUsers.

import arcpy

# Set the admistrative workspace connection
arcpy.env.workspace = "Database Connections/tenone@sde.sde"

# Create a list of users
'''
NOTE: When the arcpy.env.workspace environment is set, a workspace
does not need to be provided to the function.
'''
users = arcpy.ListUsers()

# Create a list of SDE ID's.
# Use a list comprehension to get the ID values in a new list.
id_users = [user.ID for user in users]
print(id_users)

関連トピック

  • AcceptConnections
  • DisconnectUser

ArcGIS Desktop

  • ホーム
  • ドキュメント
  • サポート

ArcGIS プラットフォーム

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

Esri について

  • 会社概要
  • 採用情報
  • Esri ブログ
  • ユーザ カンファレンス
  • デベロッパ サミット
Esri
ご意見・ご感想をお寄せください。
Copyright © 2019 Esri. | プライバシー | リーガル