cobrix
cobrix copied to clipboard
A COBOL parser and Mainframe/EBCDIC data source for Apache Spark
## Question Looking into POM.XML file and the files are being generated using compiler version as 1.6 Are you planning to use 1.8 as compiler version
## Background I work for a credit card company in the retail sector, and we are currently utilizing Cobrix to acquire data from our credit card transaction processor and produce...
## Background I am currently working on a project where a Cobol based system is using a MS SQL Server instance as its back end. I am able to connect...
Hi, #It's a question , not an issue. I need to process a mainframe file in azure databricks , which has certain comp-3 values as well. I have the copy...
I have a copybook which has multiple 01 levels. Can this copy book is parsed as variable length. can I parse like below cobolDataframe = spark .read .format("cobol") .option("copybook", v_copybook)...
## Background Header segments are present only at the beginning of each file. Sometimes it is useful to propagate fields of the segment to all of the records in the...
It appears that SYNC clause in copybooks is not supported at the moment. Would be good if they were. 01 LN-HEADER-1 SYNC.
When I tried to parse variable length file with rdw headers. I tried like below cobolDataframe = spark .read .format("cobol") .option("copybook", v_copybook) .option("schema_retention_policy", "collapse_root") //removes the root record headerc .option("drop_group_fillers",...
First of all, thanks for being so passionate about what you do. Let's say we have a file with 5 records: sdksdkdfksd dsfsdlflldfllld dfsdffdfsdfsf sdf;sd;ds;sdll sdfsffddsdsff And we want to...
Is it expected behavior for redefined fields to have same length as fields which they redefine? Let's say we have 07 AAA 10 BBB PIC X(06). 10 CCC PIC X(13)....