hello,
Since several weeks, I 'm tried to solve this issue :
I export the security eventviewer with this command line :
wevtutil qe Security /c:20 > c:\evtdump.xml
I create xml task source on SSIS and try to generate XSD.
Until here, I have only warning because of the number of caracter on some data imported.
My really issue is SSIS find only 1 record on my file whereas I have 20.
If I open my file on IE I see only 1
If I open my file with an editor , I can see 20 lines.
If I use this command line to export eventviewer log :
wevtutil qe Security /c:20 /e:root > c:\evtdump.xml
I can see my 20 lines on IE but I can't generate XSD with SSIS because of several namespaces.
What I have to do to solve this problem ?
Thanks