NATIONAL INFORMATION SYSTEM ON ANIMAL EXPERIMENTS

Size: px
Start display at page:

Download "NATIONAL INFORMATION SYSTEM ON ANIMAL EXPERIMENTS"

Transcription

1 NATIONAL INFORMATION SYSTEM ON ANIMAL EXPERIMENTS P.K. BATRA AND D.K. SEHGAL Indian Agricultural Statistics Research Institute Library Avenue, New Delhi Introduction The information needs of agricultural research data are growing day-by-day and there is a need to develop information systems for expanding the knowledge base, distributing it as widely as possible, and preserving it for meeting the research demands. More importantly there is an urgent need of making these information systems available online for use of the NARS. In the last few decades, the country has made impressive progress in the field of animal production, which is one of the most vital sectors of Indian economy. This has been possible due to researches undertaken by different research institutes under ICAR set up and agricultural/veterinary universities and other organizations. The development of information system from the results obtained from the experiments undertaken in the field of animal sciences will be of immense value to the livestock development in the country. The development of database and information system requires input from various sources, their processing and dissemination to planners, policy makers, researchers and development agencies, etc. These information systems are repository of technologies developed for various species to increase animal production and also serve as a reference material for future research programs. An online information system has been created giving the details of experiments conducted in the country and salient results obtained there from. 2. Source and Data Availability The experiments in various disciplines of animal sciences are being conducted at various ICAR institutes dealing with Animal Sciences, Agricultural/Veterinary Universities, etc. The key source of information in this system has been the annual reports published by these organizations. From these reports it is seen that research in NARS is conducted through formation of projects and sub-projects with experiments planned under these projects/sub-projects. At present, the information on 722 projects classified in 23 disciplines, undertaken at twenty one research organizations during the period have been obtained. (Annexure-1) 3. Software Development Keeping in view the information available, the database structure has been developed using RDBMS principles. The information of the experiment has been divided into following data items: i) Title ii) Names of investigators iii) Subject iv) Source

2 v) Research station vi) Species vii) Breed viii) Period of experiment ix) Year of conduct x) Funding agency xi) Salient results achieved The feature, architecture, designing and development of the database and user interface developed for the system is now discussed. 3.1 Feature of the System The information system has been designed keeping in view that the system is user friendly and can be used by individuals having no knowledge of computer based information system and/or computer software background. Therefore, it is a computer-based record keeping system related to animal research experiments conducted in the country where overall purpose is to record, maintain and retrieve the information. 3.2 Data Sharing The system has been developed to form an organized and structured database on the basis of the data obtained. The database has been designed to provide support for a wide variety of applications on the available data so that many types of users can share the data. Thorough investigations have been made about the type of questions that might be raised in the context of development, utilization and general characteristic of NISAE and to build up the structure of database and its potential for application. 3.3 Reduction of Redundancy and Inconsistency For ease in data entry, separate database tables have been created. It has been ensured that except for primary keys and foreign key no field appears in more than one database table. This has taken care of the aspect of redundancy. These database tables have been created keeping in mind the types of reports to be generated and queries to be answered on-line. Efforts have been made in particular to minimize the number of tables, which are required to generate individual reports and answer specific queries. This structure also helps in removing inconsistencies of information stored in the data bank. 3.4 Adoptability to Future Requirements The NISAE has been designed as a feasible system to accommodate changes in respect of research in animal sciences in near future e.g. establishment of new Institutes, Agricultural Universities, formation of new discipline and others, would be easily accommodated in the software system. 4. Architecture of NISAE NISAE has been developed as a web-based application using JAVA technology. Therefore, it is platform independent and can be connected from any computer connected to the Internet. The user only has to confirm that computer has a Web-browser. The architecture using three-layered structure is shown in Fig

3 Fig. 4.1: Architecture of NISAE The purpose of making the system with Three-layer architecture is to provide independence to all layers so that it functions properly. All the layers in this architecture are made by using appropriate technology and provide enough space to upgrade a particular layer without disturbing underlying or overlying a particular layer. NISAE is composed of following three layers. 1. Client Side Interface layer 2. Server Side Application layer 3. Database layer 4.1 Client Side Interface Layer (CSIL) The client side interface layer has been developed by using HTML, JavaScript using browser as front-end. This interface enables incorporating the validation checks in data entry forms. NISAE runs at any node of the network through browser. To run the NISAE with full functionality one must have internet explorer 5.0 or Netscape Navigator preinstalled. 4.2 Server Side Application Layer (SSAL) Server side application layer is implemented using Java Server Pages (JSP). These JSP generate HTML pages according to the users' action and request as presented in Fig

4 Java Server Fig. 4.2: Building Web Pages with JSP Fig. 4.2 shows one of the most common ways of using JSP. A user (1) requests some information by filling out a form containing link to JSP and clicks the submit button (2). The server (3) locates the requested JSP (4). The active JSP is then translated into an Active X class, which is then complied in to a Servlet File. Servlet (5) then gathers the information needed to satisfy the user s request and constructs a Web Page (6) containing the information. The web page is then displayed in User s Browser (7). 4.3 Data Base Layer (DBL) Database layer is implemented using Microsoft Access It is used for designing the Tables, Relationships, Referential Integrity rules and Queries. The relational approach is used to design the database. The fundamentals of normalization theory are used to normalize the different tables of database. All tables have proper interaction among themselves via primary key, foreign key relationship. 4.4 Software Interfaces As presented in Fig. 1 for the architect of NISAE, two interfaces are required: one between CSIL and SSAL and other between SSAL and DBL. The CSIL-SSAL interface is implemented using JSP. The SSAL-DBL interface is implemented using Java Data Base Connectivity (JDBC). JDBC is a set of specification that defines how a program written in Java can communicate and interact with the Database. It defines how the communication is to carry out and how the application and database interact with each other. More specifically the JDBC defines how an application opens a connection, communicates with database, executes SQL statements and retrieves Queries, Results. JDBC provides a vehicle for the exchange of SQL between Java application and Database. 4

5 5. Designing and Development of NISAE NISAE is based on three-tier (layers) architecture as described earlier. The upper layer depends upon database design. Database used for the development of NISAE has been structured using Microsoft Access The tables with their respective content fields and other specifications are designed using the relational database approach and proper normalization. 5.1 Designing of Tables Microsoft Access 2000 has been used to provide database tables in NISAE. The description of database tables used is given below: Name of Table Description Breed List different species and their breeds Research Station List names of different research organizations in India conducting research in Animal Sciences Project Type List different types of projects Species List different species of animals Sponsoring Agencies List names of sponsoring agencies State List names of states of Indian Union Subject List different disciplines of Animal Sciences under which research is carried out User List names of users who are accessing the system Use Type List different types of users like Administrator, End user and Special users. Salient results project List projects undertaken at various research stations Salient result sub-project List sub-projects under various projects Salient results experiment. List experiments with in the projects and subprojects Salient results experiment-ext. List salient results of an experiment year wise All tables in this database contain their respective attributes, primary keys and in some cases foreign keys for setting the relationship among the tables. 5.2 ER-Diagram The E-R diagram shows all the relationships between tables in the database. The master table Salient Results Experiment_ext is related to other tables through different types of relationships and referential integrity. Salient Results Experiment_ext contains all the relevant data for the information system. 5

6 6. Designing and Development of User interface The user interface has been developed using HTML, Java and Java Script embedded in Java server pages according to the design discussed earlier. Home page is the first page to be displayed which contains a link to the log-in page. The home page allows the login of existing users as well as provides facility for opening accounts for new users. For new user the authentication level (3) is automatically generated. The log-in page verifies user's validity i.e. his log-in name, password and authentication level. In case of Invalid User, an error page is generated giving the details of invalidity. When a user successfully logs on to NISAE as an end user the relevant pages are loaded on browser. The broad classifications of authentication levels are 1, 2 and 3 viz. super user/ administrator, intermediate user and ordinary users. When the user authentication level is 1 or 2, a menu bar with administrator privilege like adding or editing the data is displayed, where as in authentication level (3) only retrieval / search facility is made available. The user can generate the query pertaining to a specific research station, subject, species, breed and investigator name to obtain the desired information. With an authentication level (1) administrator can upgrade or downgrade the levels of other users. Home page also Links to other Sites, like IASRI, ICAR. It also gives information about NISAE and its Objectives, Contact us, Names of participating Institutes. 6

7 Annexure-1 (i) List of Institutes: S.No. Name of the Institute 1. Central Avian Research Institute (CARI), Izatnagar (U.P.) 2. Central Institute for Research on Buffaloes, Hisar (Haryana) 3. Central Institute for Research on Goats, Makhdoom, Mathura (U.P.) 4. Central Sheep and Wool Research Institute (CSWRI), Avikanagar (Rajasthan.) 5. Indian Veterinary Research Institute (IVRI), Izatnagar (U.P.) 6. National Bureau of Animal Genetic Resources (NBAGR), Karnal 7. National Dairy Research Institute, Karnal (Haryana) 8. National Institute of Animal Nutrition and Physiology, Bangalore 9. National Research Centre for Mithun, Jharnapani, Nagaland 10. National Research Centre on Camel, Bikaner (Rajasthan.) 11. National Research Centre on Equines, Hisar (Haryana) 12. National Research Centre on Yak,West Kameng,(Arunachal Pradesh) 13. Project Directorate on Cattle, Meerut (U.P.) 14. Project Directorate on Poultry, Hyderabad (A.P.) 15. Acharya N.G.Ranga Agri. Univ., Rajendernagar, Hyderabad (A.P.) 16. Birsa Agricultural University, Ranchi (Jharkhand) 17. Central Agricultural University, Selesih, Aizawl 18. Govind Ballabh Pant Univ. of Agri. & Technology, Pantnagar 19. Gujarat Agricultural University, Ahmedabad 20. Maharana Pratap Univ. of Agri. & Technology, Udaipur (Rajasthan) 21. Mahatma Phule Krishi Vidyapeeth, Rahuri (Maharashtra) 7

8 (ii) List of Subjects: S.No. Subject 1. Animal Genetics and Breeding 2. Animal Nutrition 3. Animal Reproduction and Physiology 4. Veterinary Bacteriology and Mycology 5. Biological products 6. Veterinary Epidemiology 7. Veterinary Pharmacology and Toxicology 8. Veterinary Surgery 9. Veterinary Public Health 10. Veterinary Medicine 11. Veterinary Microbiology 12. Livestock Products Technology 13. Livestock Production and Management 14. Dairy Chemistry 15. Dairy Engineering 16. Dairy Microbiology 17. Dairy Technology 18. Veterinary Immunology 19. Veterinary Pathology 20. Veterinary Parasitology 21. Veterinary Virology 22. Avian Disease 23. Veterinary Extension 8

AGRICULTURAL FIELD EXPERIMENTS INFORMATION SYSTEM

AGRICULTURAL FIELD EXPERIMENTS INFORMATION SYSTEM AGRICULTURAL FIELD EXPERIMENTS INFORMATION SYSTEM O.P.KHANDURI AND P.K.BATRA Indian Agricultural Statistics Research Institute Library Avenue, New Delhi-110 012 opk2@iasri.res.in 1. Introduction Agricultural

More information

Factsheet of Public Services Infrastructure (PSi) Updated on: 1st Sep 03

Factsheet of Public Services Infrastructure (PSi) Updated on: 1st Sep 03 Factsheet of Public Services Infrastructure (PSi) Updated on: 1st Sep 03 1 Objective of Paper 1.1 This document provides an overview of the Public Services Infrastructure (PSi). 2 Overview of PSi 2.1 PSi

More information

The various functions of an energy control center can be enumerated as under: 1. Load forecasting 6. Automatic generation control

The various functions of an energy control center can be enumerated as under: 1. Load forecasting 6. Automatic generation control ENERGY CONTROL CENTERS To generated, Transmission and Distribution system, Number of customers and Total investment. Installed capacity in India exceeds 206 GW with annual energy generated energy exceeding

More information

ONLINE BILLBOARD VIKRAM KUMAR KONDAPANENI B.TECH, ACHARYA NAGARJUNA UNIVERSITY, 2007 A REPORT

ONLINE BILLBOARD VIKRAM KUMAR KONDAPANENI B.TECH, ACHARYA NAGARJUNA UNIVERSITY, 2007 A REPORT ONLINE BILLBOARD By VIKRAM KUMAR KONDAPANENI B.TECH, ACHARYA NAGARJUNA UNIVERSITY, 2007 A REPORT Submitted in partial fulfillment of the requirements for the degree MASTER OF SCIENCE Department of Computing

More information

TERMS OF USE FOR THE NATIONAL LIVESTOCK IDENTIFICATION SYSTEM DATABASE

TERMS OF USE FOR THE NATIONAL LIVESTOCK IDENTIFICATION SYSTEM DATABASE TERMS OF USE FOR THE NATIONAL LIVESTOCK IDENTIFICATION SYSTEM DATABASE NATIONAL LIVESTOCK IDENTIFICATION SYSTEM LIMITED ABN 34 134 745 038 Edition number 1.19 Current as at 9 June 2016 TABLE OF CONTENTS

More information

Homepages of Indian Central Universities Websites: A Study

Homepages of Indian Central Universities Websites: A Study Homepages of Indian Central Universities Websites: A Study B. Prakash and D.B. Patil Department of Library and Information Science, Gulbarga University, Gulbarga, Karnataka, India E-mail: vagmare@gmail.com,

More information

Registering a New User by a person with Administrator, user Role (In Bank)

Registering a New User by a person with Administrator, user Role (In Bank) National Informatics Centre User Manual Page 1 of 26 Registering a New User by a person with Administrator, user Role (In Bank) National Informatics Centre User Manual Page 2 of 26 SL CONTENT PAGE NO.

More information

MEDILAB ADMINISTRATION: AN IMPLEMENTATION OF SECURE SYSTEM

MEDILAB ADMINISTRATION: AN IMPLEMENTATION OF SECURE SYSTEM MEDILAB ADMINISTRATION: AN IMPLEMENTATION OF SECURE SYSTEM Shamsher Singh Research Scholar (Department of Computer Science & Engineering), Lovely Professional University, Punjab, (India) ABSTRACT The concept

More information

Environmental Information System (ENVIS)

Environmental Information System (ENVIS) Annual Report 2006-2007 Environmental Information System (ENVIS) Introduction Environmental management plays an important role in making a balance between the demands and resources available, in order

More information

Standards and Procedures for Certification and Recertification of Aquatic Animal Health Inspectors (version date November 2009)

Standards and Procedures for Certification and Recertification of Aquatic Animal Health Inspectors (version date November 2009) Standards and Procedures for Certification and Recertification of Aquatic Animal Health Inspectors (version date November 2009) I. INTRODUCTION The Fish Health Section has recognized the need for a peer

More information

Cane Adviser - A Digital Compendium on Sugarcane

Cane Adviser - A Digital Compendium on Sugarcane P B@»õŒPº Cane Adviser BpSS"p _" p`@ pz Cane Adviser - A Digital Compendium on Sugarcane Developing a Mobile App for Sugarcane: An Initiative Towards Digital India ICAR-Sugarcane Breeding Institute Coimbatore

More information

A data repository website on marine ornamental fin fishes and shell fishes from Indian waters

A data repository website on marine ornamental fin fishes and shell fishes from Indian waters Indian Journal of Geo-Marine Sciences Vol. 40(4), August 2011, pp. 502-508 A data repository website on marine ornamental fin fishes and shell fishes from Indian waters A K Pathak*, S P Singh, U K Sarkar,

More information

Themis An Automated Online Programming Contest System

Themis An Automated Online Programming Contest System Themis An Automated Online Programming Contest System Software Requirement Specification SRS version 1.0.1 Aravindan V (CS03B002) Ravi Shankar K (CS03B018) Sriram Kalyanaraman (CS03B024) Karthekeyan C

More information

Wildlife Enforcement Monitoring System. User Manual. Khoi Nguyen Remi Chandran Ng Chong. type date version. User Manual July 07, 2011 Version 1-1

Wildlife Enforcement Monitoring System. User Manual. Khoi Nguyen Remi Chandran Ng Chong. type date version. User Manual July 07, 2011 Version 1-1 Wildlife Enforcement Monitoring System User Manual Khoi Nguyen Remi Chandran Ng Chong type date version User Manual July 07, 2011 Version 1-1 Extensible Message Gateway User Manual ii About this Document

More information

Digital Repositories for Sophisticated Information Management: Emphasizing Development of Digital Repositories in India

Digital Repositories for Sophisticated Information Management: Emphasizing Development of Digital Repositories in India Digital Repositories for Sophisticated Information Management: Emphasizing Development of Digital Repositories in India Prantosh Kr. Pau1 l, R.Senthamarai 2 and K.S. Shivraj 3 1 FBAS, Bengal Engineering

More information

CABI Training Materials VetMed Resource User Guide. KNOWLEDGE FOR LIFE

CABI Training Materials VetMed Resource User Guide. KNOWLEDGE FOR LIFE CABI Training Materials VetMed Resource User Guide KNOWLEDGE FOR LIFE www.cabi.org Contents Introduction... 3 Accessing VetMed Resource... 4 By IP Address:... 4 Navigating the interface... 5 Simple site

More information

COMM 391. Objectives. Introduction to Microsoft Access. What is in an Access database file? Introduction to Microsoft Access 2010

COMM 391. Objectives. Introduction to Microsoft Access. What is in an Access database file? Introduction to Microsoft Access 2010 Objectives COMM 391 Introduction to Management Information Systems Introduction to Microsoft Access 2010 Describe the major objects in Access database. Define field, record, table and database. Navigate

More information

1. Introduction. IJCTA Nov-Dec 2015 Available ISSN:

1. Introduction. IJCTA Nov-Dec 2015 Available ISSN: A Web Based Automated Data Ordering System for Multiple Satellite Vendors JayaSudha Tigiripalli, Sonu SinghTomar, B. Radhika, Manju Sarma, B. Gopalakrishna National remote sensing centre Indian space research

More information

BUSINESS & MARKETING EDUCATION CAREER PATHWAYS

BUSINESS & MARKETING EDUCATION CAREER PATHWAYS CTE CAREER PATHWAYS (Beginning 2019-20) LARRY A. RYLE HIGH SCHOOL Questions about Business, Information Technology, or Marketing? Email Brenda Klaas at brenda.klaas@boone.kyschools.us Questions about Agriculture,

More information

Results-Web Portal Manual DSHS Laboratory Services Section

Results-Web Portal Manual DSHS Laboratory Services Section . Results-Web Portal Manual DSHS Laboratory Services Section July 2014 July 2014 Results-Web Portal Manual Page 1 of 33 TABLE OF CONTENTS I. Introduction Page 3 II. Necessary Equipment/Supplies Page 4

More information

ISSN: K.Sudhakar 1, V.Priyanka 2, R.Pranathi 3, M.Manikanta 4, K.Venkat 5 1 Associate Professor, 2,3,4,5 Project Team

ISSN: K.Sudhakar 1, V.Priyanka 2, R.Pranathi 3, M.Manikanta 4, K.Venkat 5 1 Associate Professor, 2,3,4,5 Project Team International Journal of Computer Science & Mechatronics A peer reviewed international journal Article Available at www.ijcsm.in sjif-4.454 smsamspublications.com LP/ALP ASSESSMENT SYSTEM IN ETTC (South

More information

2011 INTERNATIONAL COMPARISON PROGRAM

2011 INTERNATIONAL COMPARISON PROGRAM 2011 INTERNATIONAL COMPARISON PROGRAM 2011 ICP DATA ACCESS AND ARCHIVING POLICY GUIDING PRINCIPLES AND PROCEDURES FOR DATA ACCESS ICP Global Office November 2011 Contents I. PURPOSE... 3 II. CONTEXT...

More information

Data warehouse and its Applications in Agriculture Dr. Anil Rai

Data warehouse and its Applications in Agriculture Dr. Anil Rai Data warehouse and its Applications in Agriculture Dr. Anil Rai "A Data warehouse is a repository of integrated information, available for queries and analysis. Data and information are extracted from

More information

PROGRAM OF ORGAMIC FARMING Faculty of Agriculture Ain Shams University

PROGRAM OF ORGAMIC FARMING Faculty of Agriculture Ain Shams University PROGRAM OF ORGAMIC FARMING Faculty of Agriculture Ain Shams University Organic farming program Introduction to the Program The ever increasing demand for organically produced foods requires new and different

More information

User s Guide. Census GIS India. Developed For: Planners, Administrators, Policy Makers, Researchers at all Levels. Developed By:

User s Guide. Census GIS India. Developed For: Planners, Administrators, Policy Makers, Researchers at all Levels. Developed By: User s Guide Census GIS India Developed For: Planners, Administrators, Policy Makers, Researchers at all Levels. Developed By: Riddhi Management Services Pvt. Ltd. www.riddhi.org Geographic Information

More information

Printed on : March Component : 1 (Catalyzing Agent for Management of Change in the Indian NARS)

Printed on : March Component : 1 (Catalyzing Agent for Management of Change in the Indian NARS) Printed on : March 2014 Component : 1 (Catalyzing Agent for Management of Change in the Indian NARS) Citation : Final Report of NAIP Sub-project Strengthening Statistical Computing for NARS. Indian Agricultural

More information

24*7 Wagon Management System for Car Showroom

24*7 Wagon Management System for Car Showroom IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 11 April 2016 ISSN (online): 2349-6010 24*7 Wagon Management System for Car Showroom Vijay Masne Assistant Professor

More information

Annual Report

Annual Report Annual Report 2005-2006 Envir nvironmental Information System (ENVIS) Intr ntroduction Objectiv bjectives es All efforts towards protection and improvement of environment aim at sustaining good quality

More information

X-S Framework Leveraging XML on Servlet Technology

X-S Framework Leveraging XML on Servlet Technology X-S Framework Leveraging XML on Servlet Technology Rajesh Kumar R Abstract This paper talks about a XML based web application framework that is based on Java Servlet Technology. This framework leverages

More information

A Network-Based Management Information System for Animal Husbandry in Farms

A Network-Based Management Information System for Animal Husbandry in Farms A Network-Based Information System for Animal Husbandry in Farms Jing Han 1 and Xi Wang 2, 1 College of Information Technology, Heilongjiang August First Land Reclamation University, Daqing, Heilongjiang

More information

MoH&FW, Govt. of India, New Delhi

MoH&FW, Govt. of India, New Delhi National Medical College Network Health Education Content Delivery, Skill Enhancement and Healthcare Outreach Services Project MoH&FW, Govt. of India, New Delhi 1 VISION & Philosophy Health Education Content

More information

Tags Approved for the Ovine Sector

Tags Approved for the Ovine Sector Tags Approved for the Ovine Sector Livestock Identification and Traceability Program VERSION 5a 2014/01/21 The tags approved under the national livestock identification and traceability program are described

More information

CANARA BANK NRI CELL, CIRCLE OFFICE 1ST FLOOR, RED CROSS BHAVAN SACHIVALAYA MARG BHUBANESWAR : ODISHA, INDIA E MAIL ID:

CANARA BANK NRI CELL, CIRCLE OFFICE 1ST FLOOR, RED CROSS BHAVAN SACHIVALAYA MARG BHUBANESWAR : ODISHA, INDIA E MAIL ID: CONTACT DETAILS For any information/clarification/grievance on matters connected with NRIs, please contact our BRANCHES spread across the country: NRIs may also contact the following NRI Cells/Offices.

More information

Databases available to ISU researchers:

Databases available to ISU researchers: Databases available to ISU researchers: Table of Contents Web of Knowledge Overview 3 Web of Science 4 Cited Reference Searching 5 Secondary Cited Author Searching 8 Eliminating Self-Citations 9 Saving

More information

Active Server Pages: Technology for Creating Dynamic Web Pages and Webenabled

Active Server Pages: Technology for Creating Dynamic Web Pages and Webenabled Workshop on Multimedia and Internet Technologies 26 th -28 th February, 2001 DRTC, Bangalore Active Server Pages: Technology for Creating Dynamic Web Pages and Webenabled Databases Documentation Research

More information

State-wise Gross State Domestic Product by Industry of Origin (at Prices) % Share to Total State GSDP at Constant Prices

State-wise Gross State Domestic Product by Industry of Origin (at Prices) % Share to Total State GSDP at Constant Prices Andhra Pradesh Andaman & N. Islands Arunachal Pradesh Assam State-wise Gross State Domestic Product by of Origin (at 2004-05 25.07 24.28 22.27 23.34 22.00 21.09 19.84 18.61 18.99 19.04 20.58 20.04 18.31

More information

GOVERNMENT OF INDIA MINISTRY OF COMMUNICATIONS DEPARTMENT OF TELECOMMUNICATIONS

GOVERNMENT OF INDIA MINISTRY OF COMMUNICATIONS DEPARTMENT OF TELECOMMUNICATIONS GOVERNMENT OF INDIA MINISTRY OF COMMUNICATIONS DEPARTMENT OF TELECOMMUNICATIONS LOK SABHA UNSTARRED QUESTION NO.2496 TO BE ANSWERED ON 26 TH DECEMBER, 2018 2496. SHRI KAUSHALENDRA KUMAR: SHRIMATI NEELAM

More information

1 CUSTOM TAG FUNDAMENTALS PREFACE... xiii. ACKNOWLEDGMENTS... xix. Using Custom Tags The JSP File 5. Defining Custom Tags The TLD 6

1 CUSTOM TAG FUNDAMENTALS PREFACE... xiii. ACKNOWLEDGMENTS... xix. Using Custom Tags The JSP File 5. Defining Custom Tags The TLD 6 PREFACE........................... xiii ACKNOWLEDGMENTS................... xix 1 CUSTOM TAG FUNDAMENTALS.............. 2 Using Custom Tags The JSP File 5 Defining Custom Tags The TLD 6 Implementing Custom

More information

WLBP FARM RECORDS GUIDANCE SHEEP & CATTLE RECORDS

WLBP FARM RECORDS GUIDANCE SHEEP & CATTLE RECORDS Version 17:10:2017 WLBP FARM RECORDS GUIDANCE SHEEP & CATTLE RECORDS For further help and support please contact: - Welsh Lamb & Beef Producers Ltd PO Box 8, Gorseland North Road, Aberystwyth Ceredigion,

More information

Office of Research Integrity / Office of Sponsored Projects IACUC PROTOCOL SUBMISSION GUIDE

Office of Research Integrity / Office of Sponsored Projects IACUC PROTOCOL SUBMISSION GUIDE Office of Research Integrity / Office of Sponsored Projects IACUC PROTOCOL SUBMISSION GUIDE Coeus Lite 4.5.1.Px Document Version 3 Updated May 2016 Table of Contents ABOUT COEUS... 3 o About the Coeus

More information

2011 INTERNATIONAL COMPARISON PROGRAM

2011 INTERNATIONAL COMPARISON PROGRAM 2011 INTERNATIONAL COMPARISON PROGRAM 2011 ICP DATA ACCESS AND ARCHIVING POLICY GUIDING PRINCIPLES AND PROCEDURES FOR DATA ACCESS ICP Global Office June 2011 Contents I. PURPOSE... 3 II. CONTEXT... 3 III.

More information

DESK REFERENCE. Decision Support Only User Gaining DSOnly access and the basics of using Decision Support. Purpose

DESK REFERENCE. Decision Support Only User Gaining DSOnly access and the basics of using Decision Support. Purpose DESK REFERENCE Decision Support Only User Gaining DSOnly access and the basics of using Decision Support. A Decision Purpose Support (DS) provides the ability to grant limited access to faculty and staff

More information

Implementation and testing of electronic submission in XML format of zoonoses, antimicrobial resistance and food-borne outbreak data for Estonia

Implementation and testing of electronic submission in XML format of zoonoses, antimicrobial resistance and food-borne outbreak data for Estonia EXTERNAL SCIENTIFIC REPORT APPROVED: 10 November 2016 doi:10.2903/sp.efsa.2016.en-1114 Implementation and testing of electronic submission in XML format of zoonoses, antimicrobial resistance and food-borne

More information

15-415: Database Applications Project 2. CMUQFlix - CMUQ s Movie Recommendation System

15-415: Database Applications Project 2. CMUQFlix - CMUQ s Movie Recommendation System 15-415: Database Applications Project 2 CMUQFlix - CMUQ s Movie Recommendation System School of Computer Science Carnegie Mellon University, Qatar Spring 2016 Assigned date: February 18, 2016 Due date:

More information

Employer Registration

Employer Registration Employer Registration Help File ESIC ONLINE REGISTRATION OF THE EMPLOYERS OVERVIEW: Registration of employers under ESI Act is fully online, without requirement of submission of any physical application

More information

Intranet Mailing System. Abstract

Intranet Mailing System. Abstract Intranet Mailing System Abstract This system facilitates mailing among users of an Intranet. Now-a-days organizations are growing fast and are increasing in size also. So these organizations are divided

More information

Employer Registration Help File

Employer Registration Help File Employer Registration Help File ONLINE REGISTRATION OF THE EMPLOYERSOVERVIEW: Registration of employers under ESI Act is fully online, without requirement of submission of any physical application documents

More information

Kalaivani Ananthan Version 2.0 October 2008 Funded by the Library of Congress

Kalaivani Ananthan Version 2.0 October 2008 Funded by the Library of Congress RUTGERS UNIVERSITY LIBRARIES OpenMIC User Manual Bibliographic Utility for analog and digital objects Kalaivani Ananthan Version 2.0 October 2008 Funded by the Library of Congress Table of Contents I.

More information

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E

Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide. Release February 2016 E Oracle Financial Services Governance, Risk, and Compliance Workflow Manager User Guide Release 8.0.2.0.0 February 2016 E65393-01 Oracle Financial Services Governance, Risk, and Compliance Workflow Manager

More information

University of Minnesota Twin Cities Degrees Awarded by Major - Five Years

University of Minnesota Twin Cities Degrees Awarded by Major - Five Years Carlson School of Management Accounting 99 - - 72 - - 103 11-82 26-96 20 - Carlson School of Management Actuarial Science 5 - - 5 - - 7 - - 13 - - 11 - - Carlson School of Management Business Administration

More information

Arizona Health Alert Network. Getting Started

Arizona Health Alert Network. Getting Started Arizona Health Alert Network Getting Started 1 2 Arizona Health Alert Network Uses The AzHan will serve as a redundant communication platform for your facilities to receive critical information from the

More information

Advanced Searching of CAB Abstracts on CAB Direct

Advanced Searching of CAB Abstracts on CAB Direct Advanced Searching of CAB Abstracts on CAB Direct In the Simple Searching session, we looked at single and multi-word searching of CAB Direct using the Free-Text index. However, in a typical CAB ABSTRACTS

More information

PHP CURRICULUM 6 WEEKS

PHP CURRICULUM 6 WEEKS PHP CURRICULUM 6 WEEKS Hands-On Training In this course, you develop PHP scripts to perform a variety to takes, culminating in the development of a full database-driven Web page. Exercises include: Accessing

More information

USER MANUAL For SYSTEMATICALLY MAINTAINING RECORDS OF PLAN FUND RELEASE INFORMATION

USER MANUAL For SYSTEMATICALLY MAINTAINING RECORDS OF PLAN FUND RELEASE INFORMATION PLAN FUND RELEASE INFORMATION SYSTEM USER MANUAL For SYSTEMATICALLY MAINTAINING RECORDS OF PLAN FUND RELEASE INFORMATION Designed, Developed by National Informatics Centre West Bengal Unit Department of

More information

(Islamabad, March 2015) MEDIUM TERM VISION FOR ENERGY CONNECTIVITY IN THE SAARC REGION

(Islamabad, March 2015) MEDIUM TERM VISION FOR ENERGY CONNECTIVITY IN THE SAARC REGION The 8 th Japan-SAARC Energy Symposium (Islamabad, 10-11 March 2015) MEDIUM TERM VISION FOR ENERGY CONNECTIVITY IN THE SAARC REGION Ahmar Ismail Director, SAARC Secretariat Kathmandu, Nepal South Asian

More information

In this third unit about jobs in the Information Technology field we will speak about software development

In this third unit about jobs in the Information Technology field we will speak about software development In this third unit about jobs in the Information Technology field we will speak about software development 1 The IT professionals involved in the development of software applications can be generically

More information

Tax Information Exchange System (TINXSYS) (For CTD Officials)

Tax Information Exchange System (TINXSYS) (For CTD Officials) Overview Tax Information Exchange System (TINXSYS) (For CTD Officials) Tax Information Exchange System (TINXSYS) is a centralized exchange of all interstate dealers spread across the various states and

More information

Survey of research data management practices at the University of Pretoria, South Africa: October 2009 March 2010

Survey of research data management practices at the University of Pretoria, South Africa: October 2009 March 2010 Survey of research data management practices at the University of Pretoria, South Africa: October 2009 March 2010 Undertaken by the Department of Library Services in order to improve research practices

More information

User Manual Management System: P G School, IARI. Creation of New User Account

User Manual Management System: P G School, IARI. Creation of New User Account User Manual Management System: P G School, IARI Creation of New User Account Help Desk : Mr. Naresh Katoch Technical Officer, PG School, IARI 9868919889 Mr. Pal Singh Scientist (SS), Division of Comp.

More information

T Technical specification: FASTAXON Group: Muuntaja

T Technical specification: FASTAXON Group: Muuntaja T-76.115 Technical specification: FASTAXON Group: Muuntaja 0 Version History Owner of the document: All members of the group Muuntaja. Version Date Author(s) Description 0.1 15.11.2003 Pekka Korhonen First

More information

DAC EVALUATION INVENTORY AS A POTENTIAL KNOWLEDGE BUILDING TOOL. Submitted by Canada

DAC EVALUATION INVENTORY AS A POTENTIAL KNOWLEDGE BUILDING TOOL. Submitted by Canada DAC EVALUATION INVENTORY AS A POTENTIAL KNOWLEDGE BUILDING TOOL Submitted by Canada 31st Meeting 27-28 January 1999 1 DAC Evaluation Inventory and Knowledge Building: A Discussion Paper Introduction This

More information

Career & Technical Education Coherent Sequences

Career & Technical Education Coherent Sequences Career Technical Education Coherent Sequences 2019-2020 School Year Comprehensive High Schools 12/4/2018 1 Business Industry 12/4/2018 2 Animal Science #8050 Agriculture, Food, Natural Resources #8054

More information

Building a Web-based Health Promotion Database

Building a Web-based Health Promotion Database 6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, 2004. Building a Web-based Health Promotion Database Ádám Rutkovszky University of Debrecen, Faculty of Economics Department

More information

International Books and Monographs Conferences, Symposia, Meetings Journal Articles Patents

International Books and Monographs Conferences, Symposia, Meetings Journal Articles Patents BIOSIS Toxicology Description BIOSIS Toxicology is a subset of BIOSIS Previews, with a focus on toxicology and related topics. Records are drawn from journal articles, conference papers, monographs and

More information

Managing Web Resources for Persistent Access

Managing Web Resources for Persistent Access Página 1 de 6 Guideline Home > About Us > What We Publish > Guidelines > Guideline MANAGING WEB RESOURCES FOR PERSISTENT ACCESS The success of a distributed information system such as the World Wide Web

More information

[3] Anon 2001, Microsoft SQL Server 2005, Microsoft Corporation, Washington, U.S.A.

[3] Anon 2001, Microsoft SQL Server 2005, Microsoft Corporation, Washington, U.S.A. References: [1] Accelerated Edge Incorporated 2012, How to Select Business Intelligence Query Tools, [Online], Available from: http://www.databi.com/downloads/bitools.pdf [Accessed 5 December 2012]. [2]

More information

Daffodil DB. Design Document (Beta) Version 4.0

Daffodil DB. Design Document (Beta) Version 4.0 Daffodil DB Design Document (Beta) Version 4.0 January 2005 Copyright Daffodil Software Limited Sco 42,3 rd Floor Old Judicial Complex, Civil lines Gurgaon - 122001 Haryana, India. www.daffodildb.com All

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS. INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645)

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS. INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645) PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645) Class Hours: 2.0 Credit Hours: 3.0 Laboratory Hours: 2.0 Revised: Fall 2012

More information

Distributor Process Manual.

Distributor Process Manual. Distributor Process. P R O C E S S M A N U A L EPRSS Prepaid Recharge Services India Pvt. Ltd. C-207 KPCT Commercial Complex, Pune 411013 Phone - 020-26860160. Fax - 020-26860578 Email: info@eprs.co.in

More information

Online Expert System on Indian Tobacco Varieties

Online Expert System on Indian Tobacco Varieties International Journal of Current Microbiology and Applied Sciences ISSN: 2319-7706 Volume 7 Number 01 (2018) Journal homepage: http://www.ijcmas.com Original Research Article https://doi.org/10.20546/ijcmas.2018.701.280

More information

Survey of Research Data Management Practices at the University of Pretoria

Survey of Research Data Management Practices at the University of Pretoria Survey of Research Data Management Practices at the University of Pretoria Undertaken by the Department of Library Services in order to improve research practices at the University Unisa Library Open Access

More information

PHP + ANGULAR4 CURRICULUM 6 WEEKS

PHP + ANGULAR4 CURRICULUM 6 WEEKS PHP + ANGULAR4 CURRICULUM 6 WEEKS Hands-On Training In this course, you develop PHP scripts to perform a variety to takes, culminating in the development of a full database-driven Web page. Exercises include:

More information

AIM. 10 September

AIM. 10 September AIM These two courses are aimed at introducing you to the World of Web Programming. These courses does NOT make you Master all the skills of a Web Programmer. You must learn and work MORE in this area

More information

Automated Survey Analysis System

Automated Survey Analysis System Automated Survey Analysis System Prof. Arti Bhore 1, Mr V.V. Mane 2, Mr S.B. Poul 3,Mr V.G. Patil 4,Mr S.S. Patil 5 Asst. Professor,Dept. of Computer Engineering, TCOER, Pune, India 1 Student,Dept. of

More information

AgView Training REGISTRATION STARTER GUIDE FOR PRODUCERS, CLINICS, AND VETERINARIANS

AgView Training REGISTRATION STARTER GUIDE FOR PRODUCERS, CLINICS, AND VETERINARIANS AgView Training REGISTRATION STARTER GUIDE FOR PRODUCERS, CLINICS, AND VETERINARIANS Acknowledgements This training guide was created by the Institute for Infectious Animal Diseases. Version 0.4 2 Table

More information

Needs Assessment for a Web-Based IT Platform to Support the WHO Global Antimicrobial Resistance Surveillance System GLASS

Needs Assessment for a Web-Based IT Platform to Support the WHO Global Antimicrobial Resistance Surveillance System GLASS Needs Assessment for a Web-Based IT Platform to Support the WHO Global Antimicrobial Resistance Surveillance System GLASS Prepared August 7, 2015 1 Table of Contents 1. Background and Scope of Work...

More information

Address and Tel.No. of the Director, Legal Metrology GOI

Address and Tel.No. of the Director, Legal Metrology GOI Address and Tel.No. of the Director, Legal Metrology GOI 1) Mr. B.N. Dixit, Director. Deptt. of Consumer Affairs, Room No.461-A, Krishi Bhawan, New Delhi - 110 001. Tel. No. 23389489 Fax No. 23385322 Controllers

More information

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M COURSE OBJECTIVES Enable participants to develop a complete web application from the scratch that includes

More information

Information Technology Education and Training For the Lifelong Learner. Program Catalog. Effective 9/1/2016

Information Technology Education and Training For the Lifelong Learner. Program Catalog. Effective 9/1/2016 ` Information Technology Education and Training For the Lifelong Learner Program Catalog Effective 9/1/2016 Contact: Premier Knowledge Solutions (314) 644-6400 I Certify the Content and Policy of the Programs

More information

Vision Document. Online E-commerce Music CD Store Version 2.0

Vision Document. Online E-commerce Music CD Store Version 2.0 Vision Document Online E-commerce Music CD Store Version 2.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Reshma Sawant CIS 895 MSE Project Kansas State

More information

Hi Fi Infirmary Portal Java Project Report

Hi Fi Infirmary Portal Java Project Report Hi Fi Infirmary Portal Java Project Report G.Vidhya Ratna Sagar Student(M.Tech), CSE, Gokul Institue of Technology and Science, Visakhapatnam, India. ABSTRACT: In this project an efficiency of any system

More information

Ministry of Environment, Forest and Climate Change

Ministry of Environment, Forest and Climate Change 2016 Ministry of Environment, Forest and Climate Change ONLINE SUBMISSION AND MONITORING OF ENVIRONMENTAL CLEARANCES (OSMEC) Category-'B2' Projects: Mining of Minor Minerals USER MANUAL FOR PROJECT PROPONENT(Version

More information

AGRICULTURE BASED ANDROID APPLICATION

AGRICULTURE BASED ANDROID APPLICATION AGRICULTURE BASED ANDROID APPLICATION Prof.Aradhana D 1, Shiva Prasad K S 2, Shrivaishnavi J K 3, P. Sowmya 4, Tina Agarwal 5 1 Department of Computer Science & Engineering Ballari Institute of Technology

More information

Also please refer to Federal Law # 99-FZ dated July 15, 2000 "On Quarantine of Plants"

Also please refer to Federal Law # 99-FZ dated July 15, 2000 On Quarantine of Plants Resolution # 268 of the Government of the Russian Federation Dated April 23, 1992 "On the State Service on Quarantine of Plants in the Russian Federation" (incorporates changes dated October 1, 1998) Also

More information

USER MANUAL. Getting Started with LIVESTOCK CENSUS MINISTRY OF AGRICULTURE & FARMERS WELFARE. DEPARTMENT Of ANIMAL HUSBANDRY, DAIRYING & FISHERIES

USER MANUAL. Getting Started with LIVESTOCK CENSUS MINISTRY OF AGRICULTURE & FARMERS WELFARE. DEPARTMENT Of ANIMAL HUSBANDRY, DAIRYING & FISHERIES USER MANUAL Getting Started with LIVESTOCK CENSUS LIVESTOCK CENSUS MINISTRY OF AGRICULTURE & FARMERS WELFARE DEPARTMENT Of ANIMAL HUSBANDRY, DAIRYING & FISHERIES GOVERNMENT OF INDIA Contents 1. INTRODUCTION...

More information

GMO Register User Guide

GMO Register User Guide GMO Register User Guide A. Rana and F. Foscarini Institute for Health and Consumer Protection 2007 EUR 22697 EN The mission of the Institute for Health and Consumer Protection is to provide scientific

More information

GEO-SPATIAL METADATA SERVICES ISRO S INITIATIVE

GEO-SPATIAL METADATA SERVICES ISRO S INITIATIVE GEO-SPATIAL METADATA SERVICES ISRO S INITIATIVE Pushpalata B Shah, Navita J Thakkar Space Applications Centre (ISRO) Ahmedabad 380 015 - pushpa@sac.isro.gov.in Commission IV, Working Group IV/5 KEYWORDS:

More information

EDUCATION. Assuring 100% Quality Education. Availability of Updated Technology in across Country. Reasonable program fee for all packages

EDUCATION. Assuring 100% Quality Education. Availability of Updated Technology in across Country. Reasonable program fee for all packages EDUCATION Global solution for compete software & Hardware professional training program Assuring 100% Quality Education Availability of Updated Technology in across Country Reasonable program fee for all

More information

of Animal Science, and AGAS 2084: Feeds and Feeding, or consent of instructor;

of Animal Science, and AGAS 2084: Feeds and Feeding, or consent of instructor; 2016 17 Catalog Cosmetic Changes Round 2 College of Arts and Humanities Department of History and Political Sciences 1. Modify the minor in Philosophy as follows: take PHIL 3103 Logic and 12 hours from

More information

User Manual. Reserve Bank of India Mumbai

User Manual.   Reserve Bank of India Mumbai User Manual On https://dbie.rbi.org.in/dcp/ Reserve Bank of India Mumbai 1 P age Contents Introduction... 3 Portal Access... 4 Login Process:... 4 Required Credentials... 5 Super User creation for a bank...

More information

AASHTO ELECTRONIC BALLOTING SYSTEM QUICK REFERENCE GUIDE

AASHTO ELECTRONIC BALLOTING SYSTEM QUICK REFERENCE GUIDE AASHTO ELECTRONIC BALLOTING SYSTEM QUICK REFERENCE GUIDE The AASHTO Electronic Balloting System is an invitation-based system to conduct electronic ballots for AASHTO committees, subcommittees, technical

More information

How to Guide. Create a Data Set. Version: Release 3.0

How to Guide. Create a Data Set. Version: Release 3.0 How to Guide Create a Data Set Version: Release 3.0 Date: 31 st August 2017 Contents 1. Document Purpose... 3 2. Pre-requisites... 3 3. Step-by-Step Process... 3 3.1. Accessing the BDB Platform... 3 3.2.

More information

How to use our Website to Submit Documents

How to use our Website to Submit Documents How to use our Website to Submit Documents Training Manual for SMSF Trustees www.smsfsuperauditors.com.au SMSF Super Auditors - Woolloongabba Ph: 07 38997 9669 Contents Accessing the System... 3 Change

More information

An Application for Monitoring Solr

An Application for Monitoring Solr An Application for Monitoring Solr Yamin Alam Gauhati University Institute of Science and Technology, Guwahati Assam, India Nabamita Deb Gauhati University Institute of Science and Technology, Guwahati

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) Farmworkers Safety App Team 09 TEAM MEMBER NAME Shobhit Agarwal Akshay Aggarwal Viraj Sahai Vahagen Sinanian Juan Andrade Basir Navab Marko Djuliarso

More information

National Policy and Guiding Principles

National Policy and Guiding Principles National Policy and Guiding Principles National Policy, Principles, and Organization This section describes the national policy that shapes the National Strategy to Secure Cyberspace and the basic framework

More information

WEB ACCESSIBILITY. I. Policy Section Information Technology. Policy Subsection Web Accessibility Policy.

WEB ACCESSIBILITY. I. Policy Section Information Technology. Policy Subsection Web Accessibility Policy. WEB ACCESSIBILITY I. Policy Section 15.0 Information Technology II. Policy Subsection 15.2 Web Accessibility Policy III. Policy Statement Grand Rapids Community College is actively committed to providing

More information

SOFTRONIICS Call:

SOFTRONIICS Call: Microsoft ASP.NET Programming Certification - Syllabus Section I - The Interface of Microsoft ASP.NET What Is ASP.NET, and Why Is It So Great? Understanding Web Servers and Browsers Understanding Static

More information

RECOVERY PROGRAM Recovery Program Project Number: 170 FY SCOPE OF WORK for:

RECOVERY PROGRAM Recovery Program Project Number: 170 FY SCOPE OF WORK for: RECOVERY PROGRAM Recovery Program Project Number: 170 FY 2018-2019 SCOPE OF WORK for: Development and Maintenance of a Centralized PIT tag Database for the San Juan and Upper Basin Recovery Programs Reclamation

More information

"Charting the Course... MOC C: Administering an SQL Database Infrastructure. Course Summary

Charting the Course... MOC C: Administering an SQL Database Infrastructure. Course Summary Description Course Summary This five-day instructor-led course provides students who administer and maintain SQL databases with the knowledge and skills to administer a SQL server database infrastructure.

More information