INFS5000 AIS Flashcards - Topic 2 & Topic 3

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/42

flashcard set

Earn XP

Description and Tags

Comprehensive vocabulary flashcards covering Data Processing Cycles, ERP Systems, Database Concepts, ER Diagrams, Normalisation, Anomalies, and SQL components from INFS5000 Topic 2 and Topic 3.

Last updated 7:00 AM on 8/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

43 Terms

1
New cards

Data Processing Cycle

The four basic operations performed on data to generate meaningful, relevant information: Data Input, Data Storage, Data Processing, and Information Output.

2
New cards

Source Documents

Documents that capture transaction details at initiation or result, serving as internal control and audit trail evidence.

3
New cards

Picking List

A revenue cycle document originated by the warehouse to guide the selection of items from the warehouse.

4
New cards

Bill of Lading

A revenue cycle document originated by shipping that specifies freight items for the carrier.

5
New cards

Remittance Advice

A revenue cycle document originated by the customer to accompany cash or EFT payments received by receivables.

6
New cards

Credit Memo

A revenue cycle document originated by receivables to adjust customer accounts for returns, discounts, or write-offs.

7
New cards

Purchase Requisition

An expenditure cycle document originated by a user department to request materials or services from purchasing.

8
New cards

Purchase Order

An expenditure cycle document originated by purchasing that specifies items ordered and freight terms sent to the vendor.

9
New cards

Receiving Report

An expenditure cycle document originated by receiving/stores confirming that goods were received in good condition.

10
New cards

General Ledger (G/L)

A ledger containing summary-level data for every asset, liability, equity, revenue, and expense account.

11
New cards

Subsidiary Ledgers

Ledgers containing detailed sub-account data for G/L accounts that have many sub-accounts, such as individual customers or vendors.

12
New cards

Chart of Accounts (CoA)

A structured list of all G/L accounts, each with a unique code, enabling efficient capture, classification, coding, and analysis of transactions.

13
New cards

Entity

An object, person, place, event, or concept in a database that information is stored about.

14
New cards

Attribute

An identified characteristic or property of interest describing an entity type.

15
New cards

Field

The physical space in a data record where a specific data value is stored.

16
New cards

Record

A row of fields containing data about a single specific instance of an entity.

17
New cards

Master File

A basic file type storing relatively stable, permanent data that is reused across multiple transactions.

18
New cards

Transaction File

A basic file type containing individual records of specific business events or activities.

19
New cards

Enterprise Resource Planning (ERP) System

An integrated, enterprise-wide software solution with a common database and modular architecture that supports cross-functional business processes.

20
New cards

Silo Architecture

An information architecture where each department maintains its own separate database, application, and interface, leading to data duplication and re-keying.

21
New cards

Spaghetti Code

Fragile and complex point-to-point custom integrations created between siloed systems to reduce manual data re-keying.

22
New cards

3-Tier ERP Architecture

System architecture consisting of Tier 1 (User Tier client devices), Tier 2 (Application Server hosting modules and business logic), and Tier 3 (Database Tier hosting a shared RDBMS).

23
New cards

Master Data (ERP)

Relatively stable data created once and reused across many transactions, such as customer, vendor, and material records.

24
New cards

Transaction Data (ERP)

Data generated by a specific business event or activity, such as purchase orders, invoices, and payments.

25
New cards

Organizational Data

ERP data that defines the structure of an organization, such as company codes, business units, plants, and cost centres.

26
New cards

Database

A set of interrelated, centrally controlled data files stored with minimal data redundancy.

27
New cards

Logical View

The user-level (external) view of data that allows interaction with system outputs and interfaces without modifying underlying storage structures.

28
New cards

Physical View

The internal-level view of database structure showing how data is physically arranged and stored on storage hardware.

29
New cards

Entity Relationship (ER) Model

A widely used conceptual data model representing real-world database structures through entities, attributes, and relationships.

30
New cards

Composite Key

A primary key formed by combining two or more fields to create a unique identifier when no single column is sufficient.

31
New cards

Cardinality

The maximum number of times an instance of one entity can relate to instances of another entity.

32
New cards

Primary Key

An attribute or combination of attributes that uniquely identifies a specific row in a database table.

33
New cards

Foreign Key

An attribute in a table that is also the primary key in another table, used to link tables and sustain data integrity.

34
New cards

Normalisation

A bottom-up database design process that assigns attributes to entities according to rules to eliminate repeating groups and redundancy.

35
New cards

Deletion Anomaly

An un-normalised database error where deleting a record accidentally destroys unrelated data.

36
New cards

Update Anomaly

An un-normalised database error where modifying duplicated data in one location leaves identical data unchanged elsewhere.

37
New cards

Insertion Anomaly

An un-normalised database error where data about one entity cannot be recorded without first creating a record for another entity.

38
New cards

Data Definition Language (DDL)

A DBMS language component used to create databases, build data dictionaries, define logical views, and set security constraints (e.g., CREATE).

39
New cards

Data Manipulation Language (DML)

A DBMS language component used to alter database content, including updating, inserting, and deleting records (e.g., UPDATE).

40
New cards

Data Query Language (DQL)

A DBMS language component used to retrieve, sort, order, and display database records (e.g., SELECT).

41
New cards

Data Dictionary

A DBMS repository that documents details for every data element, including field type, length, source, usage, and user permissions.

42
New cards

Entity Integrity Rule

A relational database constraint stating that primary key fields cannot be null or empty.

43
New cards

Referential Integrity

A relational database rule specifying that foreign keys, if not null, must match an existing primary key value in another table.