up vote 0 down vote favorite
share [g+] share [fb]

I've just been reading 'Give us Real Domains!' on SQL Server MVP Erland Sommarskog's SQL Server Wishlist.

I was thinking of trying out CREATE TYPE with bound rules but was alarmed to learn that this is a deprecated feature.

Does SQL Server have anything resembling support for domains that is worth using? Are bound rules are worth using, considering that at least one SQL Server MVP is keeping it alive?

P.S. Don't forget to vote for Add CREATE DOMAIN command ;)

link|improve this question

the feature request is from 2006, with no comment from MS. clbuttic – devio Oct 16 '09 at 9:59
@devio: Yes. So? Isn't the point that if 55 gazillion stackoverflow users vote for it today then it will be in a new release tomorrow, or have I misunderstood how things work in a democracy such as Microsoft? ;) – onedaywhen Oct 16 '09 at 10:56
Sorry, the SQL division is too busy sucking the soul out of 'Oslo' to be bothered adding real features – TFD Nov 27 '09 at 11:16
You never know: folding 'Osolo' into SQL Server could result in proper domain support? – onedaywhen Nov 27 '09 at 14:04
feedback

2 Answers

up vote 0 down vote accepted

Seems that domain support currently found in SQL Server is not fit for purpose. Best to wait until the CREATE DOMAIN command is added ;)

link|improve this answer
feedback

If I'd venture a guess, data types with embedded behavior (rules, checks, constraints) are better fit for CLR UDTs. You are seeing this already in SQL Server 2008, where some new data types come as built-in CLR types like geography and geometry.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.