OK
The "...) exceeds the maximum number of bytes per row (8060)...."
message is informational and it is because SQL Server can store only
8060 bytes in a table. Your MYTABLE has a definition lager than this
for each row so SQL Server is warning you that should you INSERT > 8060
bytes OR UPDATE a row to > 8060 bytes then it will fail. If you do not
exceed this amount then you are fine.
The error message also tells me you are trying to CREATE a table each
time and that it exists already. Is this the case? If it is and this
is the behavior you require then you will need to drop MYTABLE first
everytime you run the package but I am guessing that you will want to
keep the table but maybe remove the rows so you can delete the rows in
the table as a first step in the package.
Hope this helps
Allan
[quoted text, click to view] "GW" <GW@discussions.microsoft.com> wrote in message
news:GW@discussions.microsoft.com:
> Hi Experts,
>
> Appreciate if someone can help me. I'm trying to import a text file
> mytable.txt
> delimeted with pipe(|) and containing 300K of rows into empty table that I've
> created earlier. While I'm executing the DTS got this message :-
>
> There is already an object named 'MYTABLE' in the database.
> Warning :The table 'MYTABLE' has been created but its maximum row
> size (136057) exceeds the maximum number of bytes per row (8060). INSERT
> or UPDATE of a row in this table will fail if resulting row length exceeds
> 8060 bytes.
>
> FYI, before that I tried on other text file named mytable2.txt of which has
> a longer bytes per row than the previous text file into other table but it
> was successfully
> imported. Pls help me..
>
> TQ.