Please Follow The Procedures in Chapter 7 of Acl in Practice PDF
Please Follow The Procedures in Chapter 7 of Acl in Practice PDF
Please Follow The Procedures in Chapter 7 of Acl in Practice PDF
ACL in Practice
NOTE: Rename or Save this file as your Surname4A_Ch7_prac and if you’re finished, submit it to Google
Classroom - Chap7 practice.
Points to Remember: You can combine information from two or more tables by using the following
methods: ■ Join – The Join command creates a new table that includes selected fields from both files. ■ Relations –
The Relations command does not create a new table, but the fields in each of the related tables can be analyzed as if
they were in the same table. ■ Extract-and-append – You can extract records and append them to an existing table.
■ Merge – You can merge fields from two tables into one table.
■ Corrected a table by filtering out an invalid record and extracting the results to a new table.
■ Created a table that combines all of the CC transactions into one table.
TRANS2
Correct the layout of Trans1_May
Combine and verify the tables
Tasks: Use extract-and-append to combine the May transaction tables. Verify the combined table.
Check the table for duplicate transactions.
TRANS1 MAY
TRANS2 MAY
Check the combined table for duplicates
Check the Trans_May_All table for duplicates
Isolate and correct validity Errors
Tasks: Determine whether all the card numbers have exactly 16 digits. Make a 16-digit credit card field.
Extract repaired card number records to a new file. Correct the new list of employees.
Extract the valid records to a new table and save this as Surname4A_ Employees_May_Corrected
(Insert your answer here)
Your Log
(Insert here)
Your Folder
(Insert here)
EXPLANATIONS
DISPLAY
Use the DISPLAY command to show information about the active ACL environment. The
information displayed depends on the keyword you specify.
Syntax
DISPLAY DATE |TIME
DISPLAY HISTORY
DISPLAY OPEN
DISPLAY <PRIMARY>
DISPLAY RELATION
DISPLAY SECONDARY
DISPLAY VARIABLES
DISPLAY variable_name
DISPLAY VERSION
DATE displays the current date and time as defined by your computer’s operating system, and is
a synonym for TIME.
FREE or SPACE displays the amount of memory (RAM) available for use. The amount
displayed does not include RAM reserved for variables.
PRIMARY or SECONDARY displays the table layout of either the open primary or secondary
table. For each field in the table, the following information is displayed: name, data type, start
position, length, decimal places, and field explanation. For computed fields, the name, data type
(Computed), and the defining expression, including the default value, are shown.
VARIABLES displays the values of variables defined by the ASSIGN command and those
created automatically by certain ACL commands. Also displays the amount of space remaining
for additional variables.
The default amount of space for variables is 60K. However, ACL automatically increases the
amount of space available for storing variables when necessary.