当我尝试使用aws-shell检查我的 s3 存储桶列表时,出现此错误:

我的环境是[cloudshell-user@ip-10-0-***~]$ aws --version
aws-cli/2.2.43 Python/3.8.8 Linux/4.14.252-195.483.amzn2.x86_64 exec-env/CloudShell exe/x86_64.amzn.2 prompt/off
我的 Envir 有什么问题吗?版本?请建议
linux command-line-interface amazon-s3 amazon-web-services aws-cli
我有一张这样的桌子:
CREATE TABLE Customers
(CustomerID int Identity (1,1) NOT NULL PRIMARY KEY,
customerName varchar (50),
Address varchar (255),
Phone int NOT NULL,
Email varchar,
Gender varchar,
Age int,
);
Run Code Online (Sandbox Code Playgroud)
我尝试像这样插入这个表:
Insert into Customers (customerName, Address, Phones, Email, Gender, Age)
Values ('Anosa Seunge', 'Keskuskatu 200', 358-3-4180, 'ijiosd@ao.com', 'Male', 19),
('Jihad Christian', '305 - 14th Ave. Suite 3B', 358-1-3688, 'jihado@ao.com', 'Female', 29);
Run Code Online (Sandbox Code Playgroud)
并得到此错误:
Msg 8152, Level 16, State 14, Line 4
String or binary data would be truncated.
The statement has been …Run Code Online (Sandbox Code Playgroud)