BULK INSERT /BCP with UDT
Hi, pkv,Sorry for the late reply. After looking at your data, I'm now sure your problem isn't same as mine.Your task is to BULK INSERTXML data file into a relational table. Also called...
View ArticleBULK INSERT /BCP with UDT
Here is the sample of the file:<?xml version="1.0" encoding="windows-1250"?><root> <organizace> <cislo_subjektu>65673</cislo_subjektu>...
View ArticleBULK INSERT /BCP with UDT
Hi, PkvI'm not sure your problem is the same as mine. What I asked and later found the solution is about the UDT bulk load, and the fundamental issue is UDT's Parse(String) method won't be called...
View ArticleBULK INSERT /BCP with UDT
I have same problem and i am getting nuts about it.Target table:CREATE TABLE [dbo].[organiz] ( [cislo_subjektu] [int] NULL , [reference_subjektu] [varchar] (30) COLLATE SQL_Czech_CP1250_CI_AS...
View ArticleBULK INSERT /BCP with UDT
Finally got the solution, and I spend some time to blog it here:http://sqlblogcasts.com/blogs/dong/archive/2006/11/27/how-to-bulk-insert-your-user-defined-types-udt.aspxComments please, and your view...
View ArticleBULK INSERT /BCP with UDT
It has been too long nobody answer this question, so bring it up again. Also turn the question in a simple way:How to do BULK load for UDT?Thanks everybody!
View ArticleBULK INSERT /BCP with UDT
Dear all,I tried to do BULK INSERT / BCP of a table with a UDT column there.The data file looks like this: (Tab, \n, second column is the UDT column)9556987 C,C,0.84 49745889845355 C,C,0.84...
View Article