Estou tentando inserir uma imagem em uma tabela mas esta apresentando o seguinte erro!
Cannot bulk load because the file "\\moju\0001_20110412_Entrega\000001.tif" could not be opened. Operating system error code 5(failed to retrieve text for this error. Reason: 15105).
O código que estou usando é esse...
create table DrouImagem
( Cod Int Identity Not Null,
caminho varchar(100) not null,
Imagem image null)
go
insert into @DrouImagem (CAMINHO, IMAGEM)
SELECT '\\moju\0001_20110412_Entrega\000001.tif', * FROM OPENROWSET(BULK '\\moju\0001_20110412_Entrega\000001.tif', SINGLE_BLOB) As Imagem
Detalhe é que esse caminho é de rede \\moju\0001_20110412_Entrega\ de um outro servidor mas que esta compartilhado eu eu enxergo essa pasta!
Quem puder me ajudar agradeço.
Douglas