Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NetCobol Field and database size retrictions

Status
Not open for further replies.

RickW423

Programmer
Oct 24, 2018
1
US
Hey all:
Trying to convert to the Fujitsu NETcobol and have run into issues.

Would anyone know what the max database size can be in NetCobol?

Would anyone know the max field size that can be used in Netcobol Databases?

Example: IN Micro focus Cobol it is varchar(max) Size 2 GB.

Thanks
 
bit more detail.

converting into NetCOBOL from what language? or are you converting from NETCOBOL to another language?

What database vendor and version?
What issues
- loading data to database
- converting code to use database
- retrieving data from database post conversion


and what error are you getting?

For individual character fields and in most cases limit is going to be 2147483647 (e.g. int32 size) which is not a varchar(max) but something else.

As for database size NetCobol does not care about it at all - you can have a 1TB database or a 10MB that is all the same for any COBOL vendor that supports databases.

reading these 2 manuals is advisable



Regards

Frederico Fonseca
SysSoft Integrated Ltd

FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top