Tables and Views contained in a SQL Server database contains a field (Parcel_UID) defined as nvarchar(50)
This field contains a 13 digit number (e.g. 1000017299772)
I use Crystal Reports 9 to connect to the SQL Server database so that I can use the views to create a report
However, Crystal Reports converts the Parcel_UID field to a "number" data type
When I use the Crystal Reports Select Expert to filter the data on the Parcel_UID field, I get an overflow error
The statement used in the Select Expert is as follows:
{vw_DistinctParcels.Parcel_UID} > 0
Where vw_DistinctParcels is the name of the view used
When I execute the select statement the error I get is as follows:
Not Supported
Details: ADO Error Code: 0x80004005
Source: Microsoft OLE DB Provider for SQL Server
Description: THe conversion of the varchar value '1000017299772' overflowed an int column. Maximum integer value exceeded
SQL State: 22003
Native Error: 248
Any suggestions or solution would be appreciated
This field contains a 13 digit number (e.g. 1000017299772)
I use Crystal Reports 9 to connect to the SQL Server database so that I can use the views to create a report
However, Crystal Reports converts the Parcel_UID field to a "number" data type
When I use the Crystal Reports Select Expert to filter the data on the Parcel_UID field, I get an overflow error
The statement used in the Select Expert is as follows:
{vw_DistinctParcels.Parcel_UID} > 0
Where vw_DistinctParcels is the name of the view used
When I execute the select statement the error I get is as follows:
Not Supported
Details: ADO Error Code: 0x80004005
Source: Microsoft OLE DB Provider for SQL Server
Description: THe conversion of the varchar value '1000017299772' overflowed an int column. Maximum integer value exceeded
SQL State: 22003
Native Error: 248
Any suggestions or solution would be appreciated