
Anderson Meza
Preguntame salta este error: Msg 8169, Level 16, State 2, Line 1
Conversion failed when converting from a character string to uniqueidentifier.
esto es lo que ingresé: INSERT INTO SalesLT.ProductCategory (Name, rowguid,ModifiedDate)
VALUES (‘Boxers’,‘cfbhh25c-df71-08a7-b81b-64ee161pp37c’,2019-06-01);

JAVIER SANTIAGO SALGADO
Gracias por tu respuesta

Miguel Santoyo Lopez
Posiblemente porque la columna está definida como uniqueidentifier y cuenta con esta función (newid()). También me salió ese error, entonces mejor pones default a la sentencia y listo. INSERT INTO registrosprueba.SalesLT.ProductCategory (ParentProductCategoryID, Name, rowguid, ModifiedDate) VALUES (null, 'Boxers',default,2020-06-28).