Naming conventions are important, and primary key and foreign key have commonly used and obvious conventions (PK_Table and FK_Table_ReferencedTable, respectively).  The IX_Table_Column naming for indexes is also fairly standard.
What about the UNIQUE constraint?  Is there a commonly accepted naming convention for this constraint?  I've seen UK_TableName_Column, UQ_TableName_Column, and someone recommending AX_TableName_Column - I don't know where that comes from.
I've typically used UQ but I don't particularly like it, and I do not enjoy having to defend my choice of using it against a UK advocate.
I would simply like to see if there is a consensus on the most prevalent naming, or a good reasoning as to why one makes more sense than the others.
 
     
     
    