Transport Department
Transport Department
The Transport Department functions under the provisions of section 213 of the Motor Vehicle Act,
1988. The Transport Department is primarily established for enforcement of the provisions of the
Motor Vehicle Act, 1988, Telangana Motor Vehicles Taxation Act, 1963 and the rules framed there
under. Of various types of transport facilities available road transport plays a unique role as the best
mode of transport for relatively short distances connecting the rural areas with towns and cities for
which other modes of transport are not readily suited. In this regard, the Transport Department of
Telangana assists other organizations in the development of transport facilities and endeavors to
provide an efficient, adequate and economic transport service for the movement of passengers and
goods by road.
In discharging statutory functions, the department has shaped up as one of the major revenue earning
departments to the Government in the shape of taxes on motor vehicles.
Hierarchy
The Transport Department is headed by the Transport Commissioner. He is assisted by 1 Additional
Transport Commissioner, 4 Joint Transport Commissioners, 3 Regional Transport Officers, 1 Regional
Transport officer as State Representative before State Transport Appellate Tribunal and 1 Accounts
Officer in the Head Office. In the field, he is assisted by 1 Joint Transport Commissioner in charge of
Hyderabad, 14 Deputy Transport Commissioners, 45 Regional Transport Officers including 1 Secretary,
STAT in the cadre of R.T.O, 2 Assistant Accounts Officers, 206 Motor Vehicles Inspectors and 218 -
Assistant Motor Vehicle Inspectors besides other ministerial staff.
The Transport Department is regulated by the Government of Andhra Pradesh in terms of policy
formulation and its implementation. The Department is administered by the Transport Commissioner
who is the Head of the Transport Department.
Transport Department
Our Commitment
The Transport Department stands fully committed to fully computerized citizen friendly services. This
has been made possible by an extensive network of computers linking all the RTO and Unit Offices
spread across the state. The department stands fully committed to the Citizens Charter and strives to
achieve the deadlines for services set by the charter. We continue to ensure that the department is
constantly refined in the administration of its processes and procedures to reduce time delays and
achieve the stated mission of being a responsive and transparent department.
Some of the initiatives that have effected sweeping changes are the any service any counter,
adherence of the operations to the citizens charter schedules; simplification of the procedures;
enabling online slot booking for scheduling a driving test; a user friendly website with all the
information needed for any novice including all the web-fill able forms; computerised test for learner's
licence and online booking for services in advance are some of the initiatives that have made the
department not only responsive but also provide services in a transparent manner. The department
maintains a central database and provides services to the police and other departments upon request.
Each office is equipped with an efficient help desk to answer all the queries of customers and the
relevant forms. Most offices are equipped with the token system where disposals at the counters are
done in an efficient manner. To make services reliable and less time consuming, the department has
introduced the system of despatch of all statutory documents by speed post. Waiting the whole day at
the transport office is now a thing of the past!
Transport Department
Reside
Designation Name Office Fax Cell E-Mail
nce
J.T.C. (IT,
S.A.V. Prasada 233212 233212 9948838
Enforcement & - [email protected]
Rao 63 63 599
Road Safety)
Dy. Transport
9848045
Commissioner L.S.M.Ramasree - - - -
338
(IT)
Smt. 247328
Secretary, STAT - - - -
G.Pushpavalli 76
Others Checkpost
There are 8 check posts at the state boarder in addition to 5 integrated check posts. Besides, there are
4 internal check posts to regulate the plying of vehicles. They are located at the following places.
2. Kothuru Krishna
3. Renigunta Chittoor
4. Palamaner Chittoor
5. Penukonda Anathapur
7. Zaheerabad Medak
8. Madnoor Nizamabad
9. Kamareddy Nizamabad
10
Bhainsa Adilabad
.
11
Wankidi Adilabad
.
12
Palvancha Khammam
.
RTO Offices
The department has 45 Regional Transport Offices located district / subdivision headquarters and offer
fully computerized services of licences, registrations and permits.
Station STD
Name of the Name of Residen
(Designation Cod Office Fax Cell E-Mail ID
District officer ce
) e
rto_vijayanagaram
Vizianagara Vizianagara D.S.Abdul 0892 98481711
273366 - 273366 @
m m (RTO) Rawoof 2 04
tgtransport.gov.in
Visakhapatn
Visakhapatn T.Muralidha 255977 255677 98485283
am 0891 - -
am r 7 7 99
(RTO-II)
Mohd
Khammam(R 0874 98496085 rto_khammam@
Khammam Abdul 233344 - 233344
TO) 2 69 tgtransport.gov.in
Mohaimin
Nizamabad 0846
Nizamabad - 245593 - 245593 - -
(RTO) 2
rto_mahaboobnag
Mahaboobn Mahaboobn 0854 98485285
L.Kistaiah 275875 - 276895 ar@
agar agar (RTO) 2 14
tgtransport.gov.in
rto_hydwest@
Hyd, tgtransport.gov.in
T.L.Manik 235252 99489898
Hyderabad M'patnam 040 - -
Prabhu 53 74
(W-RTO)
a Dataset its an Ado.net object that can have a datable inside it and an adapter is used to fill
a dataset or datatable
A DataSet is an inline memory storage object. Through this you can develop a database
simillar schema which includes DataTable, DataRow, Relation ships, primary keys, foreign
key etc..
Dataadapter is used to fill data to dataset. Dataadapter plays a middle role between
connection and dataset. Also it uses datacommand.
DataSet
A DataSet is a disconnected sub-copy of the original database, containing multiple tables
and restraints between them. The database is maintained by the DBMS, while the sub-copy
of data is maintained by the DataSet itself. When data in DataSet is changed, it caches the
changes, until it is updated back to the source database.
DataAdapter
A data adapter represents a set of methods used to perform a two-way data updating
mechanism between a disconnected DataTable and the database. It aggregates four
commands: select, update, insert and delete command. One adapter can only generate and
fill one table in a DataSet. Therefore to deal with multiple tables in a DataSet you need
multiple DataAdapters.
Data reader;:-
In ADO.NET, a DataReader is a broad category of objects used to sequentially read data from a
data source. DataReaders provide a very efficient way to access data, and can be thought of as
a Firehose cursor from ASP Classic, except that no server-side cursor is used. A DataReader parses
a Tabular Data Stream from Microsoft SQL Server, and other methods of retrieving data from other
sources.
A DataReader is usually accompanied by a Command object that contains the query, optionally any
parameters, and the connection object to run the query on.
DataReader Types[edit]
There is no DataReader class in ADO.NET, but there are a number of classes that implement
the IDataReader interface:
System.Data.SqlClient.SqlDataReader
System.Data.OleDb.OleDbDataReader
Oracle.OracleClient.OracleDataReader
DataReaders have a small footprint and good performance because each is tailor-made to the task
at hand, however this makes it more difficult to write an application that can be moved from one
backend data source to another. Some provider-specific DataReaders expose types used by the
underlying database - for example, int values can be null in Microsoft SQL Server, but not in
the .NET Framework prior to version 2.0.