/
STEP 22 REGION CODE

STEP 22 REGION CODE

Sept 2021 : NOTE - all required code for this process is found at :

FAA DATA IMPORT PROCEDURE.TXT

simply copy and place into your preferred SQL tool


 

/*

If REGION code is not found on CAWIS tables, the default is US

*/

 

UPDATE M70_SDR_TRANSIT M70

SET    M70.REGION_CODE = 'US'

WHERE  NOT EXISTS

(SELECT 1 FROM TR02_REGION TR02

 WHERE  TR02.TC_REGION_CD = NVL(M70.REGION_CODE,'X')) ;

 

COMMIT ;

 

/*

Related content

STEP 2 Download the FAA data files
STEP 2 Download the FAA data files
Read with this
STEP 9 Parsing the Data
STEP 9 Parsing the Data
More like this
Importing FAA "SDR" Data to CAWIS
Importing FAA "SDR" Data to CAWIS
Read with this
STEP 27 CARRIER CODES
STEP 27 CARRIER CODES
More like this
STEP 23 ATA/JASC CODES
STEP 23 ATA/JASC CODES
More like this
STEP 26 WHEN_DISCOVERED and HOW_DISCOVERED
STEP 26 WHEN_DISCOVERED and HOW_DISCOVERED
More like this