I know it's not a good idea, but I would like to double check that this won't do something crazy like crash the server.
CREATE TABLE [dbo].[Items](
[Id] [nvarchar](255) NOT NULL PRIMARY KEY,
[Value] [nvarchar](max) NOT NULL,
)
It would be interesting to know details about how a key like this compares to an [int] key, but just confirmation that this will not hurt anything is sufficient.

VARCHAR(255)PK is horribly bad for two reasons: (1) it's much too big (up to 255 bytes plus overhead) vs. 4 bytes for anINT, and secondly, since it's a variable length column, that again adds more overhead to the index navigation structures. If this is a table with several nonclustered indices, I would strongly urge to rethink your primary key .... – marc_s Mar 20 '12 at 6:06