你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Sync Members - List Member Schemas
获取同步成员数据库架构。
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/syncGroups/{syncGroupName}/syncMembers/{syncMemberName}/schemas?api-version=2021-11-01
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
database
|
path | True |
string |
托管同步组的数据库的名称。 |
resource
|
path | True |
string |
包含该资源的资源组名称。 可以从 Azure 资源管理器 API 或门户获取此值。 |
server
|
path | True |
string |
服务器的名称。 |
subscription
|
path | True |
string |
用于标识 Azure 订阅的订阅 ID。 |
sync
|
path | True |
string |
托管同步成员的同步组的名称。 |
sync
|
path | True |
string |
同步成员的名称。 |
api-version
|
query | True |
string |
要用于请求的 API 版本。 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
成功获取同步成员架构。 |
|
Other Status Codes |
错误响应:***
|
示例
Get a sync member schema
示例请求
GET https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/syncgroupcrud-65440/providers/Microsoft.Sql/servers/syncgroupcrud-8475/databases/syncgroupcrud-4328/syncGroups/syncgroupcrud-3187/syncMembers/syncgroupcrud-4879/schemas?api-version=2021-11-01
示例响应
{
"value": [
{
"tables": [
{
"columns": [
{
"dataSize": "4",
"dataType": "int",
"hasError": false,
"isPrimaryKey": false,
"name": "intField",
"quotedName": "[intField]"
},
{
"dataSize": "100",
"dataType": "nvarchar",
"hasError": false,
"isPrimaryKey": false,
"name": "charField",
"quotedName": "[charField]"
}
],
"errorId": "Schema_TableHasNoPrimaryKey",
"hasError": true,
"name": "dbo.myTable",
"quotedName": "[dbo].[myTable]"
}
],
"lastUpdateTime": "2017-05-30T07:16:08.21Z"
}
]
}
定义
名称 | 说明 |
---|---|
Sync |
数据库完整架构的属性。 |
Sync |
同步架构属性的列表。 |
Sync |
数据库完整架构中表的属性。 |
Sync |
数据库完整架构表中列的属性。 |
SyncFullSchemaProperties
数据库完整架构的属性。
名称 | 类型 | 说明 |
---|---|---|
lastUpdateTime |
string |
数据库架构的上次更新时间。 |
tables |
数据库完整架构中的表列表。 |
SyncFullSchemaPropertiesListResult
同步架构属性的列表。
名称 | 类型 | 说明 |
---|---|---|
nextLink |
string |
用于检索下一页结果的链接。 |
value |
结果数组。 |
SyncFullSchemaTable
数据库完整架构中表的属性。
名称 | 类型 | 说明 |
---|---|---|
columns |
数据库完整架构表中的列列表。 |
|
errorId |
string |
表的错误 ID。 |
hasError |
boolean |
如果表中存在错误。 |
name |
string |
表的名称。 |
quotedName |
string |
表的带引号的名称。 |
SyncFullSchemaTableColumn
数据库完整架构表中列的属性。
名称 | 类型 | 说明 |
---|---|---|
dataSize |
string |
列的数据大小。 |
dataType |
string |
列的数据类型。 |
errorId |
string |
列的错误 ID。 |
hasError |
boolean |
如果表中存在错误。 |
isPrimaryKey |
boolean |
如果它是表的主键,则为 。 |
name |
string |
列的名称。 |
quotedName |
string |
用引号括起列的名称。 |