45
04-May-2011 Bharat Sanchar Nigam Ltd.. IT TOOL USED IN BSNL

Bsnl It Tool 2011

Embed Size (px)

Citation preview

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 1/45

04-May-2011 Bharat Sanchar Nigam Ltd..

IT TOOL USED IN BSNL

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 2/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Speed

 Accuracy Flexibility

Storage Capacity and Volume

Data Processing

Database

Why Computerization ?

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 3/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Reduction in Paper Cost 

Reduced Cost 

Reduces the space requirement 

Reduces manpower requirement 

Increased ability to performcomputations

Management Information

Why Computerization ?

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 4/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Data?Data is raw material for data processing.

data relates to fact, event and transactions.

Information?Inform

ation

is data that has been processedin such a way as to be meaningful to theperson who receives it. it is any thing that iscommunicated.

Data Vs Information

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 5/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Initial Data Storage Methods

Data is represented in one or more flat files

Flat file is nothing but electronicrepresentation of cardboard file.

Every business group has its own set of files

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 6/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Disadvantages of Flat File Systems

No centralized control.

DataRedundancy

Data Inconsistency

Data can not be shared

Security issues Integrity can not be maintained

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 7/45

04-May-2011 Bharat Sanchar Nigam Ltd..

Database Management Systems

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 8/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Database Management Systems

 A system whose overall purpose is to

record and maintain information

 A database is a repository for stored

data and programs to manipulate it.

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 9/45

04-May-2011 Bharat Sanchar Nigam Ltd.

 Advantages of DBMS Centralized control.

No DataRedundancy

Data Consistency

Data can be shared

Security can be enforced Integrity can be maintained

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 10/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Data Models A data model is a collection of concepts

for describing data, relations,constraints etc.

Types of Data Models : Hierarchical,Network and Relational Model

The relational model is the most widelyused model today

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 11/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Hierarchical DBMS Can not handle Many-Many relations

Can not reflect all real life situations

Anomalies in insert, delete andupdate operations.

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 12/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Network DBMS Data is represented by records and

pointers

 Addresses Many-Many relations

Insert,delete,update operations possible

Complex i

ndesig

n

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 13/45

04-May-2011 Bharat Sanchar Nigam Ltd.

What isRDBMS?

RDBMS stands for Relational DatabaseManagement System.

RDBMS is the basis for SQL, and for allmodern database systems like MS SQLServer, IBM DB2, Oracle, MySQL, andMicrosoft Access.

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 14/45

04-May-2011 Bharat Sanchar Nigam Ltd.

What isRDBMS?

 A Relational database management system (RDBMS) is a databasemanagement system (DBMS) that isbased on the relational model asintroduced by E. F. Codd.

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 15/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Relational DBMS

Based on Relational Mathematicsprinciples

Data is represented in terms of rowsand columns of a table

Easy to design

No anomalies for insert/delete/update

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 16/45

04-May-2011 Bharat Sanchar Nigam Ltd.

What is Table? The data in RDBMS is stored in database

objects called tables.

Data is viewed as existing in two dimensionaltables known as relations

The table is a collection of related data

entries and it consists of columns and rows.  A table is the most common and simplest 

form of data storage in a relational database.

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 17/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Example of Customers dataID Name Age Address Salary

1 Ramesh 38 Vizag 5000

2 Srinivas 42 Banagalore 8000

3 Syam 40 Hyderabad 10000

4 Karthik 28 Vizag 4000

5 Kaushik 26 Vizag 4000

6 Sahit 22 Hyderabad 6000

7 Ashrit 26 Chennai 3000

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 18/45

04-May-2011 Bharat Sanchar Nigam Ltd.

What is Field? Every table is broken up into smaller

entities called fields.

The fields in the CUSTOMERS tableconsist of ID, NAME, AGE, ADDRESSand SALARY .

 A field is a column in a table that isdesigned to maintain specificinformation about every record in thetable.

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 19/45

04-May-2011 Bharat Sanchar Nigam Ltd.

What is record, or row?  A record, also called a row of data, is each

individual entry that exists in a table.

 A Record is a horizontal entity in a table. For example there are 7 records in the

above CUSTOMERS table. Following is asingle row of data or record in theCUSTOMERS table:

1 Ramesh 38Vizag 5000

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 20/45

04-May-2011 Bharat Sanchar Nigam Ltd.

What is a Column? A column is a vertical entity in a table

that contains all information associatedwith a specific field in a table.

For example, a column in theCUSTOMERS table is ADDRESS which

represents location description andwould consist of the following:

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 21/45

04-May-2011 Bharat Sanchar Nigam Ltd.

What is a Column? Address

 Vizag

Banagalore

Hyderabad

 Vizag

 Vizag

Hyderabad

Chennai

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 22/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Relational Terminology

Tuple (Row) Attribute (Column)Relation (Table)

Integrity Constraints

Primary KeyForeign Key

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 23/45

04-May-2011 Bharat Sanchar Nigam Ltd..

Structured Query Language

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 24/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Structured Query Language DQL Data Query Language

DML Data Manipulation language

DCL Data Control Language

DDL Data Definition Language

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 25/45

04-May-2011 Bharat Sanchar Nigam Ltd.

DQL Select 

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 26/45

04-May-2011 Bharat Sanchar Nigam Ltd.

DML Insert 

Update

Delete

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 27/45

04-May-2011 Bharat Sanchar Nigam Ltd.

DCL Commit 

Rollback

Save point 

Set transaction

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 28/45

04-May-2011 Bharat Sanchar Nigam Ltd.

DDL Create

 Alter

Drop

Truncate

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 29/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Integrity Constraints Primary key (PK)

Foreign Key (FK)

Unique key (UK)

Not Null

Check

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 30/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Data Types Character

 Varchar2

Number

Date

BLOB BFILE

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 31/45

04-May-2011 Bharat Sanchar Nigam Ltd.

BSNL IT Tool BSNL Working Environment 

IT Tool used in BSNL

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 32/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Outdoor  MDF Indoor Test Desk

CONTEXT DIAGRAM

COM

TRAFRS

System Administration

Commercial Section

Billing & Accounting

Potential Customer 

Working Customer 

Complaint Booking

Reports

Enquiries

Payments & Refunds

DQ and

Other 

Enquiries

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 33/45

04-May-2011 Bharat Sanchar Nigam Ltd.

DOTSOFT

DotSoft is the first integrated telecom software applicationin BSNL comprising of commercial, billing, accounting,fault repair service and directory enquiry services.

It has been conceptualised, designed and developedentirely by the core group of the Software DevelopmentCentre of the O/o CGMT, Andhra PradeshTelecommunications Circle, Hyderabad.

It is based on the latest software technologies running ona WAN and is the first of its kind in BSNL in the field of information technology.

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 34/45

04-May-2011 Bharat Sanchar Nigam Ltd.

¤ First it was tested and implemented in Guntur SSA in 1997.

¤ It has been successfully implemented in 171 SSAs across thecountry. All the SSAs of Andhra Pradesh, Tamilnadu,Karnataka, Assam, Punjab, Chattisgarh and Gujarat Telecomcircles.

¤ Rest of SSAs are from states of Maharastra, MadhyaPradesh, Uttar Pradesh, Rajasthan, J&K and Haryana.

¤ It has been approved by the Telecom Commission for implementation all over India.

¤ Dotsoft ensures better customer satisfaction andtransparency in BSNL service.

DOTSOFT

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 35/45

04-May-2011 Bharat Sanchar Nigam Ltd.

DoTSoFT is an enterprise wide telecom database system thatrevolutionizes the operation and supervision of customer services by enabling all the personnel to work online.

The central server contains the complete database to which allthe nodes anywhere in the district log in. The database isaccessed using application software residing in the nodes whichhave GUI interface.

¤ OS : Linux

¤ Front end : Forms 6i

¤ Back end Database : Oracle 9i

¤ Client Server Model ± 2 layer architecture

DOTSOFT

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 36/45

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 37/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Router 

A Layer 3 (Network Layer of OSI Model) device

Enables transit of packets between two LAN's.

Traffic can be monitored, administered from the

Router.

Swtich

A Layer 2 (Data Link Layer of OSI Model) device. Enables transit of packets within a LAN.

Flow control / Error Detection / Signal amplification

of frames is done in the switch.

DOTSOFT - Network Elements

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 38/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Hub

A Layer 1 (Physical Layer of OSI Model) device

Enables transit of packets within a LAN.

The signal amplification is done.

The data from the data link layer is converted into

electrical signals and sends on physical media.

Modem For conversion of different protocols. For example

Ethernet to Serial Interface (PPP protocol).

DOTSOFT - Network Elements

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 39/45

04-May-2011 Bharat Sanchar Nigam Ltd.

The nodes in the customer service centre service all the

subscriber requests which flow to the commercial and

accounts sections as the case may be.

After validation and approval from the the concerned

sections the work orders flow to the different field units

depending on the activity.

After the completion of the work orders the commercial

and billing data of the subscriber gets updated.

DOTSOFT

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 40/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Bill generation is absolutely easy and totally secure.

Payments are faster and completely hassle free for the

customer and the counter personnel because of the use

of bill scanners.

Revenue accounting and ledger reports are available

immediately at the end of the month.

The system can generate any kind of detailed as well as

statistical reports.

Online enquiry is available for supervision and queries.

CONCISE DESCRIPTION OF DOTSOFT

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 41/45

04-May-2011 Bharat Sanchar Nigam Ltd.

DoTSoFT is one of the first steps towards the bold andultimate goal of E-Governance and paperless offices.

All the work is done online which results in excellent

customer service, non duplication of work, totalsupervision, complete transparency, better planning andwith a facility of instant reports.

Single window concept introduced for the first time.

Concept of request registration number introducedthrough which the status of the request can be trackedand inquired.

DOTSOFT

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 42/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Signature warehousing to be included for onlineverification purpose.

Instant electronic flow of data between the offices and

field units with facility to print wherever required.

Various intimation letters to subscribers automaticallygenerated.

Priority execution of advice notes.

Messaging system between CO and Field units.

Dotsoft mail system between all users.

DOTSOFT

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 43/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Complete history of subscriber¶s activities availableonline.

Details of subscriber records & requests, bills, demand

notes, wait list, payments and work orders availableonline.

Variable billing cycle, ISDN billing, Groupbilling(fortnightly, monthly ,bi-monthly).

Centrex,Corporate billing, PT billing and WLL billing.

NPC advice notes once completed online are billed in thenext schedule.

DOTSOFT

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 44/45

04-May-2011 Bharat Sanchar Nigam Ltd.

Directory Enquiry shows the status at the moment of 

enquiry. It can query on any of the subscriber¶s details in

part or in full.

Complete managerial supervision is possible about theactivities happening anywhere in the district.

Statistical data is generated to find out activity, usage

and payment patterns to facilitate better customer 

service.

DOTSOFT

8/6/2019 Bsnl It Tool 2011

http://slidepdf.com/reader/full/bsnl-it-tool-2011 45/45

04-May-2011 Bharat Sanchar Nigam Ltd..