ExcelからMsSQLServer2005にデータをインポートする方法

SQLコード:
/***
** OS:window7
** DataBase:MsSQLServer2005
** DBFile:2003 Excel
**/
/** 注意事項:
** 1. 管理者としてSQL Serverにログインして、ベリフェラル機能を選択する
**  リモート呼び出し、OLEオートメーション
** 2. mssqlserverサービスが再起動
** 3. DBFileは非アクティブステータスを確保
** 4.DBFileの列の数とテーブルの構造を一致することを確保
**/
—————-
exec sp_configure 'show advanced options’,1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries’,1
reconfigure
EXEC sp_configure 'show advanced options’, 1
GO
RECONFIGURE
GO
EXEC sp_configure 'Ad Hoc Distributed Queries’, 1
GO
RECONFIGURE
GO
prconfigure
create table student
(
id int identity primary key,
name varchar(50) ,
sex tinyint,
mark varchar(50)
)
insert into student(name,sex,mark)
SELECT * from
OPENROWSET('MICROSOFT.JET.OLEDB.4.0’ ,
'Excel 5.0;HDR=YES;DATABASE=d:\\startnews24_testdata.xls’,sheet1$) ;
select * from student ;

DataBase

Posted by arkgame