I have a table called employees
it has an employeeid, firstname, lastname etc....
I have some data in the lastname column that has special characters -- tildas and such -- for international names.
In Query Analyzer I have:
sp_makewebtask @outputfile = 'c:\temp\myxmlfile.xml',
@query = 'select * from employees for xml auto',
@templatefile = 'c:\temp\template.tpl'
When I run this command, the data comes out like this:
LastName="MARTÃ?N"
when it should be LastName=MARTÍN
Anyone know how I can correct this?
Thanks
fergmj
it has an employeeid, firstname, lastname etc....
I have some data in the lastname column that has special characters -- tildas and such -- for international names.
In Query Analyzer I have:
sp_makewebtask @outputfile = 'c:\temp\myxmlfile.xml',
@query = 'select * from employees for xml auto',
@templatefile = 'c:\temp\template.tpl'
When I run this command, the data comes out like this:
LastName="MARTÃ?N"
when it should be LastName=MARTÍN
Anyone know how I can correct this?
Thanks
fergmj