代码之家  ›  专栏  ›  技术社区  ›  Dr Adrian Colquhoun

Azure表存储名称-无效字符

  •  4
  • Dr Adrian Colquhoun  · 技术社区  · 7 年前

    8836461cc98249bea59dc5f6790d40edstk365developmentusers
    

    指定的资源名称包含无效字符

    8836461cc98249bea59dc5f6790d40edstk365developmenttasks
    

    指定的资源名称包含无效字符

    af0589646af645b98f749d92a5b2ee25stk365developmentusers
    

    作品

    3 回复  |  直到 6 年前
        1
  •  6
  •   David Makogon    7 年前

    表名不能以数字开头。第一个例子,从 8 ,无效。

    here .

        2
  •  2
  •   Sibeesh Venu    5 年前

    当我试图将文件上载到 azure blob storage

    enter image description here

    Daily ). 一旦我改变了参数 schedule 以小写字母开头的值( daily The specified container does not exist. 因为我没有在我的 blob .在我用名称创建容器之后 每日的

    enter image description here

        3
  •  0
  •   Ken Harris    4 年前

    我最近也遇到了这个问题。我将Azure CLI与Powershell一起使用,发现您不能在命令中使用变量名。您还必须在容器名称周围使用引号,并且它们必须是小写的。

    例如:

    $containerName = "gamers"
    az storage container create `
     --name $containerName `
     --connection-string $connectionString
    

    az storage container create `
     --name 'gamers' `
     --connection-string $connectionString