Unable to update document using CBQ

Hi,

I am using cbq.exe -u=User -p=PWD -e http://localhost:8091 -s=“UPDATE Bucketname USE KEYS Doc1 SET Data = ARRAY_APPEND(Data, { ‘Name’: ‘AdtAgent’, ‘Status’: 1 }, { ‘Name’: ‘AeLook
upSvc’, ‘Status’: 4 })”

but its failing with
"code": 3000,
“msg”: “Ambiguous reference to field Doc1”

But when I am running same in query tab of the UI its working properly.

please help to fix it with cbq?

Got it sorted by cbq.exe -u=User -p=PWD -e http://localhost:8091 -s=“UPDATE Bucketname USE KEYS “Doc1” SET Data = ARRAY_APPEND(Data, { ‘Name’: ‘AdtAgent’, ‘Status’: 1 }, { ‘Name’: ‘AeLook
upSvc’, ‘Status’: 4 })”

the key is, Doc name should be in “Doc1”