首页 > 开发 > 综合 > 正文

T-SQL: 读取磁盘文件

2024-07-21 02:07:31
字体:
来源:转载
供稿:网友

数据倒入还是建议用 bcp

if exists (select * from tempdb..sysobjects where id = object_id(n'tempdb..#t'))
   drop table [#t]

create table #t(id int identity(1,1) not null, remark varchar(8001) null)
insert into #t
exec master.dbo.xp_cmdshell 'type e:/data.txt'
select * from #t

剩下就靠你自己 根据"数据类型"  整理 "数据格式" 等了.....
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表