In SSMS 2008 R2 I execute:
create table aaa(col1 xml);
go
insert into aaa (col1)
values('<ccc>ddd</ccc>')
go 2
Then, open table in SSMS (right-clicking the table in Object Explorer) with "Edit top 200 rows" option, select a row, press delete (keyboard button),
click "Yes" to confirm and receive error [ 1 ]
Why cannot I delete or edit a row?
[ 1 ]
---------------------------
Microsoft SQL Server Management Studio
---------------------------
No rows were deleted.
A problem occurred attempting to delete row 1.
Error Source: Microsoft.SqlServer.Management.DataTools.
Error Message: The row value(s) updated or deleted either do not make the row unique or they alter multiple rows(2 rows).
Correct the errors and attempt to delete the row again or press ESC to cancel the change(s).
---------------------------
OK Help
---------------------------
Update:
I thought SSMS is XML-antogonistic, but it is the same with any types
create table bbb(col1 int);
go
insert into bbb (col1)
values(33)
go 2