You are on page 1of 4

Examples

Search for the string 'SYSTEMS' appearing anywhere within the


PROJNAME column in the PROJECT table.
SELECT PROJNAME FROM PROJECT
WHERE PROJECT.PROJNAME LIKE '%SYSTEMS%'
Search for a string with a first character of 'J' that is exactly two characters
long in the FIRSTNME column of the EMPLOYEE table.
SELECT FIRSTNME FROM EMPLOYEE
WHERE EMPLOYEE.FIRSTNME LIKE 'J_'
Search for a string of any length, with a first character of 'J', in the
FIRSTNME column of the EMPLOYEE table.
SELECT FIRSTNME FROM EMPLOYEE
WHERE EMPLOYEE.FIRSTNME LIKE 'J%'
In the CORP_SERVERS table, search for a string in the LA_SERVERS
column that matches the value in the CURRENT SERVER special register.
SELECT LA_SERVERS FROM CORP_SERVERS
WHERE CORP_SERVERS.LA_SERVERS LIKE CURRENT SERVER
Retrieve all strings that begin with the sequence of characters '%_\' in
column A of the table T.
SELECT A FROM T WHERE T.A LIKE
'\%\_\\%' ESCAPE '\'
Use the BLOB scalar function, to obtain a one byte escape character which
is compatible with the match and pattern data types (both BLOBs).
SELECT COLBLOB FROM TABLET
WHERE COLBLOB LIKE :pattern_var ESCAPE BLOB(X'OE')




























Computer Motherboard Information
By Mike Marcoe, eHow Contributor
The primary hardware component of any computer system is the motherboard. Every
other piece of computer hardware, from the keyboard, mouse, CPU and RAM to
expansion cards, all connect into the motherboard. Motherboards are also known by
different names, such as main board, printed circuit board (PCS) or systems board.
Without the primary circuit system of the motherboard, one would have no
computer. Have a question? Get an answer from online tech support now!


Read more : http://www.ehow.com/about_5202406_computer-motherboard-information.html

Basics
Motherboards are printed with circuits that are multiple layers thick, and are, therefore,
often difficult to see. Every motherboard is at least two or more layers thick. The printed
wires are called traces, and they carry and transmit the data and commands between the
CPU, Northbridge, RAM and other hardware devices. The motherboard also needs to
connect to the power supply in order to provide the proper power for the computer.
Therefore, the motherboard and power supply must have matching connector slots.
Characteristics
There are three common related characteristics that help to define modern
motherboards. The first is form factor. Form factor is what designates the actual physical
size of the motherboard, as well as the location of the ports on it, airflow and other
components. The second characteristic is the chipset, which defines the type of RAM and
how much RAM the computer will support, as well as the processor that is required for
the motherboard. The third characteristic includes the built-in components, which
define the basic function capabilities of the entire computer system.
Types
There are numerous types of motherboard form factors, according to
http://www.computerhope.com/jargon/m/mothboar.htm. Each one comes with
different features and components. There are many popular motherboard
manufacturers, and depending on your computing needs, you can have a custom
motherboard designed for you.
Chipsets
Chipsets on the motherboard determine the types of hardware, memory capacity and
other external devices that the computer can support without adding expansion cards to
the computer. In general, modern computers are composed of two main chips, called the
Northbridge and the Southbridge.
Northbridge chips do a lot of work on the motherboard; they require their own heat sink
and fan. The Northbridge assists the CPU in working with the RAM. On some
motherboards, the Northbridge actually provides communication with the video card
instead of the memory, as the memory controller on those types of motherboards is built
directly into the CPU. The Northbridge is generally located under the fan on the
motherboard.
The Southbridge handles expansion and mass-storage devices. Its main job is as a
controller hub on the hard drive.
Modern motherboard manufacturers usually add a third primary chip called the Super
I/O chip, or system ROM chip. This chip provides part of the support for the system
BIOS at a basic level.
Additional Components
Other basic motherboard components include USB/FireWire ports, onboard sound
chips, RAID (redundant array of independent devices) and audio, modem, and
communications and networking riser slots.
Some motherboards are designed to offer support for older technologies, such as floppy
drives, modems, infrared connections and parallel ports; yet most modern chipsets on
newer motherboards do not support those older devices.


Read more : http://www.ehow.com/about_5202406_computer-motherboard-information.html


Different Types of Computer Monitors

Read more : http://www.ehow.com/facts_4969872_different-types-computer-monitors.html

CRT
CRT (Cathode Ray Tube) computer monitors were the most common computer monitors
until flat panel screens became affordable. Similar to older TVs, CRT monitors still
typically have much better contrast ratios and viewing angles than other computer
monitor alternatives.
LCD
LCD (Liquid Crystal Display) computer monitors save a lot of space and can even be
mounted on walls. They provide a wide viewing angle and come in sizes typically ranging
from 17-inches to 60-inches.
Plasma
Plasma computer monitors are less commonly used with computers due to their high
operating temperatures, high power consumption, and fixed resolution.
Touchscreen
Touchscreen computer monitors provide a new way of interacting with your computer
with a touch-sensitive screen. This allows users to interact directly with the application
on screen without need for a mouse or keyboard.
OLED
OLED (Organic Light Emitting Display) computer monitors are much thinner and
brighter than LCD or Plasma screens. OLED monitors can also be placed on transparent
surfaces, such as glass, allowing the user to see through them when not active.


Read more : http://www.ehow.com/facts_4969872_different-types-computer-monitors.html

You might also like