Comments
1 comment
-
Hi Rockinder,
I've had this problem in the past, If I remember rightly there's no easy way of doing this through SQL Data Generator.
One thing you could try is using the FOR XML clause from flat tables. I think you have to have certain options set on the table and database level for this to work.
This work for me on Adventure works using the Person.Contact table and the AdditionalContactInfo column... (Takes a few seconds for the screen to refresh)SELECT TOP 1 NameStyle , Title , FirstName , MiddleName , LastName , Suffix , EmailAddress , EmailPromotion , Phone , PasswordHash , PasswordSalt FROM Person.Contact ORDER BY NEWID() FOR XML PATH('Contact') , ROOT('Person')
Make sure you have Loop until number... Ticked.
HTH
Add comment
Please sign in to leave a comment.
the data is like
<XML><name>abc</name><Address>nmnnnn333</Address>....</XML>
Want to create say 10k different XMLs in the same structure. is it possible.