Chapter 6: ISAR Systems: Functions and Design

Size: px
Start display at page:

Download "Chapter 6: ISAR Systems: Functions and Design"

Transcription

1 Chapter 6: ISAR Systems: Functions and Design Information Search And Retrieval is a system which allow end users to communicate with the system. Every one will use the ISAR system in a different way. Each user will have different searching skills and knowledge of using any ISAR system. 1. User Interface System : An user interface is something that connects between two entities. Every computer system that interacts with users has an user interface. This is the combination of hardware and software that enables the users to use the system. It is the user interface that makes the system most used. The user interface forms an important component of an information retrieval system since it connects the users to the organized information resources. In ISAR systems retrieval is very much important at the same time how user communicates with the system as well is important. Hence user interface plays an important role in any ISAR system. User interface performs two major functions: they allow users to search or browse an information collection and they display the results of a search. They also allow users to perform further tasks, like sorting, saving and/or printing the search results, modifying the search query, and so on. The user interface is therefore the most important component of an information retrieval system that a user can see and interact with. The success of an information retrieval system depends significantly on the design usefulness of the user interface. User interface is the means by which information is transferred between the user and the computer and vice-versa. Well designed user interfaces allow users to find the information that the information system provides access to easily and to exploit it once found. Some user interfaces are very interactive, some expect users to type certain commands, some interfaces use extensive graphic images so that it is easy for end user to navigate from one option to other. Having a user interface for running any queries provide effective retrieval. Use of an information system typically begins with recognizing on sensing the existence of an ASK, anomalous state of, or lack of knowledge. It can take many forms, from an explicit recognition that a specific fact is needed to a general desire to find out what is new or interesting. While designing any user interface the following guidelines are proposed for design of any user interface: Strive for consistency in terminology, layout, instructions, fonts and colour Provide shortcuts for skilled users. Provide appropriate and informative feedback about the sources and what is being searched for. Design for closure so that users know when they have completed searching the entire collection or have viewed every item in a browser list. Permit reversal of actions so that users can undo or modify actions;for example, they should

2 be able to modify their queries or go back to the previous state in a search session. Support user control, allowing users to monitor the progress of a search and be able to specify the parameters to control a search. Reduce short-term memory load;the system should keep track of some important actions performed by the users and allow them to jump easily to a formerly performed action. Simple error-handling facilities to allow users to rectify errors easily;all error messages should be clear and specific. Provide plenty of space for entering text in search boxes. Provide alternative interfaces for expert and novice users. 2. Query Processing System The database user retrieves data by formulating a query in the data manipulation language provided with the database. The query processor is used to interpret the online user s query and convert it into an efficient series of operations in a form capable of being sent to the data manager for execution. The query processor uses the data dictionary to find the structure of the relevant portion of the database and uses this information in modifying the query and preparing an optimal plan to access the database. 3. Database Modeling System : Data modeling is a process by which the data requirements of an organisation or an application area are represented. Data exists as facts, figures and other bits of knowledge. When lot of data items are put together in a useful form one can get information. A data model is a schema to represent the real world using information concepts and structures. A model of data is a particular type of structure or manner of visualizing a data structure. A data structure is a collection of data elements or objects and relationships among them. A data model is a plan for building a database. It is a description of the data about entities, events, activities and their associations within an organization. The purpose of data model is to represent data which should be understandable. It is only then it can be used in some application. Modeling gives consideration only to the constituent elements and sequencing or placement of data elements within other elements. A data model in IRS is primarily a descriptive structure of data, not necessarily its meaning. Before 1980s, the two most commonly used database models were hierarchical and network systems. There are various data models now in use such as Linear Sequential Model Hierarchical Model Network Model Entity Relationship (E-R) Model Relational Model Object Oriented Model 3.1 Linear Sequential Model : It is a very common data structure, also called as a flat structure. It is simply a list or table of elements, with no hierarchical structure other than the accumulation of

3 records within the file a straight line, no branching. An example is the list of students registered for a given course the class list. There may be no information except the STUDENT NUMBER and NAME in this type of sequential model. 3.2 The Hierarchical Model : This data model uses tree structures to represent relationship among records. For eg an institute has a number of programmes to offer. Each programme has a number of courses. Each course has a number of students in it. A hierarchical model consists of collection of records which are connected to each other through links. The tree type data structure is used to represent hierarchical data model and shows the relationships among the parents, children, cousins etc. The highest level of the tree is known as the root in hierarchical model. The tree has one truck and many branches emerging from it. The connection of branches is called a node. A tree is thus a collection of nodes. One node is designated as the root node and the remaining nodes form trees or subtrees. In hierarchical database model, nodes represent entity sets. A hierarchical model maintains one-to-one or one-to-many relationships. 3.3 The Network Model : It is designed to solve some of the problems with the hierarchical model. A network model is very similar to the hierarchical model. In network model, relationships are represented in terms of sets rather than hierarchy. This allows the network model to support many-to-many relationships and also solved the problem of data redundancy. 3.4 Relational Model : In relational model all data is expressed in terms of tables and nothing but tables. Therefore, all entities and attributes are expressed in rows and columns. The design of the relational data model is based on mathematical set theory. The entities are represented in the form of a table, called a relation. The relational database consists of three parts : 1. the structural part defines relations of data and their inter-relation ; 2. the integrity part ensures that each occurrence of a relation is unique and 3. the manipulative part provides operators for processing relations. Relation consists of columns and rows. An entity is represented by a single row (tuple) in a table. And the column part of the relation refers to the entity attributes. In order to achieve the organization of the data in tables in a satisfactory manner, a technique called normalization is used. Normalization is a technique that helps in determining the most appropriate grouping of data items into records, segments or tuples. Each occurrence of the entity type in the relation must be uniquely identified. An attribute that has no repeated value on different tuples in the relation is considered as an entity identifier. An attribute used for uniquely distinguishing each entity in the relation is a primary key. The primary key is usually positioned in the first column of the relation and must have a unique value. The primary key plays a ruling role in the relational database model. When the primary key of one relation appears in another relation, it is called a foreign key. This key is useful for navigating from one relation to the other relation. Entity-Relationship Model The Entity-Relationship (ER) model was originally developed by Chen in It unifies the network and relational database views. It is a conceptual data model that views the real world as entitities and relationships. In this model an Entity-Relationship diagram is used to visually represent data concepts. Thus, it provides graphic representation of entities, attributes and relationship. Today this model is commonly used for database design. The entity-relationship diagram for data uses three features to describe data such as entitities, relationships and attributes.

4 Entitities are concepts, real or abstract, about which information is collected. Relationships are associations between entitites. Attributes are properties which describe the entitites. E-R model can easily be transformed into relational tables. It is simple and easy to understand with a minimum training. Therefore, the model can be used by the database designer to communication the design to the end user. Object-Oriented Model : The object-oriented model facilitates handling of objects rather than records. In an ojbect-oriented model an entity is represented as an instance (object) of a class that has a set of properties and operations (methods) applied to the object. A class represents an abstract data type and is a shell from which we can generate as many copies (called instances) as we want. In object oriented approach, the behaviour of an object is a part of its definition. The behaviour is described by a set of methods. The set of methods offered by an object to the others defines the object interface. A class and hence an object may inherit properties and methods from related classes. Objects and classes are dynamic and can be created at any time. Viewing the data as objects instead of records provides more flexibility. 4. Information Retrieval from Database 5. Sampling of Information Retrieval Systems(OPAC, Dialog, GOOGLE, EBSCO, PubMed) OPAC: Online Public Access Catalogues were previously termed as online catalogs which first came into existence for on-site use in libraries during 1970s and it reached in most of the western libraries during mid-1980s. Online catalogs brought significant qualitative improvements in access to library resources. Even though the content and structure of the records was little changed from card catalogs, online catalogs provided new searching capabilities such as keyword access, boolean logic, limits search by date and type of materials. By combining circulation, acquisitions and cataloguing data, OPAC changed showing the record of materials along with other indicators such as who owns the books, whether book is available or in circulation and on order status of any title. Currently OPACs are termed as Web OPACs. Web OPACs today offer a wide range of search options. They may incorporate information retrieval techniques such as word stemming, truncation, weighted searching, use of fuzzy match search logic, natural language processing. Web OPACs provide enriched subject access or enhanced content. Today's Web OPACs provide automatic spelling correction of common terms. They frequently provide ability for a reader to save searches via . They also provide self-service features, such as reader-initiated reservations, renewals, document ordering etc. The interfaces may incorporate extensive search limiting or browsing features. Today's OPACs also offer access to the catalog. Web OPACs have obvious major advantages such as that: the user is offered access via the browser, integrating the OPAC with other information sources ; using the USMARC field 856 it is possible to include URLs within the bibliographic database, creating live links to digital objects or enabling the association of print and digital sources within a bibliographic record, search types can be customized,

5 Dialog : Knight-Ridder Information Inc's Dailog is one of the oldest online retrieval system. It was completed in According to its literature it was the world's first online information retrieval system to be used globally with materially significant databases. Dialog provides over 500 databases, ranging across most disciplines and bibliographic, abstract, and full text format. It has most comprehensive content collection and most powerful search language available.from concept testing, to clinical trials, to product launches, to patent protection, Dialog delivers accurate, relevant results with excellent speed. Dialog is unique in the vast array of information covering virtually every subject. More than 30,000 separate serial publications are indexed on Dialog, and more than 8,000 of these are in fulltext. In addition, Dialog includes the fulltext of many reference works and specialty publications from around the world, such as market research and brokerage house reports; patents and trademark registrations; chemical directories and drug pipeline monitoring services; to name a few. Archival data is available for many sources back to the 1960s and 1950s some even back to the 18th century. Information on Dialog is organized into separate databases, each like a mini library of specific information or publications. Learning to identify the best database for a search is a skill. Although menu-based searching is available in Dailog, the primary search style is Boolean, offering truncation, field searching, limits by categories such as language or document type,map and RANK commands. For many years dialog system offered users searching based on only one query logic such as Boolean based searching. Its primary users initially were only library community members and other professional searchers. Over the years dialog has provided variations in its services for different classes of users with different skill sets. Dialog's basic language allow to use six commands such as BEGIN, EXPAND, SELECT, DISPLAY, PRINT and LOGOFF. Dailog also allow users to enter a natural language query. The natural language query is converted into boolean expression with common words ommitted and the remaining words ORed together. The retrieved set is then ranked according to the number of query terms found. Dialog has also introduced web version of its service DAILOGWeb offers Internet access to the regular Dialog search system. Dialog provides use of sophisticated search engine and authoritative databases. DialogWeb provides easy access to the full content (over 500 databases), power, and precision of Dialog through a Web browser. Special features include: A flexible and easy to use Guided Search mode that does not require knowledge of the Dialog command language A robust Command Search mode that uses the powerful Dialog command language experienced searchers can easily use Database selection tools to help pinpoint the right database for your search Integrated database descriptions, pricing information, and other search assistance

6 Easy to use forms to create and modify Alerts (current awareness updates) Search results available in HTML or text formats A choice of displaying records or send ing search results via , fax or postal delivery DialogWeb Search Modes Guided Search Mode Guided Search is designed for novice to intermediate searchers who want easy access to Dialog s authoritative business, legal, scientific, intellectual property, and technical information. Guided Search is the default search option for all new DialogWeb customers. Use Guided Search when you do not know Dialog commands and/or databases, or when you are trying out a new subject area and are not familiar with the databases or search terminology. It is also useful if you need an answer to a frequently asked question. Fig 6.1 : Dialog Guided Search Page The first page of the Dialog guided search (Fig 6.1) is a broad subject category display. Clicking on one such category results in more detailed display. Command Search Mode Command Search is designed for intermediate to experienced Dialog searchers. It provides complete command based access to the extensive collection of Dialog databases. You need to be familiar with Dialog commands when using Command Search. Google: Google is the most popular web search engine which was developed in Google navigates the web by crawling that means follow links from page to page, Pages are then sorted out by their contents and other factors, programs are written to deliver best results, algorithms (get to

7 work looking for clues to better understand what you mean), based on the clues relevant documents are pulled up from index, then results are ranked, using over 200 factors, Algorithms are constantly changing. Data is updated every 1/8th of a second in Google database. Google opening page is very simple consisting of just a query box and links to advanced search section. Google allow to set search preferences based on images, maps, videos, books as well as it allow to restrict searches based on country, time and place. Google indexes word by word from all web pages available on Internet. While searching for information on Google, google carry out spell checking and provides a suggestion to the end user. Google also does stemming on entered terms. Google supports basic as well as advance search feature facilities such as basic AND, OR and NOT features are provided with Google. Google also allow to use advance search features based on phrase, wild card, stemming algorithm, fuzzy searching, proximity searching, must include, must exclude terms, range searching etc. While creating indexes of every word available from web pages google also takes snapshot of every page that it has indexed. It is called as cache page. Google keeps backup of every page it has indexed as a cache page. If end user clicks on Cached link Google will take you to the web page as it looked when it was indexed. Google Advanced Search By clicking on advanced search one reaches the advance search page at On Google advanced search page one can find more than one box which will retrieve pages with the words entered into several advance search boxes. EBSCO EBSCOhost is an online system that provides access to several periodical indexes or databases. It is a powerful online reference system accessible via the Internet or direct connection. It offers a variety of proprietary full text databases and popular databases from leading information providers.

8 It provides a complete and optimized research solution comprised of research databases, e-books and e-journals all combined with the most powerful discovery service and management resources to support the information and collection development needs of libraries and other institutions and to maximize the search experience for researchers and other end users. Currently EBSCO offers more than 375 full-text and secondary research databases and over 5,15,000 e-books plus subscription management services for 360,000 e-journals, e-journal packages and print journals. Hospitality & Tourism Complete Database covers scholarly research and industry news relating to all areas of hospitality and tourism. This collection contains full text for more than 500 publications, including periodicals, company & country reports, and books. Business Source Premier provides articles from over 2500 journals, magazines and newspapers on business and management to pics. EBSCO serves the content needs of all researchers whether they access EBSCO resources via academic institutions, schools, public libraries, hospitals and medical institutions, corporations, associations, government institutions, etc. It has a powerful web-based retrieval system. As soon as a user logs in to the system, user can select the databae and then click on search option. The initial search screen presents a toolbar which includes functions that are available at all times during a search session. These include buttons for new search which will return to the initial default search screen; view folder which allows the user to view a personal folder which is cleared at session end unless the user signs into the system establishing a permanent file; preferences which permits a change in the Result List Format and number of results per page; help which opens an online help manual; plus an exit or home library graphic which will close EBSCO host and return to the library's home page. The basic search screen supplies a Find box, in which terms may be entered and automatically checked for commonly misspelled words and alternate spellings suggested. Keywords are the assumed default. Ebsco host allow to use basic search as well as advance search option.

9 PubMed PubMed was first released in January 1996 as an experimental database under the Entrez retrieval system with full access to MEDLINE. The word "experimental" was dropped from the Web site in April 1997, and on June 26, 1997, a Capitol Hill Press conference officially announced free MEDLINE access via PubMed. PubMed searches were approximately two million for the month of June 1997 while current usage typically exceeds three million searches per day. PubMed is a free access web-based retrieval system developed by the National Center for Biotechnology Information (NCBI) at the National Library of Medicine. It contains bibliographic information drawn primarily from the life sciences literature, including the over 10 million citations in medline and premedline. The database provides links to full-text articles. The PubMed database as well allow to carry out basic and advance search. The first search page of PubMed is very simple and easy to use. To search PubMed, one enters search terms in the query box. If user wishes to use advance search he is also allowed to use either basic or advance search feature.

EBSCOhost Web 6.0. User s Guide EBS 2065

EBSCOhost Web 6.0. User s Guide EBS 2065 EBSCOhost Web 6.0 User s Guide EBS 2065 6/26/2002 2 Table Of Contents Objectives:...4 What is EBSCOhost...5 System Requirements... 5 Choosing Databases to Search...5 Using the Toolbar...6 Using the Utility

More information

EBP. Accessing the Biomedical Literature for the Best Evidence

EBP. Accessing the Biomedical Literature for the Best Evidence Accessing the Biomedical Literature for the Best Evidence Structuring the search for information and evidence Basic search resources Starting the search EBP Lab / Practice: Simple searches Using PubMed

More information

1. Accessing EBSCOhost. 2. Why Choose EBSCOhost? 3. EBSCOhost Databases

1. Accessing EBSCOhost. 2. Why Choose EBSCOhost? 3. EBSCOhost Databases EBSCOhost Contents 1. Accessing EBSCOhost... 3 2. Why Choose EBSCOhost?... 3 3. EBSCOhost Databases... 3 4. Searching EBSCOhost... 4 4.1 Advanced Keyword Search... 4 4.2 Limiting or Expanding Your Search

More information

E B S C O h o s t U s e r G u i d e

E B S C O h o s t U s e r G u i d e EBSCOhost User Guide Table of Contents What is EBSCOhost...5 System Requirements...5 Choosing Databases to Search...5 Using the Toolbar...6 Using the Utility Toolbar...6 The Sub-toolbar...6 The Tabbed

More information

EBSCO Business Source Complete (http://www.ebscohost.com)

EBSCO Business Source Complete (http://www.ebscohost.com) 8.1.10 EBSCO Business Source Complete (http://www.ebscohost.com) EBSCO is a worldwide leader in providing information access and management solutions through print and electronic journal subscription services,

More information

LIT LIBRARY DISCOVER!

LIT LIBRARY DISCOVER! LIT LIBRARY DISCOVER! QUICK START GUIDE WHAT IS DISCOVER! Discover! is a powerful search engine provided by EBSCO that allows libray researchers to discover material of all sorts through a single search

More information

SEARCH TECHNIQUES: BASIC AND ADVANCED

SEARCH TECHNIQUES: BASIC AND ADVANCED 17 SEARCH TECHNIQUES: BASIC AND ADVANCED 17.1 INTRODUCTION Searching is the activity of looking thoroughly in order to find something. In library and information science, searching refers to looking through

More information

Scientific databases

Scientific databases SCID 305 : Generic Skills in Science Research Scientific databases Suang Udomvaraphunt Academic IT Stang Monkolsuk library and Information Division Faculty of Science Stang Mongkolsuk Library http://stang.sc.mahidol.ac.th

More information

Student Research Center User Guide. support.ebsco.com

Student Research Center User Guide. support.ebsco.com Student Research Center User Guide Table of Contents Student Research Center... 4 Searching Tips User Guide... 4 Using the Student Research Center Home Page... 5 Basic Search... 5 Topic Search... 7 Source

More information

Explora - Basic Search

Explora - Basic Search Explora - Basic Search From the Explora home screen, you can quickly search for the information you need to complete research and classroom assignments. To create a Basic Search: 1. Enter your search terms

More information

EBSCOhost Databases Training

EBSCOhost Databases Training EBSCOhost Databases Training Monday, October 29, 2018. National Graduate Institute for Policy Studies Library 1 www.ebsco.com Hand out 2 www.ebsco.com Hand out 3 www.ebsco.com 4 www.ebsco.com Training

More information

E B S C O h o s t U s e r G u i d e P s y c I N F O

E B S C O h o s t U s e r G u i d e P s y c I N F O E B S C O h o s t U s e r G u i d e P s y c I N F O PsycINFO User Guide Last Updated: 1/11/12 Table of Contents What is PsycINFO... 3 What is EBSCOhost... 3 System Requirements...3 Choosing Databases to

More information

PubMed Assistant: A Biologist-Friendly Interface for Enhanced PubMed Search

PubMed Assistant: A Biologist-Friendly Interface for Enhanced PubMed Search Bioinformatics (2006), accepted. PubMed Assistant: A Biologist-Friendly Interface for Enhanced PubMed Search Jing Ding Department of Electrical and Computer Engineering, Iowa State University, Ames, IA

More information

BSI User Guide Searching. support.ebsco.com

BSI User Guide Searching. support.ebsco.com BSI User Guide Searching Basic, Advanced & Visual Searching, Result List, Article Details, Company Information, Additional Features Last Updated 5/3/12 Table of Contents What is the Business Searching

More information

CCL-EAR COMMITTEE REVIEW Elsevier ScienceDirect Health & Life Sciences Journals (College Edition) October 2011

CCL-EAR COMMITTEE REVIEW Elsevier ScienceDirect Health & Life Sciences Journals (College Edition) October 2011 CCL-EAR COMMITTEE REVIEW Elsevier ScienceDirect Health & Life Sciences Journals (College Edition) October 2011 ScienceDirect Health & Life Sciences Journals is published by Elsevier, one of the world's

More information

Web of Science. LIBRARY SERVICES

Web of Science.   LIBRARY SERVICES Web of Science Web of Science is a comprehensive online database providing access to academic journals, conference proceedings and books in the sciences, social sciences, arts and humanities, from 1970

More information

Find your way around Library

Find your way around Library Facilities Find your way around Library Resources Focus of collection Academic Collection - supports teaching, learning and research needs Lifestyle Collection - focuses on personal, social and

More information

EBSCOhost User Guide MEDLINE

EBSCOhost User Guide MEDLINE EBSCOhost User Guide MEDLINE April 1, 2003 Table of Contents What is MEDLINE?... 3 What is EBSCOhost?... 3 System Requirements...3 Choosing Databases to Search... 3 Database Help...3 Using the Toolbar...

More information

Using Scopus. Scopus. To access Scopus, go to the Article Databases tab on the library home page and browse by title.

Using Scopus. Scopus. To access Scopus, go to the Article Databases tab on the library home page and browse by title. Using Scopus Databases are the heart of academic research. We would all be lost without them. Google is a database, and it receives almost 6 billion searches every day. Believe it or not, however, there

More information

EBSCOhost User Guide Business Source. Databases

EBSCOhost User Guide Business Source. Databases EBSCOhost User Guide Business Source Databases April 1, 2003 Page 2 EBSCOhost User Guide: Business Source Databases August 2003 Table Of Contents What is Business Source...5 Business Source Premier...5

More information

INTERMEDIATE MEDLINE

INTERMEDIATE MEDLINE INTERMEDIATE MEDLINE Contents Introduction... 2 Learning outcomes... 2 About this workbook... 2 1. Before you start... 2 a. Logging in... 3 2. Breaking down your question... 6 3. Searching by keyword...

More information

SciVerse Scopus. 1. Scopus introduction and content coverage. 2. Scopus in comparison with Web of Science. 3. Basic functionalities of Scopus

SciVerse Scopus. 1. Scopus introduction and content coverage. 2. Scopus in comparison with Web of Science. 3. Basic functionalities of Scopus Prepared by: Jawad Sayadi Account Manager, United Kingdom Elsevier BV Radarweg 29 1043 NX Amsterdam The Netherlands J.Sayadi@elsevier.com SciVerse Scopus SciVerse Scopus 1. Scopus introduction and content

More information

E B S C O h o s t U s e r G u i d e M E D L I N E MEDLINE. EBSCOhost User Guide MEDLINE. MEDLINE with Full Text. MEDLINE Complete

E B S C O h o s t U s e r G u i d e M E D L I N E MEDLINE. EBSCOhost User Guide MEDLINE. MEDLINE with Full Text. MEDLINE Complete E B S C O h o s t U s e r G u i d e M E D L I N E MEDLINE EBSCOhost User Guide MEDLINE MEDLINE with Full Text MEDLINE Complete Last Updated November 13, 2013 Table of Contents What is MEDLINE?... 3 What

More information

Table of Contents What is EBSCOhost?

Table of Contents What is EBSCOhost? Table of Contents What is EBSCOhost?------------------------------------------------------------------------------------2 Rationale For the Use of EBSCOhost ---------------------------------------------------------------2

More information

EMBASE.com and EMBASE on SilverPlatter

EMBASE.com and EMBASE on SilverPlatter Elsevier Bibliographic Databases Platform Comparison Documents Platform Feature EMBASE.com SilverPlatter Target User Group End-users Information professionals, end users Pricing Flat-fee licensing for

More information

Advanced searching. You can save valuable time by planning your search properly. 1. What information do I need?

Advanced searching. You can save valuable time by planning your search properly. 1. What information do I need? Advanced searching You can save valuable time by planning your search properly. 1. Identify your information needs 2. Identify your keywords and subject headings to construct your search 3. Identify appropriate

More information

HOW TO ACCESS INFORMATION ON WEBSITE. IGBUDU, MURPHY TERSOO Head of Virtual Library Units

HOW TO ACCESS INFORMATION ON WEBSITE. IGBUDU, MURPHY TERSOO Head of Virtual Library Units HOW TO ACCESS INFORMATION ON BENUE STATE UNIVERSITY LIBRARY WEBSITE BY IGBUDU, MURPHY TERSOO Head of Virtual Library Units murphyigbudu@bsulibrary.net & YISA, SOLOMON TERKIMBI Head of CHS Virtual Library

More information

MeSH: A Thesaurus for PubMed

MeSH: A Thesaurus for PubMed Resources and tools for bibliographic research MeSH: A Thesaurus for PubMed October 24, 2012 What is MeSH? Who uses MeSH? Why use MeSH? Searching by using the MeSH Database What is MeSH? Acronym for Medical

More information

E-Marefa User Guide. "Arab Theses and Dissertations"

E-Marefa User Guide. Arab Theses and Dissertations E-Marefa User Guide "Arab Theses and Dissertations" Table of Contents What is E-Marefa Database.3 System Requirements 3 Inside this User Guide 3 Access to E-Marefa Database.....4 Choosing Database to Search.5

More information

LIBRARY RESOURCES & GUIDES APA STYLE YOUR LITERATURE REVIEW PRIMARY & SECONDARY SOURCES SEARCHING LIBRARY E-RESOURCES ( DATABASES ) FOR ARTICLES

LIBRARY RESOURCES & GUIDES APA STYLE YOUR LITERATURE REVIEW PRIMARY & SECONDARY SOURCES SEARCHING LIBRARY E-RESOURCES ( DATABASES ) FOR ARTICLES 2015 Feb LITERATURE REVIEW ASSIGNMENT Library Class Outline Centennial College Libraries homepage http://library.centennialcollege.ca/ LIBRARY RESOURCES & GUIDES APA STYLE YOUR LITERATURE REVIEW PRIMARY

More information

Searching the Evidence in PubMed

Searching the Evidence in PubMed CAMBRIDGE UNIVERSITY LIBRARY MEDICAL LIBRARY Supporting Literature Searching Searching the Evidence in PubMed July 2017 Supporting Literature Searching Searching the Evidence in PubMed How to access PubMed

More information

Scopus Development Focus

Scopus Development Focus 0 Scopus Development Focus Superior support of the scientific literature research process - on finding relevant articles quickly and investigating current research relationships through citation information

More information

Effective searching strategies and techniques

Effective searching strategies and techniques Effective searching strategies and techniques Getting the most from electronic information resources Objectives To understand the importance of effective searching To develop guidelines for planning and

More information

How Primo Works VE. 1.1 Welcome. Notes: Published by Articulate Storyline Welcome to how Primo works.

How Primo Works VE. 1.1 Welcome. Notes: Published by Articulate Storyline   Welcome to how Primo works. How Primo Works VE 1.1 Welcome Welcome to how Primo works. 1.2 Objectives By the end of this session, you will know - What discovery, delivery, and optimization are - How the library s collections and

More information

This session will provide an overview of the research resources and strategies that can be used when conducting business research.

This session will provide an overview of the research resources and strategies that can be used when conducting business research. Welcome! This session will provide an overview of the research resources and strategies that can be used when conducting business research. Many of these research tips will also be applicable to courses

More information

Adaptable and Adaptive Web Information Systems. Lecture 1: Introduction

Adaptable and Adaptive Web Information Systems. Lecture 1: Introduction Adaptable and Adaptive Web Information Systems School of Computer Science and Information Systems Birkbeck College University of London Lecture 1: Introduction George Magoulas gmagoulas@dcs.bbk.ac.uk October

More information

Knowledge Retrieval. Franz J. Kurfess. Computer Science Department California Polytechnic State University San Luis Obispo, CA, U.S.A.

Knowledge Retrieval. Franz J. Kurfess. Computer Science Department California Polytechnic State University San Luis Obispo, CA, U.S.A. Knowledge Retrieval Franz J. Kurfess Computer Science Department California Polytechnic State University San Luis Obispo, CA, U.S.A. 1 Acknowledgements This lecture series has been sponsored by the European

More information

OvidSP. Think fast. Search faster. User Guide. Copyright Ovid Technologies All Rights Reserved 1

OvidSP. Think fast. Search faster. User Guide. Copyright Ovid Technologies All Rights Reserved 1 OvidSP Think fast. Search faster. User Guide Copyright Ovid Technologies All Rights Reserved 1 TABLE OF CONTENTS GET STARTED Browser Requirements...1 Access OvidSP...2 Select a Resource...4 CONDUCT A SEARCH

More information

Biomedical Digital Libraries

Biomedical Digital Libraries Biomedical Digital Libraries BioMed Central Resource review database: a review Judy F Burnham* Open Access Address: University of South Alabama Biomedical Library, 316 BLB, Mobile, AL 36688, USA Email:

More information

ClinicalKey User Guide

ClinicalKey User Guide ClinicalKey User Guide An in-depth guide to smarter searches and faster answers 1 Overview... 1 1.1 Selecting the Best Internet Browser... 1 1.2 Registering Your Account... 1 1.3 Logging Into ClinicalKey...

More information

Using SportDiscus (and Other Databases)

Using SportDiscus (and Other Databases) Using SportDiscus (and Other Databases) Databases are at the heart of research. Google is a database, and it receives almost 6 billion searches every day. Believe it or not, however, there are better databases

More information

ACM Digital Library. LIBRARY SERVICES

ACM Digital Library.  LIBRARY SERVICES ACM Digital Library The ACM Digital Library is a comprehensive database of full-text articles in computing and information technology. It provides access to the complete collection of ACM publications

More information

Finding Sources. Introduction Primary and secondary sources Searching for sources Search engines Online databases Blogs Talk About It Your Turn

Finding Sources. Introduction Primary and secondary sources Searching for sources Search engines Online databases Blogs Talk About It Your Turn Finding Sources Introduction Primary and secondary sources Searching for sources Search engines Online databases Blogs Talk About It Your Turn Tech Tools in this presentation LOC Online Catalog Advanced

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

Lukáš Plch at Mendel university in Brno

Lukáš Plch at Mendel university in Brno Lukáš Plch lukas.plch@mendelu.cz at Mendel university in Brno CAB Abstracts Greenfile Econlit with Full Text OECD ilibrary the most comprehensive database of its kind, instant access to over 7.3 million

More information

Tutorial: Full Text Databases

Tutorial: Full Text Databases Powered by Professionals Tutorial: Full Text Databases Getting Started Always start by selecting the database(s) you want to search. Click Close Database Selection Area or Open Database Selection Area,

More information

CABI Training Materials. Ovid Silver Platter (SP) platform. Simple Searching of CAB Abstracts and Global Health KNOWLEDGE FOR LIFE.

CABI Training Materials. Ovid Silver Platter (SP) platform. Simple Searching of CAB Abstracts and Global Health KNOWLEDGE FOR LIFE. CABI Training Materials Ovid Silver Platter (SP) platform Simple Searching of CAB Abstracts and Global Health www.cabi.org KNOWLEDGE FOR LIFE Contents The OvidSP Database Selection Screen... 3 The Ovid

More information

Transition of Content and Accounts from AdisOnline.com to the new Springer platform - Frequently Asked Questions

Transition of Content and Accounts from AdisOnline.com to the new Springer platform - Frequently Asked Questions Transition of Content and Accounts from AdisOnline.com to the new Springer platform - Frequently Asked Questions This document has been compiled to support you during the transition of Adis content from

More information

Introduction to Ovid. As a Clinical Librarían tool! Masoud Mohammadi Golestan University of Medical Sciences

Introduction to Ovid. As a Clinical Librarían tool! Masoud Mohammadi Golestan University of Medical Sciences Introduction to Ovid As a Clinical Librarían tool! Masoud Mohammadi Golestan University of Medical Sciences Overview Ovid helps researchers, librarians, clinicians, and other healthcare professionals find

More information

Information Search 2: E-Journals. Farzaneh Aminpour, PhD. Health Information Management Tehran University of Medical Sciences

Information Search 2: E-Journals. Farzaneh Aminpour, PhD. Health Information Management Tehran University of Medical Sciences Information Search 2: E-Journals Farzaneh Aminpour, PhD. Health Information Management Tehran University of Medical Sciences Workshop Objectives Information Resources E-Journals Journal Impact Factor How

More information

American Institute of Physics

American Institute of Physics American Institute of Physics (http://journals.aip.org/)* Founded in 1931, the American Institute of Physics (AIP) is a not-for-profit scholarly society established for the purpose of promoting the advancement

More information

Periodicals Tutorial

Periodicals Tutorial Periodicals Tutorial Periodicals Module Introduction Periodical articles are a good source of current information. Online periodical indexes/databases are the best way to locate these articles. Databases

More information

Usability and User Interfaces

Usability and User Interfaces Usability and User Interfaces The Importance of User Interface Design A computer system is only as good as the interface it provides to its users. Functionality, easy navigation, elegant design, response

More information

EBSCOhost User Guide PsycINFO

EBSCOhost User Guide PsycINFO EBSCOhost User Guide PsycINFO April 1, 2003 Page 2 EBSCOhost User Guide: PsycINFO EBS 2568 Table of Contents What is PsycINFO...5 What is EBSCOhost...5 System Requirements...5 Using the Toolbar...5 Using

More information

The quality of your literature review is dependent on you knowing how to identify the. to use them effectively SESSION OVERVIEW THOUGHT OF THE DAY

The quality of your literature review is dependent on you knowing how to identify the. to use them effectively SESSION OVERVIEW THOUGHT OF THE DAY THE LIBRARY OF TRINITY COLLEGE DUBLIN Approaches to Literature Reviewing A brief guide from the Library Isolde Harpur Assistant Librarian imharpur@tcd.ie SESSION OVERVIEW Identifying resources for a literature

More information

SocINDEX Guide. On the Ithaca College Library web site, SocINDEX is available through Ebsco. The top of the first screen will look like this:

SocINDEX Guide. On the Ithaca College Library web site, SocINDEX is available through Ebsco. The top of the first screen will look like this: SocINDEX Guide On the Ithaca College Library web site, SocINDEX is available through Ebsco. The top of the first screen will look like this: The Ebsco platform allows you to perform complicated searches

More information

EBSCOhost User Guide Browsing. Subjects, CINAHL/MeSH Headings, Indexes, Thesauri, Publications, Cited References. support.ebsco.

EBSCOhost User Guide Browsing. Subjects, CINAHL/MeSH Headings, Indexes, Thesauri, Publications, Cited References. support.ebsco. EBSCOhost User Guide Browsing Subjects, CINAHL/MeSH Headings, Indexes, Thesauri, Publications, Cited References Table of Contents EBSCOhost User Guide Browsing... 1... 1 Table of Contents... 2 Inside this

More information

Canterbury Medical Library University of Otago, Christchurch

Canterbury Medical Library University of Otago, Christchurch Canterbury Medical Library University of Otago, Christchurch CINAHL is found at http://www.uoc.otago.ac.nz/departments/library/databases.htm Choose Ebsco Databases, then CINAHL Searching Canterbury Medical

More information

CLICK (Complete Learning In Computer Knowledge)

CLICK (Complete Learning In Computer Knowledge) CLICK (Complete Learning In Computer Knowledge) Microsoft Office 2016 Level 1 Course Overview: The CLICK Level 1 course is intended for new computer users who want to use the basic tools and features of

More information

The drop down menu at the top of the page also provides option to browse journal titles by:

The drop down menu at the top of the page also provides option to browse journal titles by: Blackwell Synergy (http://www.blackwell-synergy.com/) Blackwell Synergy is the online journals service from Blackwell Publishing. It holds the fulltext articles of over 850 journals, majority of which

More information

Secrets of Profitable Freelance Writing

Secrets of Profitable Freelance Writing Secrets of Profitable Freelance Writing Proven Strategies for Finding High Paying Writing Jobs Online Nathan Segal Cover by Nathan Segal Editing Precision Proofreading Nathan Segal 2014 Secrets of Profitable

More information

Medline. Library Services

Medline. Library Services Library Services Medline Medline (produced by the U.S. National Library of Medicine) is widely recognised as the premier source of bibliographic information for health and biomedical literature. It covers

More information

Lexis for Microsoft Office User Guide

Lexis for Microsoft Office User Guide Lexis for Microsoft Office User Guide Created 12-2017 Copyright 2017 LexisNexis. All rights reserved. Contents Lexis for Microsoft Office About Lexis for Microsoft Office... 1 About Lexis for Microsoft

More information

Introducing ProQuest Central for University of Tsukuba

Introducing ProQuest Central for University of Tsukuba Introducing ProQuest Central for University of Tsukuba October 20 th 2015 Table of Contents Introducing ProQuest 1. About ProQuest Database What is database? Why do we use database? 2. What is ProQuest

More information

MeSH : A Thesaurus for PubMed

MeSH : A Thesaurus for PubMed Scuola di dottorato di ricerca in Scienze Molecolari Resources and tools for bibliographic research MeSH : A Thesaurus for PubMed What is MeSH? Who uses MeSH? Why use MeSH? Searching by using the MeSH

More information

Oracle User Productivity Kit Reports Management. E July 2012

Oracle User Productivity Kit Reports Management. E July 2012 Oracle User Productivity Kit Reports Management E29429-01 July 2012 Oracle User Productivity Kit Reports Management E29429-01 July 2012 Copyright 1998, 2012, Oracle and/or its affiliates. All rights reserved.

More information

COCHRANE LIBRARY. Contents

COCHRANE LIBRARY. Contents COCHRANE LIBRARY Contents Introduction... 2 Learning outcomes... 2 About this workbook... 2 1. Getting Started... 3 a. Finding the Cochrane Library... 3 b. Understanding the databases in the Cochrane Library...

More information

Access ERIC from the GOS-ICH Library website: hhttps://

Access ERIC from the GOS-ICH Library website: hhttps:// The ERIC (Educational Resources Information Center) database is sponsored by the U.S. Department of Education to provide access to educational-related literature. ERIC provides coverage of journal articles,

More information

CCH China Law Express & China Law for Foreign Business. Participant Training Guide

CCH China Law Express & China Law for Foreign Business. Participant Training Guide CCH China Law Express & China Law for Foreign Business July, 2007 Table of Contents INTRODUCTION...2 COURSE OBJECTIVES...2 LOGGING IN...3 Library Layout and Subscription Content...4 CHINA LAW EXPRESS...5

More information

(http://www.emeraldinsight.com)

(http://www.emeraldinsight.com) Emerald (http://www.emeraldinsight.com) Emerald publishes the world's widest range of management journals which provides information, ideas and opportunity to gain insight into key management topics. Emerald

More information

Searching Pubmed Database استخدام قاعدة المعلومات Pubmed

Searching Pubmed Database استخدام قاعدة المعلومات Pubmed Searching Pubmed Database استخدام قاعدة المعلومات Pubmed برنامج مهارات البحث العلمي مركز البحىث بأقسام العلىم والدراسات الطبية للطالبات األحد 1433/11/14 ه الموافق 30 2012 /9/ م د. سيناء عبد المحسن العقيل

More information

The Cochrane Library on Wiley InterScience Quick Reference Guide.

The Cochrane Library on Wiley InterScience Quick Reference Guide. The Cochrane Library on Wiley InterScience Quick Reference Guide www.thecochranelibrary.com 1 The Cochrane Library on Wiley InterScience Quick Reference Guide Cochrane Database of Systematic Reviews (Cochrane

More information

EBSCOHost. EBSCO Publishing/EBSCOhost is the registered trademark of EBSCO Publishing.

EBSCOHost. EBSCO Publishing/EBSCOhost is the registered trademark of EBSCO Publishing. Ebsco Advanced EBSCOHost More than 300 full text and secondary databases are available via EBSCOhost. According to School Library Journal (August 2008), "EBSCO has not only completely redesigned its interface,

More information

BNA s Intellectual Property Library

BNA s Intellectual Property Library e s U e d i u G r s BNA s Intellectual Property Library BNA Train in g and P roduct Suppor t Contact Training & Product Support BNA Training & Product Support is dedicated to helping you get the most value

More information

Reference Manager. Version 11. Beginners' Guide

Reference Manager. Version 11. Beginners' Guide Reference Manager Version 11 Beginners' Guide Barbara Smith Library July 2004 REFERENCE MANAGER Reference Manager, produced by ISI ResearchSoft, is a personal reference management system designed to keep

More information

UNIVERSITY OF NEW BRUNSWICK USER GUIDE CINAHL

UNIVERSITY OF NEW BRUNSWICK USER GUIDE CINAHL UNIVERSITY OF NEW BRUNSWICK USER GUIDE CINAHL Adapted from EBSCOhost training materials by Frances Giberson, UNB Libraries August 2012 Table of Contents WHAT IS CINAHL?... 3 THE TOOLBAR... 3 SEARCHING

More information

Finding newspaper articles using LexisLibrary and Factiva

Finding newspaper articles using LexisLibrary and Factiva Finding newspaper articles using LexisLibrary and Factiva LexisLibrary is a resource for finding legal information, but also has within it a database of British newspapers. It includes national and regional

More information

INFORMATION RETRIEVAL SYSTEM: CONCEPT AND SCOPE

INFORMATION RETRIEVAL SYSTEM: CONCEPT AND SCOPE 15 : CONCEPT AND SCOPE 15.1 INTRODUCTION Information is communicated or received knowledge concerning a particular fact or circumstance. Retrieval refers to searching through stored information to find

More information

21. Search Models and UIs for IR

21. Search Models and UIs for IR 21. Search Models and UIs for IR INFO 202-10 November 2008 Bob Glushko Plan for Today's Lecture The "Classical" Model of Search and the "Classical" UI for IR Web-based Search Best practices for UIs in

More information

Deconstructing databases: Becoming a better (re)searcher

Deconstructing databases: Becoming a better (re)searcher 1 Deconstructing databases: Becoming a better (re)searcher iskills Workshop Series Nalini K. Singh Inforum January 2017 2 CONTENTS What is a database? 3 Research databases @ UTL 4 Different kinds of databases

More information

A GUIDE TO LIBRARY RESOURCES FOR SPORT

A GUIDE TO LIBRARY RESOURCES FOR SPORT A GUIDE TO LIBRARY RESOURCES FOR SPORT 2018-19 CONTENTS The Study Portal... 2 Library Services Homepage... 3 MetSearch (Formerly The Electronic Library)... 4 Metsearch- Finding books/ebooks... 5 Using

More information

HOW TO SEARCH EBSCOHOST DATABASES (PT)

HOW TO SEARCH EBSCOHOST DATABASES (PT) HOW TO SEARCH EBSCOHOST DATABASES (PT) ACCESS TO THE DATABASE There are several ways by which to access EBSCOhost. The two most direct are through an alphabetical list of the databases or through the list

More information

Searching PubMed. Enter your concepts into the search box and click Search. Your results are displayed below the search box.

Searching PubMed. Enter your concepts into the search box and click Search. Your results are displayed below the search box. Searching PubMed UCL Library Services, Gower St., London WC1E 6BT 020 7679 7700 E-mail: library@ucl.ac.uk http://www.ucl.ac.uk/library/ 1. What is PubMed? http://www.pubmed.gov PubMed is a free interface

More information

Furl Furled Furling. Social on-line book marking for the masses. Jim Wenzloff Blog:

Furl Furled Furling. Social on-line book marking for the masses. Jim Wenzloff Blog: Furl Furled Furling Social on-line book marking for the masses. Jim Wenzloff jwenzloff@misd.net Blog: http://www.visitmyclass.com/blog/wenzloff February 7, 2005 This work is licensed under a Creative Commons

More information

NTUST Library Service & E-Resource

NTUST Library Service & E-Resource NTUST Library Service & E-Resource English Version lib@mail.ntust.ecu.tw NTUST Library System Information Section 1 NTUST Library Services Floor Locations of Materials Services 5-8th Bound Periodicals

More information

bigchalk Library Elementary PowerPoint Presentation Notes

bigchalk Library Elementary PowerPoint Presentation Notes These notes have been provided as a means for the user to follow along with the presentation slides. For a trial account, contact a representation at 800.860.9228. Slide 1 Welcome to bigchalk and the engaging

More information

Engineering Village Quick Reference Guide

Engineering Village Quick Reference Guide Engineering Village Quick Reference Guide Engineering Village Quick Reference Guide Research and access relevant engineering information results in context in a convenient, fast and reliable way using

More information

Guide to Using Consumer Health Complete

Guide to Using Consumer Health Complete A guide to finding information in Roberts-LaForge Library Guide to Using Consumer Health Complete What is Consumer Health Complete? Consumer Health Complete is a full text EBSCOhost database which provides

More information

support.ebsco.com Business Searching Interface User Guide 1 support.ebsco.com

support.ebsco.com Business Searching Interface User Guide 1 support.ebsco.com Business Searching Interface (BSI) User Guide Business Searching Interface User Guide 1 Table of Contents Search Screens... 4 Basic Search... 4 Advanced Search Screens... 7 Advanced Search with Guided-Style

More information

eresearch Australia The Elephant in the Room! Open Access Archiving and other Gateways to e-research Richard Levy

eresearch Australia The Elephant in the Room! Open Access Archiving and other Gateways to e-research Richard Levy eresearch Australia Open Access Archiving and other Gateways to e-research Richard Levy The Elephant in the Room! The Impact of Google on eresearch Google is the black box to information on the Internet,

More information

LIBRARY OVERVIEW Your Library account Libraries homepage gateway to all library collections and services Collections & services

LIBRARY OVERVIEW Your Library account Libraries homepage gateway to all library collections and services Collections & services 2015 June TAKE HOME ESSAY 2 ASSIGNMENT LIBRARY CLASS Centennial College Libraries homepage http://library.centennialcollege.ca/ LIBRARY OVERVIEW Your Library account Libraries homepage gateway to all library

More information

SwetsWise End User Guide. Contents. Introduction 3. Entering the platform 5. Getting to know the interface 7. Your profile 8. Searching for content 9

SwetsWise End User Guide. Contents. Introduction 3. Entering the platform 5. Getting to know the interface 7. Your profile 8. Searching for content 9 End User Guide SwetsWise End User Guide Contents Introduction 3 Entering the platform 5 Getting to know the interface 7 Your profile 8 Searching for content 9 Personal Settings 18 In Summary 21 Introduction

More information

Searching NHS Evidence

Searching NHS Evidence Searching NHS Evidence www.evidence.nhs.uk Acknowledgement: This guide is adapted and updated by Ziba Nadimi and Daphne Grey members of Clinical Librarian and Information Skills Trainers forum (CLIST).

More information

How to Work with a Reference Answer Set

How to Work with a Reference Answer Set How to Work with a Reference Answer Set Easily identify and isolate references of interest Quickly retrieve relevant information from the world s largest, publicly available reference database for chemistry

More information

What is interaction? communication user system. communication between the user and the system

What is interaction? communication user system. communication between the user and the system What is interaction? communication user system communication between the user and the system 2 terms of interaction The purpose of interactive system is to help user in accomplishing goals from some domain.

More information

The College Learning Resources : An Orientation Sunanta Wongchalee, MPH Tel: , 88199

The College Learning Resources : An Orientation Sunanta Wongchalee, MPH   Tel: , 88199 The College Learning Resources : An Orientation 2016 Sunanta Wongchalee, MPH E-mail: wsunanta@chula.ac.th Tel: 0 2218-8047, 88199 1 Agenda How to use a computer room, accessing to the Internet in and off

More information

From Scratch to the Web: Terminological Theses at the University of Innsbruck

From Scratch to the Web: Terminological Theses at the University of Innsbruck Peter Sandrini University of Innsbruck From Scratch to the Web: Terminological Theses at the University of Innsbruck Terminology Diploma Theses (TDT) have been well established in the training of translators

More information

*Note: To find a complete list of sources, click on the List of Sources link in the top portion of every Biography Resource Center search screen.

*Note: To find a complete list of sources, click on the List of Sources link in the top portion of every Biography Resource Center search screen. Biography Resource Center Navigation Guide OVERVIEW The Biography Resource Center (BioRC) is a comprehensive database of biographical information on over 380,000 people from throughout history, around

More information

Stockley s Interaction Alerts on MedicinesComplete. User Guide

Stockley s Interaction Alerts on MedicinesComplete. User Guide Stockley s Interaction Alerts on MedicinesComplete User Guide Stockley s Interaction Alerts on MedicinesComplete User Guide 1 About Stockley s Interaction Alerts... 2 2 The interface... 3 2.1 The top bar...

More information

BLLDB User Manual semantics GmbH

BLLDB User Manual semantics GmbH User Manual 04.07.2007 2007 semantics GmbH Table of Contents I Table of Contents 1 How to use... BLLDB 1 1.1 Basic Search... 2 1.2 Advanced Search... 3 1.3 Advice and examples... 4 1.4 Using the Classification...

More information