Chắc chắn là, XMLSpy có thể tạo Lược đồ XML từ cơ sở dữ liệu.
Có một cách khác , mặc dù tôi chưa bao giờ thử nghiệm nó:
create table Person
(
Age int not NULL check( Age > 0) ,
Height numeric(10,2) not NULL check( Height > 5),
Gender varchar(5) not null check( Gender in ('M', 'F', 'O')),
BirthDate datetime null,
)
DECLARE @schema xml
SET @schema = (SELECT * FROM Person FOR XML AUTO, ELEMENTS, XMLSCHEMA('PersonSchema'))
select @schema