SQL Server 2008 から utf-8 データを 2 つのオプションで Excel にエクスポートしようとしています。しかし、data-utf-8 は正しくあり
ません
|Name |
|TrÆ°á»ng ÄH Dược|
aspコードを使用してブラウザに表示する場合
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
データは次のように正しく表示されます
|Name |
|Trường ĐH Dược |
しかし、私がExcelにエクスポートするとき:
オプション 1 私が使用している
Enable Ad Hoc Distributed Queries
EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure 'Ad Hoc Distributed Queries', 1;
GO
RECONFIGURE;
GO
INSERT INTO OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 8.0;Database=C:\testing.xls;', 'SELECT Name, Email FROM [Sheet1$]')
SELECT Name, Email FROM tblnames
GO
またはオプション 2: i using
SQL Server Import and Export Wizard
しかし、どちらのオプションも正しい data-utf-8 を表示しません。それはまだ好きです
|Name |
|TrÆ°á»ng ÄH Dược|
SQL Server 2008 から utf-8 データを Excel にエクスポートする方法