From the application level (unfortunately). I agree that the proper way to prevent duplication is at the database level through the use of a unique index, but in SQL Server 2005, an index is allowed to be only 900 bytes, and my varchar(2048) field blows that away.
I dunno how well it would perform, but I think you could write a trigger to enforce this, even if you couldn't do it directly with an index. Something like:
-- given a table stories(story_id int not null primary key, story varchar(max) not null)
create trigger prevent_plagiarism on stories
after insert, update
as
declare @cnt as int
select @cnt = count(*) from stories inner join inserted on (stories.story = inserted.story and stories.story_id != inserted.story_id)
if @cnt > 0
begin
raiserror('plagiarism detected', 16, 1)
rollback transaction
end
Also, varchar(2048) sounds fishy to me (some things in life are 2048 bytes, but it's pretty uncommon); should it really not be varchar(max)?