Mobile Database Management System
DATABASE HIT THE ROADS..
9/3/2012
WHAT IS MOBILE DATABASE?
A mobile database is a database that can be connected to by a mobile computing device over a mobile network.
A database that is portable and physically separate from the corporate database server. But Mobile Database is capable of communicating with that corporate database server from remote sites allowing the sharing of corporate database.
9/3/2012
It can also be defined as a system with the following structural and functional properties
Distributed system with mobile connectivity ( A mode in which a client or a server can establish communication with each other whenever needed ) Full database system capability
Complete spatial mobility
Wireless and wired communication capability
9/3/2012
ABILITY OF MOBILE DBMS SHOULD BE TO
communicate with centralized database server through modes such as wireless or Internet access; replicate data on centralized database server and mobile device; synchronize data on centralized database server and mobile device; capture data from various sources such as Internet; manage/analyze data on the mobile device; create customized mobile applications.
9/3/2012 4
Corporate Server
Corporate DB
Communication Link
Mobile DBMS
Laptop
Corporate DBMS
Mobile DB
Mobile DBMS Mobile DB
PDA
9/3/2012
NEED FOR MOBILE DATABASE
Need for data to be collected as it happens Business Today Means Anytime, Anywhere, Any Device Mobile users must be able to work without a wireless connection due to poor or even non-existent connections. Need to access data while the mobile user is disconnected from the networkwireless or otherwise. This capability is best implemented by incorporating persistent data storage using a mobile database in your application.
9/3/2012 6
FEATURES OF MOBILE DATA BASE
Provide relational database services but require little memory
Analyze and manipulate data on a mobile device
Handle SQL queries on the road Users can choose to - Work online with a central DBMS server - Download data & work on them - Capture real-time data & Synchronize later Are customized for mobile applications
9/3/2012
APPLICATIONS OF MOBILE DATABASES
BUSINESS
information on customers, competitors, and market trends anytime, anywhere. Salespersons can update sales & customer data on the move.
PUBLIC SECTOR US Army uses mobile database technology to get current inventory and readiness info that can save them logistical costs.
9/3/2012 8
HEALTH SECTOR
Used by Physicians to store and retrieve information while making their rounds. Used by doctors & Para medics to retrieve vital patient history & treatment info while attending to patients in battle fields & remote accident locations..
9/3/2012
DBMS FOR MOBILE DEVICES
DBMSs for mobile device should be dedicated to optimizing at least one of the following, preferably both: power optimization memory management
9/3/2012
10
POWER OPTIMIZATION
Mobile devices such as laptops, cell phones, PDAs, and radios have a limited power supply.
So we needed to optimize our DBMS to use as few resources as possible while providing the necessary functionality
MEMORY MANAGEMENT
Memory is an important criteria as far as mobile database systems are concerned. It is important to decide how much of the devices internal memory should be dedicated to the DB
9/3/2012
11
MOBILE DATABASE ARCHITECTURE
For any mobile architecture, things to be considered are:
Users are not attached to a fixed geographical location
Mobile computing devices: low-power, low-cost, portable
Wireless networks
Mobile computing constraints
9/3/2012
12
THREE PARTIES
Mobile databases typically involve three parties:
FIXED HOSTS MOBILE UNITS BASE STATIONS
9/3/2012
13
Fixed hosts perform the transaction and data management functions with the help of database servers. Mobile units are portable computers that move around a geographical region that includes the cellular network (or "cells") that these units use to communicate to base stations. (Note that these networks need not be cellular telephone networks.) Base stations are two-way radios, installations in fixed locations, that pass communications with the mobile units to and from the fixed hosts. They are typically low-power devices such as mobile phones, portable phones, or wireless routers.
9/3/2012
14
When a mobile unit leaves a cell serviced by a particular base station, that station transparently transfers the responsibility for the mobile unit's transaction and data support to whichever base station covers the mobile unit's new location
9/3/2012
15
MDS MARKET SHARE
Sybase SQL Anywhere dominates the mobile database field with over 68%.
IBMs DB2 Everyplace is second market share holder.
Third place is shared by Microsofts SQL Server Compact and Oracle9i Lite. Apples IOs use DataGlass mobile database by Impathic.
9/3/2012
16
SQL Anywhere
Developed By Initial Name Operating System Type Website: Watcom Watcom SQL Cross-Platform RDBMS
http://www.sybase.com/products/databasemanagement/sqlany where
9/3/2012
17
SQL Anywhere is a relational database management system(RDBMS) product from the company Sybase iAnywhere, a subsidiary of Sybase. SQL Anywhere can be run on Windows, Windows CE, Mac OS X, and various UNIX platforms. Database files are independent of the operating system, allowing them to be copied between supported platforms.
The engine supports stored procedures, and it can also function as a mobile database.
9/3/2012
18
Stored procedures may return result sets, i.e. the results of a SELECT statement such result sets can be processed using cursors. SQL Anywhere is used in several contexts, including as an embedded database, particularly as an application data store.
It can be used as a database server for work groups or for small or medium-sized businesses. World Vision Canda - World Vision Canada, with Sybase partner FieldWorker Products Limited, has developed and prototyped an innovative solution Last Mile Mobile Solutions based on SQL Anywhere, that allows the organization to efficiently aid in emergency situations.
9/3/2012
19
Scimore DB
Developed By Stable Release Operating System Type License Website Scimore UAB 4.0.2581.222 / Jan 2 Windows RDBMS Proprietary www.scimore.com
9/3/2012
20
SQLite
Developed By Initial Release Stable Release Written in Operating System Size Type License Website D. Richard Hipp August 2000 3.7.10 Jan 16 2012 C Cross-Platform 275kB RDBMS(Embeded) Public Domain www.sqlite.org
9/3/2012
21
Max DB size Max table size Max row size Max columns per row Max CHAR size Max NUMBER size Min DATE value Max DATE value Max column name size
128 TB Limited by file size Limited by file size 32767 2 GB 64 bits No DATE type No DATE type Unlimited
9/3/2012
22
What is SQLite?
Is an ACID compliant embedded RDBMS. Implements most of the SQL standard. Uses dynamically and weakly typed SQL syntax. Can read and write sequentially. Most widely used browsers, operating system, embedded system and many others.
9/3/2012
23
When to use SQLite?
Is different from most other SQL database engines in this Simple to administer. Simple to operate. Simple to embed in a larger program. Simple to maintain and customize. Small and fast. But MAINLY Very Reliable as it is so simple.
9/3/2012
24
WHEN NOT TO USE SQLite?
Its should not be used where simplicity is not the main criteria and where restriction to the common user are more. Simplicity of administration Simplicity of Implementation Maintenance are more important than the countless complex features that enterprise database engines provide. SQLite is not designed to replace Oracle. It is designed to replace fopen().
9/3/2012
25
COMMANDS IN SQLite?
To Create Database : $ sqlite3 test.db
To Create Table With Structure:
$ sqlite3 test.db create table t1 (t1key INTEGER PRIMARY KEY,data TEXT,num double);
9/3/2012
26
INSERTING DATA IN SQLite?
The insert command is similar to the other SQL command INSERT COMMAND. $ sqlite3 test.db "insert into t1 (data,num) values ('This is sample data',3); $ sqlite3 test.db "insert into t1 (data,num) values ('More sample data',6); $ sqlite3 test.db "insert into t1 (data,num) values ('And a little more',9);"
9/3/2012
27
WHAT ABOUT SELECT STATEMENT?
As expected the select statement is not different from the other SQL SELECT statement. The syntax remains the same. $ sqlite3 test.db "select * from t1"; 1|This is sample data|3| 2|More sample data|6| 3|And a little more|9|
9/3/2012
28
HOW TO EXIT SQLite?
To exit out from the SQLite is very easy as 1,2,3 There are three small commands you need to use to exit. SQLite version 3.0.8 Enter ".help" for instructions sqlite> .q sqlite> .quit sqlite> .exit $
9/3/2012
29
FAMOUS CLIENTS OF SQLITE
You would have never thought that these would be!!!!!!!!!!!!!!!!!!!!!!!!
9/3/2012
30
MOBILE DATABASE SYSTEM LIMITATIONS
Limited wireless bandwidth Wireless communication speed Limited energy source (battery power) Less secured Vulnerable to physical activities Hard to make theft proof.
31
9/3/2012
HOW TO SELECT A SUITABLE MOBILE DATABASE
OS Platform a Likely Requirement
PointBase , IBM DB2 Everyplace and Oracle9i Lite also have broad platform support
Session Persistence Increases Usability
Wired systems generally provide continuous connectivity between client devices and the server. The synchronization process between a PDA and a PC over a USB connection, for example, seldom fails. Oracle9i Lite incorporates client-side representation of server data and applications.
9/3/2012
32
Even if your PDA loses connection with the server database, use of the application continues with the most up-to-date information in the database. After the client device regains the connection, Oracle9i Lite automatically updates the central server database. If session persistence features are not available in your database of choice, then ponder including wireless middleware
Security Provisions Protect Data
Security is very important for mobile applications, especially wireless and public solutions. This is paramount when disclosure of information results in potential damage or loss to a company. For mobile applications, be sure to implement complete end-to-end security iAnyWhere, for example, includes 128-bit encryption between the client device and the server. This ensures that any transfer of data is not left open to hackers.
9/3/2012 33
Memory Footprint Matters
Because client devices have limited memory, the mobile database software should fit within a relatively small footprint. Look for databases requiring less than 500KB of memory. The Sybase iAnywhere UltraLite database, for instance, only needs 150KB of space. PointBase does even better with needs for only 45KB.
9/3/2012
34