如何在 Google Spanner 中指定完全识别的数据库限定符
How to specify fully identified database qualifier in Google Spanner
https://cloud.google.com/sdk/gcloud/reference/spanner/databases/execute-sql表示execute-sql命令中的数据库位置参数可以是"ID of the database or fully qualified identifier for the database"。
我找不到这样一个完全限定标识符的语法。 Looked/searched 文档中我能想到的任何地方。
尝试使用标准分隔符(斜杠、点、冒号等)会产生随机错误消息。
有什么想法吗?
Cloud Spanner 数据库的完全限定名称采用以下格式:
projects/<project-id>/instances/<instance-id>/databases/<database-id>
这里是对资源名称的概述:https://cloud.google.com/iam/docs/full-resource-names。这表明资源名称(这是标识符的同义词吗?)应采用以下格式://spanner.googleapis.com/projects/project-id/instances/instance-id
https://cloud.google.com/sdk/gcloud/reference/spanner/databases/execute-sql表示execute-sql命令中的数据库位置参数可以是"ID of the database or fully qualified identifier for the database"。
我找不到这样一个完全限定标识符的语法。 Looked/searched 文档中我能想到的任何地方。
尝试使用标准分隔符(斜杠、点、冒号等)会产生随机错误消息。
有什么想法吗?
Cloud Spanner 数据库的完全限定名称采用以下格式:
projects/<project-id>/instances/<instance-id>/databases/<database-id>
这里是对资源名称的概述:https://cloud.google.com/iam/docs/full-resource-names。这表明资源名称(这是标识符的同义词吗?)应采用以下格式://spanner.googleapis.com/projects/project-id/instances/instance-id