|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, February 22, 2013 9:22 AM
Points: 63,
Visits: 224
|
|
Hi all
Where can I get a sample XML file to test importing to SQL via SSIS.
Thanks in advance.
|
|
|
|
|
SSCertifiable
       
Group: General Forum Members
Last Login: Today @ 1:07 PM
Points: 6,826,
Visits: 11,951
|
|
You could make your own. If you run this against any instance in your environment it will return an XML document that you can then save as a file for use experimenting with SSIS.
SELECT * FROM master.sys.tables AS [table] FOR XML AUTO, ROOT('tables');
__________________________________________________________________________________________________ There are no special teachers of virtue, because virtue is taught by the whole community. --Plato
Believe you can and you're halfway there. --Theodore Roosevelt
Everything Should Be Made as Simple as Possible, But Not Simpler --Albert Einstein
The significant problems we face cannot be solved at the same level of thinking we were at when we created them. --Albert Einstein
1 apple is not exactly 1/8 of 8 apples. Because there are no absolutely identical apples. --Giordy
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Friday, February 22, 2013 9:22 AM
Points: 63,
Visits: 224
|
|
| Thanks I'll give it a go.
|
|
|
|