create table tablet( 
 A nvarchar(
100),
 b nvarchar(
100),
 C nvarchar(
100)
)
Bulk insert Codematic..tablet from 
'c:\dd.txt'
with(
    datafiletype 
= 'char',
    fieldterminator 
= '|',
    rowterminator 
= '\n'
)
select 
* from tablet

相关文章:

  • 2021-11-26
  • 2021-04-13
  • 2021-10-05
  • 2021-12-06
  • 2021-05-21
  • 2022-12-23
  • 2021-06-25
  • 2022-02-25
猜你喜欢
  • 2021-08-08
  • 2022-12-23
  • 2022-12-23
  • 2021-07-18
  • 2022-02-25
相关资源
相似解决方案