SQLServerCentral is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
 
 
 
        
Home       Members    Calendar    Who's On



Script SQL Table Schema as XML-XSD Expand / Collapse
Author
Message
Posted Thursday, October 08, 2009 4:12 AM
SSC Rookie

SSC RookieSSC RookieSSC RookieSSC RookieSSC RookieSSC RookieSSC RookieSSC Rookie

Group: General Forum Members
Last Login: 2 days ago @ 10:51 PM
Points: 38, Visits: 137
Comments posted to this topic are about the item Script SQL Table Schema as XML-XSD
Post #799844
Posted Wednesday, October 28, 2009 10:03 AM
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: General Forum Members
Last Login: Friday, November 20, 2009 7:43 AM
Points: 1, Visits: 7
Just a note, you can change the element names if necessary for obfuscation with aliases as well, for example:

SELECT TOP 0 [ID] = MemberAddrID
, [Address1] = Addr1
, [Address2] = Addr2
, [Address3] = Addr3
, [City]
, [State] = ST
, [Zipcode] = Zipcode
FROM dbo.MBR_ADDR AS [MEMBER_ADDRESS]
FOR XML AUTO, XMLSCHEMA;

You're not locked into just following table's structure, you can do this on views as well, nice to see this article since its something that a lot of people don't know about or don't think regularly about.
Post #810097
« Prev Topic | Next Topic »


Permissions Expand / Collapse