Skype for Business Server 2015 の Dialogs テーブルDialogs table in Skype for Business Server 2015
Dialogs テーブルは、ピアツーピア セッションの DialogID に関する情報を格納するサポート テーブルです。The Dialogs table is a supporting table that stores the information about DialogIDs for peer-to-peer sessions.
列Column | データ型Data Type | キー/インデックスKey/Index | 詳細Details |
---|---|---|---|
SessionIdTimeSessionIdTime |
日付型datetime |
PrimaryPrimary |
セッション要求の時刻。セッションを一意に識別するために SessionIDSeq と組み合わせて使用されます。Time of session request; used in conjunction with SessionIDSeq to uniquely identify a session. |
SessionIdSeqSessionIdSeq |
intint |
PrimaryPrimary |
セッションを識別するための ID 番号。ID number to identify the session. セッションを一意に識別するために SessionIDTime と組み合わせて使用します。Used in conjunction with SessionIDTime to uniquely identify a session. |
ExternalChecksumExternalChecksum |
intint |
ExternalID のチェックサム。Checksum of the ExternalID. このフィールドは、データベース検索の速度を向上するために使用されます。This field is used to increase the speed of database searches. |
|
ExternalIdExternalId |
varbinary(775)varbinary(775) |
バイナリとして格納される SIP ダイアログ ID。SIP dialog ID, stored as a binary. バイナリの形式は次の形式です。The format of the binary is: dialog;from-tag;to-tagdialog;from-tag;to-tag このデータは、次の構文を使用してテキスト形式に変換できます。This data can be converted to text format by using this syntax: cast(cast(ExternalId as varbinary(max)) as varchar(max)) |