Data Partitioning and Relational Model Implementation

Implementation of Data Partitioning through Range

Step 1: Create a Database

mysql>create database mca;

mysql>use mca

Step 2: Create a Partitioned Table

mysql> CREATE TABLE tr (id INT, name VARCHAR(50), purchased DATE)
PARTITION BY RANGE (YEAR(purchased)) (
PARTITION p0 VALUES LESS THAN (1990),
PARTITION p1 VALUES LESS THAN (1995),
PARTITION p2 VALUES LESS THAN (2000),
PARTITION p3 VALUES LESS THAN (2005),
PARTITION p4 VALUES LESS THAN (2010),
PARTITION p5 VALUES LESS THAN (2015)
);

Step 3: Insert Data

mysql&

Read More

Understanding Mobile Network Architectures: From GSM to 5G

LTE Network Architecture

The Long-Term Evolution (LTE) network architecture consists of three main components:

  1. User Equipment (UE): Devices like smartphones or tablets that connect to the LTE network.
  2. Evolved UMTS Terrestrial Radio Access Network (E-UTRAN): The radio access network with eNodeB base stations, providing the connection between the UE and the core network.
  3. Evolved Packet Core (EPC): The core network handling signaling and data traffic, including nodes like the Mobility Management Entity
Read More

Software Engineering and Project Management Overview

Features:

Software does not wear, is not sensitive to environmental problems, failure means whole design or implementation error: SW maintenance is more complicated than the HW, Most software is tailored. Today: Object Orientation, Reusability ( reduces costs and improves designs).

A computer system is characterized by d: Hardware – Software-Information – Users – Tasks – Documentation

Software applications: Basic Software – Real Time – Shopping – Science or Engineering – Embedded – Personal Computer

Read More

Storage Limits and System Configuration

Storage limits


snapshot max 255 per volume

qtree max 4995 per volume

vol max (64bit) 16TB per volume

flexvol max FAS2040: 200 & All other models: 500 per filer


flexvol min 20MB

flexvol vol (32-bit) 16TB


flexvol vol (64-bit) 100TB or Model-dependent

trad vol max 16TB per volume

aggr max (32-bit) 16TB


aggr max (64-bit) Model-dependent

aggr min size RAID-DP: 3 disks /  RAID4: 2 disks

raid group max 150 per aggr


raid group max 400 per filer

max lun size 16TB per lun


steps:

1) enable sm on source & destination

Read More

Aircraft systems

Basic Concepts

  • Various Wireless Spectrums: range, data rate, frequency, technologies

  • Wireless technologies: WHAN, WPAN, WLAN, WMAN, WWAN

  • Cellular Networks: 0g, 1g, 2g, 3g, 4g

  • Bandwidth

– Data rate, frequency, channel width

• Throughput
– Bandwidth, data rate, output, good‐put, as well as link, path, system throughput

  • Throughput is achievable data rate

  • Capacity is the maximum throughput

  • Wireless is primarily in Layers 1 and 1⁄2

  • All Wireless Networks are in Cellular format, 8/29/2017

24/100

Wireless

Read More

Raspberry Pi Python Programming Examples

Basic Input/Output and Calculations

This code demonstrates basic input/output operations and calculations in Python on a Raspberry Pi.

Area Calculation

This code calculates the area of different shapes based on user input.

Current Time and Sleep

This code displays the current time and sleeps for 10 seconds repeatedly.

Word Count in a File

This code reads a text file and counts the number of words in each line.

LED Control with Switches

This code controls two LEDs using two switches. When a switch is pressed,

Read More