We use a fairly straightforward naming standard for indexes that I can validate programmatically, but I am struggling with naming indexes with INCLUDE columns. If I do it based on a simple formula, it's too easy to build names that are too long. Then my programmatic validation fails, and I end up with truncated names.
For those of you using INCLUDE columns, have you come up with a naming standard that you're happy with? If so, please share.
My current standard that I'm not happy with:
IX_<tableName>_<column1>_..._<columnN>_wIncl
(wIncl
translates as "with include")
The problem is that there is no indication of what columns are included.