From 4f5ca6477ba7ca929d018533f7c15a910f483ead Mon Sep 17 00:00:00 2001 From: "LIAM M. DOHERTY" Date: Fri, 30 Aug 2019 11:15:54 +1000 Subject: [PATCH] Fix github issue https://github.ibm.com/IBMDBB/DBB/issues/607 I removed the setting of blksize=80 if blksize is not set. This allows the system to default to the optimum system blksize. --- Migration/sclm/groovy/GenerateDBBXml.groovy | 1 - 1 file changed, 1 deletion(-) diff --git a/Migration/sclm/groovy/GenerateDBBXml.groovy b/Migration/sclm/groovy/GenerateDBBXml.groovy index 22723acf..5f385f84 100644 --- a/Migration/sclm/groovy/GenerateDBBXml.groovy +++ b/Migration/sclm/groovy/GenerateDBBXml.groovy @@ -221,7 +221,6 @@ def convertToBpxwdynOptions(dsdef) options << dsTypeOptions[dsdef.@dsType.toInteger()] options << "recfm(${dsdef.@recordFormat.text().isEmpty() ? 'F,B' : dsdef.@recordFormat.toString().toUpperCase().findAll { ch -> ch in validRecfm }.join(',')})" options << "lrecl(${dsdef.@recordLength.text().isEmpty() ? 80 : dsdef.@recordLength.toInteger()})" - options << "blksize(${dsdef.@blockSize.text().isEmpty() ? 80 : dsdef.@blockSize.toInteger()})" if (!dsdef.@storageClass.text().isEmpty()) options << "STORCLAS(${dsdef.@storageClass.toString()})" if (!dsdef.@managementClass.text().isEmpty())