Eu tenho uma tabela definida como tal:
CREATE TABLE [dbo].[IpMetadata](
[StartIp] [bigint] NOT NULL,
[EndIp] [bigint] NOT NULL,
[CountryCode] [char](10) NOT NULL,
[ProxyType] [varchar](50) NULL,
[ProxyDescription] [varchar](50) NULL,
[IspName] [varchar](100) NULL,
[MobileCarrier] [varchar](50) NULL,
[MobileCarrierCode] [varchar](50) NULL,
[Latitude] [varchar](50) NULL,
[Longitude] [varchar](50) NULL,
[PostalCode] [varchar](50) NULL,
[City] [varchar](50) NULL,
[Region] [varchar](50) NULL,
[Country] [varchar](50) NULL,
[GmtOffset] [varchar](50) NULL,
[SupportsDaylightSavings] [char](10) NULL,
[MetroCode] [varchar](50) NULL,
[AddressCount] [int] NOT NULL,
CONSTRAINT [PK_IpMetadata] PRIMARY KEY CLUSTERED
(
[StartIp] ASC,
[EndIp] ASC
)
)
Eu tenho um arquivo de amostragem codificado em UTF-8 (D:\data\ipsnip.csv) com linhas terminadas por CRLF delimitadas por tabulação para inserir nesta tabela assim:
#start-ip end-ip edge-two-letter-country proxy-type proxy-description isp-name mobile-carrier mobile-carrier-code edge-latitude edge-longitude edge-postal-code edge-city edge-region edge-country edge-gmt-offset edge-in-dst edge-metro-code address-count
0 0 ** 0 0 0 0 reserved *** *** +9999 n -1 0
1 255 ** 0 0 0 0 reserved *** *** +9999 n -1 254
256 16777215 ** 0 0 0 0 reserved *** *** +9999 n -1 16776959
16777216 16777343 au 0 -37.7596 145.134 3106 templestowe vic aus +1000 n 36211 127
16777344 16777407 au 0 -37.7596 145.134 3106 templestowe vic aus +1000 n 36211 63
16777408 16777471 au 0 -37.7596 145.134 3106 templestowe vic aus +1000 n 36211 63
16777472 16778239 cn chinanet fujian province network 0 26.0786 119.298 350000 fuzhou 35 chn +800 n 156115 767
16778240 16779263 au big red group 0 -37.8387 144.99 3141 south yarra vic aus +1000 n 36206 1023
16779264 16781311 cn chinanet guangdong province network 0 30.6611 104.082 510000 guangzhou 44 chn +800 n 156196 2047
16781312 16785407 jp i2ts inc. 0 35.6838 139.754 100-0001 tokyo 13 jpn +900 n -1 4095
Eu corro o comando BCP assim:
bcp MyDatabase.dbo.IpMetadata in D:\data\ipsnip.csv -F2 -Slocalhost -n -T
Eu recebo uma resposta de volta assim:
Starting copy...
SQLState = S1000, NativeError = 0
Error = [Microsoft][ODBC Driver 11 for SQL Server]Unexpected EOF encountered in BCP data-file
BCP copy in failed
Eu tentei especificar explicitamente os terminadores de coluna e linha. Eu tentei usar definições de coluna unicode. Eu tentei mudar as extremidades da linha para LF em vez de CRLF. Eu tentei substituir os terminadores de campo por ponto e vírgula/pipas. Eu tentei -n
e -N
. Não sei mais o que tentar. Alguém pode ajudar?
Então acontece que the
-n
e the não-N
são o que eu queria; Eu assumi que ele usava os metadados db para converter implicitamente os dados recebidos, mas parece que está esperando dados binários com isso.Mudei para
-c
e funcionou sem problemas.O comentário de Jacob sob a pergunta me ajudou!
Adicionar
-w
o código ajudou a importar meus arquivos.