CERN – European Organization for Nuclear Research Administrative Support - Advanced Information Systems Introduction to Oracle interMedia-Text By Derek.

Slides:



Advertisements
Similar presentations
Support.ebsco.com Science Reference Center Tutorial.
Advertisements

OvidSP Flexible. Innovative. Precise. Introducing OvidSP Resources.
PubMed/How to Search, Display, Download & (module 4.1)
Benchmarking Oracle 8i Intermedia Text Background for this benchmark Interesting new features in OIMT Benchmarking, methodology and problems Results Conclusions.
New DAITS Training and reference manual Start slide show Go to index.
Modern information retrieval Modelling. Introduction IR systems usually adopt index terms to process queries IR systems usually adopt index terms to process.
Altman IM Ltd | | capture | index | organise | workflow Enterprise document & content management … for all types & size.
Introducing… EBSCOhost 2.0 A redesigned EBSCOhost Coming in July 2008.
Accessing and Using the e-Book Collection from EBSCOhost ® When an arrow appears, click to proceed to the next slide at your own pace. To go back, click.
Modern Language Association (MLA) International Bibliography Hosted by Gale Cengage Welcome to our Guided Tour Tour takes about 7 minutes. The show will.
Advanced searches in To find the Google Advanced search Google advanced search Type these words into Google search bar.
How to Read the Keyword Results Screen. A keyword search will result in.
ISP 121 Week 1 Introduction to Databases. ISP 121, Winter Why a database and not a spreadsheet? You have too many separate files or too much data.
Information & Library Services SwetsWise User Guide Emma Crowley Senior Academic Services Librarian
Using Social Care Online: an overview Version 1.0 April 2015.
Oracle Text Operations J. Molka-Danielsen Sept. 30, 2002.
Oracle Text NoCOUG Presentation August 15, Session Objectives Review Oracle Text basics Index Options Compare Oracle Text with interMedia and ConText.
Oracle Text saves your time Oracle Text Search saves your time Anna Suwalska European Organization for Nuclear Research - Geneva OracleWorld Paris 2003.
CERN – European Laboratory for Particle Physics Administrative Information Services Implementing Oracle Workflow Derek Mathieson CERN - Switzerland.
PubMed/How to Search, Display, Download & (module 4.1)
1 LOMGen: A Learning Object Metadata Generator Applied to Computer Science Terminology A. Singh, H. Boley, V.C. Bhavsar National Research Council and University.
Classroom User Training June 29, 2005 Presented by:
Searching Databases. What is in the Library? The Online Library has thousands of journal articles and electronic books available for your use. Also available.
Product Feeds. What is a Product? In marketing terms, a product is an item, service or idea that is for sale Examples are: A flight with set dates and.
ROYAL SOCIETY OF CHEMISTRY
PubMed/How to Search, Display, Download & (module 4.1)
PubMed/How to Search, Display, Download & (module 4.1)
Oracle vs SQL Server Dr. Alex Wang. Oracle Text Oracle Text uses standard SQL to do almost everything. Full-text retrieval technology, deal with unstructured.
Advanced searching with Oracle Text Indexing and searching in text and documents Author: Krasen Paskalev Certified Oracle DBA Semantec.
Software. Generic Software  e.g. word processing, spreadsheet and database. – This simply implies that any of the dozens of spreadsheet packages, for.
NCSU Libraries Andrew Pace & Emily Lynema NCSU Libraries May 24, 2006.
CPS120: Introduction to Computer Science Lecture 19 Introduction to SQL.
RSC eBook Collection April 2007 RSC eBook Collection Over 700 Books c. 8,000 chapters c. 250,000 pages 10,000 items - tables.
´Google-ized´ search in your business data Author: Krasen Paskalev Certified Oracle 8i/9i DBA Seniour Oracle Consultant Semantec GmbH Benzstr.
Reports and Learning Resources Module 5 1. SLMS Primary Administrator Training Module 5: Reports and Learning Resources 2.
WebOPAC is computerized online catalogue of the materials held in library. The OPAC consist of an index of the bibliographic data cataloged in the system,
Computers in the Library A database application. Input and Output Devices Input Keyboard Mouse Scanner / light pen Output VDU / screen / monitor Printer.
Oracle 8i interMedia Text Presented by Jorge Rimblas 4-Feb-2002 SSI Worldwide.
SPRINGER ONLINE
OARE Module 4: Summon Searching. What is Summon? Summon is a Google-like search engine that provides fast, relevancy-ranked results: Enter the search.
Welcome to de Gruyter Reference Global. De Gruyter Reference Global provides you with comprehensive access to high quality academic content Run a quick.
INGENTA GATEWAY PORTAL
Searching the Internet. What is the best search tool?
Jean-Yves Le Meur - CERN Geneva Switzerland - GL'99 Conference 1.
CS520 Web Programming Full Text Search Chengyu Sun California State University, Los Angeles.
Introduction to Enterprise Search Corey Roth Blog: Twitter: twitter.com/coreyrothtwitter.com/coreyroth.
Advanced Informer Features
Searching the Internet
CS520 Web Programming Full Text Search
Using Social Care Online: an overview
Searching EBSCO eBooks
De Gruyter eBooks User Guide
Introducing at Semmelweis University
IS 360 Web Promotion.
Unlocking Hidden Gems in Oracle Text
Table of Contents: Part B
Library skills Search the catalogue. library skills Search the catalogue.
Searching the Internet
De Gruyter eBooks User Guide
Library skills Search the catalogue. library skills Search the catalogue.
Searching EIT, Author Gay Robertson, 2017.
1) What is a Database? A database is an organized collection of information about a subject. Examples: Address Book, Telephone Book.
De Gruyter eBooks User Guide
Platinum Sponsors Silver Sponsors Say Thanks to our Sponsors
Bibliography of British and Irish History
Bibliography of British and Irish History
Tutorial Searching for in EBSCOhost support.ebsco.com.
Title Introduction: Discussion & Conclusion: Methods & Results:
PubMed/How to Search, Display, Download & (module 4.1)
Welcome to SharePoint/O365 Saturday Kansas City!.
Presentation transcript:

CERN – European Organization for Nuclear Research Administrative Support - Advanced Information Systems Introduction to Oracle interMedia-Text By Derek Mathieson (AS-IDS)

CERN AIS The Problem Find X by keyword Y SELECT cod FROM bud_codes WHERE desc LIKE ‘%EDH%’; SELECT doc_id FROM edh_docs WHERE UPPER(short_desc) LIKE ‘%PRINTER%’; TOO SLOW! f1

CERN AIS The Solution Oracle inter Media-Text

CERN AIS Searching with interMedia-Text Rewritten query using interMedia- Text. SELECT doc_id FROM edh_docs WHERE CONTAINS( short_desc, ‘%PRINTER%’, 1) > 0; d3, d4, d5

CERN AIS Query Operators Algebraic Dictionary Other

CERN AIS Algebraic Query Operators AND, OR, NOT, MINUS Example: monitor NOT flat AS-IDS OR AS-SAS d6

CERN AIS Dictionary Query Operators ABOUT ABOUT(subatomic particles) matches text on the subject of physics Broader, Narrower, Related or Preferred Term BT(dog) Matches ‘dog’, ‘mammal, ‘animal’ d7

CERN AIS Dictionary Query Operators Stem stem(sing) matches ‘sing’ ‘sung’ or ‘sang’ Synonym SYN(tiger) matches ‘tiger’ ‘cat’, etc. Translated Term TR(chien) matches ‘chien’ or ‘dog’

CERN AIS Other Query Operators fuzzy, soundex ?apply matches ‘apply’ ‘apple’ ‘applied’ ‘April’ Wildcards math%, %day, %th%, _ing name

CERN AIS Other Query Operators NEAR((word1, word2,...) [, max_span [, order]]) NEAR((monday, tuesday, wednesday), 20, TRUE) WITHIN workflow WITHIN TITLE Derek WITHIN AUTHOR WITHIN BOOK Workflow Business process automation…

CERN AIS Sorting by Relevance SELECT doc_id FROM edh_docs WHERE CONTAINS( short_desc, ‘DOG, CAT, MOUSE’, 1) > 0;

CERN AIS Sorting by Relevance SELECT doc_id FROM edh_docs WHERE CONTAINS( short_desc, ‘DOG, CAT, MOUSE’, 1) > 0 ORDER BY SCORE(1) DESC;

CERN AIS Sorting by Relevance SELECT /*+ FIRST_ROWS */ doc_id FROM edh_docs WHERE CONTAINS( short_desc, ‘DOG, CAT, MOUSE’, 1) > 0 ORDER BY SCORE(1) DESC; acid

CERN AIS Creating Indexes Now built in to Oracle kernel NOT automatically updated after DML –Manually refreshed – ctxsrv process create index edh_docs_idx on edh_docs( short_desc ) indextype is ctxsys.context

CERN AIS Data Sources Column data (VARCHAR, CLOB, etc.) Detail Table External File URL

CERN AIS Data Types Text –ASCII, HTML, XML, … Microsoft –RTF, Word, Works, PowerPoint, Excel, Access, … Other –PDF, WordPerfect, Lotus 1-2-3, MacWrite, QuattroPro, dBASE, … Over 160 different File Formats!

CERN AIS Applications EDH Search Screens –Supplier by keyword, or partial address –Budget Code by description –Document by short description –Document by full text? What about YOUR application?

CERN AIS Thank You Browse to: /training/products/intermedia/listing.htm For More Information