cancel
Showing results for 
Search instead for 
Did you mean: 

sql server limitation for row data length

Former Member
0 Kudos

we are facing a challenge while creating UDF in SAP B1 - sql server limitation for row data length (8KB)

Has anybody faced such problem before and is there a solution / work around for this problem.

Please require an urgent help.

Thanks and Regards,

Ashutosh

7838432014

Accepted Solutions (0)

Answers (4)

Answers (4)

pedro_magueija
Active Contributor
0 Kudos

Hi guy,

Have a look at my reply here:


Best regards,

Pedro Magueija


View Pedro Magueija's profile on LinkedIn

Former Member
0 Kudos

Hi

i face the same problem during creating UDF. Any update please share me!

my error:"SQL Server limitation for row data length  'Payment Methods for Payment Wizard' (OPYM) (8060 bytes)  [Message 131-405]"

Many thanks,

Viet

Former Member
0 Kudos

Hi,

It is due to multiple text column in particular table. Alternatively changing text column types to varchar(2000) will resolve this issue.

Regards

Jay

former_member188958
Active Contributor
0 Kudos

The common solutions include

1) storing some of the data in text/image columns

2) moving some of the columns to another table

3) splitting the data across multiple rows using a "sequence number" column to order them.