I am try to do a simple import of a few rows into an empty table and i am beyond frustrated.Here is my Table Create table dbo.Results ( RESULTS_DATE datetime not null, TARGET int not null, VALUE int not null, SCALED_TARGET int null, SCALED_VALUE int not null, SUBJECT VARCHAR(18) not null, TECHNIQUE CHAR(10) not null, NR_PERIODS int not null) ;
Here is the data that I am trying to import. 01042010,780,780,273000,273000,ingenium,UPTIME,101052010,780,780,273000,273000,ingenium,UPTIME,101062010,780,738,273000,258300,ingenium,UPTIME,101072010,780,780,273000,273000,ingenium,UPTIME,101082010,780,780,273000,273000,ingenium,UPTIME,101092010,300,300,105000,105000,ingenium,UPTIME,101042010,0,0,0,0,ingenium,WINDOW,101052010,0,35,0,12250,ingenium,WINDOW,101062010,0,0,0,0,ingenium,WINDOW,101072010,0,0,0,0,ingenium,WINDOW,101082010,0,0,0,0,ingenium,WINDOW,101042010,780,780,78000,78000,life70,UPTIME,101052010,780,780,78000,78000,life70,UPTIME,101062010,780,780,78000,78000,life70,UPTIME,101072010,780,780,78000,78000,life70,UPTIME,101082010,780,780,78000,78000,life70,UPTIME,101092010,300,280,30000,28000,life70,UPTIME,101042010,0,0,0,0,life70,WINDOW,101052010,0,0,0,0,life70,WINDOW,101062010,0,0,0,0,life70,WINDOW,101072010,0,0,0,0,life70,WINDOW,101082010,0,0,0,0,life70,WINDOW,101052010,0,0,0,0,AF_Series,WINDOW,101062010,0,0,0,0,AF_Series,WINDOW,101072010,0,0,0,0,AF_Series,WINDOW,101082010,0,60,0,60,AF_Series,WINDOW,101092010,0,0,0,0,AF_Series,WINDOW,101052010,0,0,0,0,FR_Series,WINDOW,101062010,0,0,0,0,FR_Series,WINDOW,101072010,0,0,0,0,FR_Series,WINDOW,101082010,0,0,0,0,FR_Series,WINDOW,101092010,0,0,0,0,FR_Series,WINDOW,101032010,0,3,0,4200,Agent_Portal,TASK,101042010,0,0,0,0,Agent_Portal,TASK,101052010,0,2,0,2800,Agent_Portal,TASK,101062010,0,1,0,1400,Agent_Portal,TASK,101072010,0,0,0,0,Agent_Portal,TASK,101032010,1440,1440,2016000,2016000,Agent_Portal,UPTIME,101042010,1440,1440,2016000,2016000,Agent_Portal,UPTIME,101052010,1440,1440,2016000,2016000,Agent_Portal,UPTIME,101062010,1440,1440,2016000,2016000,Agent_Portal,UPTIME,101072010,1440,1440,2016000,2016000,Agent_Portal,UPTIME,101082010,1440,1440,2016000,2016000,Agent_Portal,UPTIME,101092010,1440,1440,2016000,2016000,Agent_Portal,UPTIME,101102010,1440,1440,2016000,2016000,Agent_Portal,UPTIME,101062010,0,18,0,25200,Agent_Portal,RELEASE,101072010,0,0,0,0,Agent_Portal,RELEASE,101082010,0,0,0,0,Agent_Portal,RELEASE,101112010,0,0,0,0,Agent_Portal,RELEASE,101122010,0,0,0,0,Agent_Portal,RELEASE,101132010,0,3,0,4200,Agent_Portal,RELEASE,101142010,0,0,0,0,Agent_Portal,RELEASE,101152010,0,0,0,0,Agent_Portal,RELEASE,101192010,0,0,0,0,Agent_Portal,RELEASE,101202010,0,0,0,0,Agent_Portal,RELEASE,101212010,0,0,0,0,Agent_Portal,RELEASE,101042010,540,540,54000,54000,VersionMgr,UPTIME,101052010,540,540,54000,54000,VersionMgr,UPTIME,101062010,540,540,54000,54000,VersionMgr,UPTIME,101072010,540,540,54000,54000,VersionMgr,UPTIME,101082010,540,480,54000,48000,VersionMgr,UPTIME,101042010,0,0,0,0,VersionMgr,REPAIR,101052010,0,0,0,0,VersionMgr,REPAIR,101062010,0,0,0,0,VersionMgr,REPAIR,101072010,0,0,0,0,VersionMgr,REPAIR,101082010,0,60,0,6000,VersionMgr,REPAIR,101092010,0,0,0,0,VersionMgr,REPAIR,101032010,1320,1320,462000,462000,DWDB,UPTIME,101042010,1320,1320,462000,462000,DWDB,UPTIME,101052010,1320,1320,462000,462000,DWDB,UPTIME,101062010,1320,1320,462000,462000,DWDB,UPTIME,101072010,1320,1320,462000,462000,DWDB,UPTIME,101082010,1320,1320,462000,462000,DWDB,UPTIME,101092010,1200,1110,420000,388500,DWDB,UPTIME,101092009,0,15,0,15,SGA,WINDOW,101042009,0,42,0,1680,PDR,WINDOW,1
When I attempt to import via the MGT Studio GUI, I get this error: Warning 0x802092a7: Data Flow Task: Truncation may occur due to inserting data from data flow column "Column 5" with a length of 50 to database column "SUBJECT" with a length of 18.(SQL Server Import and Export Wizard)Warning 0x802092a7: Data Flow Task: Truncation may occur due to inserting data from data flow column "Column 6" with a length of 50 to database column "TECHNIQUE" with a length of 10.(SQL Server Import and Export Wizard)Warning 0x802092a7: Data Flow Task: Truncation may occur due to inserting data from data flow column "Column 5" with a length of 50 to database column "SUBJECT" with a length of 18.(SQL Server Import and Export Wizard)Warning 0x802092a7: Data Flow Task: Truncation may occur due to inserting data from data flow column "Column 6" with a length of 50 to database column "TECHNIQUE" with a length of 10.(SQL Server Import and Export Wizard)I don't see anything wrong with the data.. can anyone help?