Skip to content

AWS Blu Age L3 carddemo-web File Error: READ on CXACAIX

0

Hello team, hope everyone is doing fine, I'm currently doing the AWS L3 Workshop, im at the step execution->test->online->User features and I'm stuck with the following error when trying to view any account:

Error

File Error: READ on CXACAIX returned RESP 000000012 ,RESP2 000000001

there's no exception or errors in the console, only a message of a missing file but it's hard to know since it doesn't give much detail:

LOG

I´m aware there's a step in the workshop where you have to remove CXACAIX references, but I already checked I did correctly in the transformed files.

Any guidance or tips on how to fix this would be greatly appreciated.

asked 2 years ago423 views
3 Answers
1

Please check again that you have correctly made the ad hoc modifications related to Alternate Indexes handling

  • No record must be present in FILE_TABLE table with FILE_COL equal CXACAIX or CARDAIX from jics database (execute below SQL request to check that no rows are returned)
  • A JSON file named jicsFileAix.json must be created with below content and be present in the working directory for local deployment (check your working directory setup and content)
# No rows should be returned
select * from file_table where file_col = 'CARDAIX' or file_col = 'CXACAIX';
[{
  "fileAix" : "CXACAIX",
  "relativeKeyPosition" : 25,
  "keyLength" : 11,
  "allowDuplicates" : true,
  "associatedFile" : "CCXREF"
},
{
  "fileAix" : "CARDAIX",
  "relativeKeyPosition" : 16,
  "keyLength" : 11,
  "allowDuplicates" : true,
  "associatedFile" : "CARDDAT"
}]

Instructions pages:

Solution pages:

AWS
answered 2 years ago
EXPERT
reviewed 2 years ago
0

Enter image description here

NO Data on CardDemo Jics DB

answered 5 months ago
0

Tried above solution. Checked: No record must be present in FILE_TABLE table with FILE_COL equal CXACAIX or CARDAIX from jics database (execute below SQL request to check that no rows are returned) A JSON file named jicsFileAix.json must be created with below content and be present in the working directory for local deployment (check your working directory setup and content) Still getting the same error Enter image description here

answered 5 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.