MigrateSqlServerSqlDbDatabaseInput interface     
SQL 到 Azure SQL DB 迁移任务输入的数据库特定信息
属性
| id | 数据库的 ID  | 
| make | 
	是否在迁移前设置数据库只读  | 
| name | 数据库的名称  | 
| schema | 
	为数据库架构迁移选择的设置。  | 
| table | 
	源到目标表的映射  | 
| target | 
	目标数据库的名称。 注意:开始迁移之前,将截断目标数据库。  | 
属性详细信息
id
数据库的 ID
id?: string
				属性值
string
		makeSourceDbReadOnly
	   
	是否在迁移前设置数据库只读
makeSourceDbReadOnly?: boolean
				属性值
boolean
name
数据库的名称
name?: string
				属性值
string
		schemaSetting
	 
	为数据库架构迁移选择的设置。
schemaSetting?: Record<string, unknown>
				属性值
Record<string, unknown>
		tableMap
	 
	源到目标表的映射
tableMap?: {[propertyName: string]: string}
				属性值
{[propertyName: string]: string}
		targetDatabaseName
	  
	目标数据库的名称。 注意:开始迁移之前,将截断目标数据库。
targetDatabaseName?: string
				属性值
string