Full-Text Search. Explained. Philipp

Size: px
Start display at page:

Download "Full-Text Search. Explained. Philipp"

Transcription

1 Full-Text Search Explained Philipp

2

3

4

5 Infrastructure Developer Advocate

6 ViennaDB Papers We Love Vienna

7 Who uses Databases?

8 Who uses Search?

9 Database vs Full-Text Search

10

11 But I can do... SELECT * FROM my_table WHERE my_text LIKE %my_term%

12

13 1. Performance B-Tree

14

15

16

17 2. Features Fuzziness, synonyms, scoring,...

18 Store

19 Indexing Remove formating

20 Indexing Tokenize

21 Indexing Stop words

22 Indexing Stemming

23 Indexing Synonyms

24

25 Apache Lucene Elasticsearch

26

27

28

29 --- version: '2' services: kibana: image: docker.elastic.co/kibana/kibana:5.2.1 links: - elasticsearch ports: :5601 elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:5.2.1 cap_add: - IPC_LOCK volumes: - esdata1:/usr/share/elasticsearch/data ports: :9200 volumes: esdata1: driver: local

30

31 Example These are <em>not</em> the droids you are looking for.

32 html_strip Char Filter These are not the droids you are looking for.

33 standard Tokenizer These are not the droids you are looking for

34 lowercase Token Filter these are not the droids you are looking for

35 stop Token Filter droids you looking

36 snowball Token Filter droid you look

37 GET /_analyze "char_filter": [ "html_strip" ], "tokenizer": "standard", "filter": [ "lowercase", "stop", "snowball" ], "text": "These are <em>not</em> the droids you are looking for."

38 "tokens": [ "token": "droid", "start_offset": 27, "end_offset": 33, "type": "<ALPHANUM>", "position": 4, "token": "you", "start_offset": 34, "end_offset": 37, "type": "<ALPHANUM>", "position": 5,... ]

39 Stop Words a, an, and, are, as, at, be, but, by, for, if, in, into, is, it, no, not, of, on, or, such, that, the, their, then, there, these, they, this, to, was, will, with

40 Russian Это не те дроиды, которых ты ищешь

41 Russian эт те дроид котор ищеш

42 GET /_analyze "analyzer": "russian", "text": "Это не те дроиды, которых ты ищешь"

43 "tokens": [ "token": "эт", "start_offset": 0, "end_offset": 3, "type": "<ALPHANUM>", "position": 0, "token": "те", "start_offset": 7, "end_offset": 9, "type": "<ALPHANUM>", "position": 2,... ]

44 German, please! Das sind nicht die Droiden, nach denen du suchst.

45 German, please! droid den such

46 GET /_analyze "analyzer": "german", "text": "Das sind nicht die Droiden, nach denen du suchst."

47 German with the English Analyzer das sind nicht die droiden nach denen du suchst

48 German Stop Words analysis/common/src/resources/org/apache/lucene/analysis/ snowball/german_stop.txt

49 Detecting Languages elasticsearch-ingest-langdetect

50 Another Example Obi-Wan hat mir nie erzählt, was mit meinem Vater geschehen ist.

51 Another Example obi wan nie erzahlt vat gescheh

52 Another Example Nein. Ich bin dein Vater

53 Another Example nein vat

54 Languages in 5.0 arabic, armenian, basque, brazilian, bulgarian, catalan, cjk, czech, danish, dutch, english, finnish, french, galician, german, greek, hindi, hungarian, indonesian, irish, italian, latvian, lithuanian, norwegian, persian, portuguese, romanian, russian, sorani, spanish, swedish, turkish, thai

55 Ukrainian Lucene 6.2 Elasticsearch 5.1

56 Another Example Obi-Wan never told you what happened to your father.

57 Another Example obi wan never told you what happen your father

58 Another Example <b>no</b>. I am your father.

59 Another Example i am your father

60 Language Rules English: Philipp's philipp French: l'église eglis German: äußerst ausserst

61 phonetic Token Filter Plugin

62 GET /_analyze "tokenizer": "standard", "filter": [ "type": "phonetic", "encoder": "metaphone", "replace": false ], "text": "Obi-Wan"

63 "tokens": [ "token": "OB", "start_offset": 0, "end_offset": 3, "type": "<ALPHANUM>", "position": 0, "token": "Obi", "start_offset": 0, "end_offset": 3, "type": "<ALPHANUM>", "position": 0, "token": "WN", "start_offset": 4, "end_offset": 7, "type": "<ALPHANUM>", "position": 1, "token": "Wan", "start_offset": 4, "end_offset": 7, "type": "<ALPHANUM>", "position": 1 ]

64 Elasticsearch Index, typ, mapping

65 Multi-Language Support One language per index One language per type One language per field

66 PUT /starwars "settings": "analysis": "filter": "my_synonym_filter": "type": "synonym", "synonyms": [ "droid,machine", "father,dad" ],

67 , "analyzer": "my_analyzer": "char_filter": [ "html_strip" ], "tokenizer": "standard", "filter": [ "lowercase", "stop", "snowball", "my_synonym_filter" ]

68 "mappings": "quotes": "properties": "quote": "type": "text", "analyzer": "my_analyzer"

69 GET /starwars/_mapping GET /starwars/_settings

70 PUT /starwars/quotes/1 "quote": "These are <em>not</em> the droids you are looking for." PUT /starwars/quotes/2 "quote": "Obi-Wan never told you what happened to your father." PUT /starwars/quotes/3 "quote": "<b>no</b>. I am your father."

71 GET /starwars/quotes/1 GET /starwars/quotes/1/_source

72 ID 1 ID 2 ID 3 am 0 0 1[2] droid 1[4] 0 0 father 0 1[9] 1[4] happen 0 1[6] 0 i 0 0 1[1] look 1[7] 0 0 never 0 1[2] 0 obi 0 1[0] 0 told 0 1[3] 0 wan 0 1[1] 0 what 0 1[5] 0 you 1[5] 1[4] 0 your 0 1[8] 1[3] Inverted Index

73 Search

74 POST /starwars/_search "query": "match_all":

75 GET vs POST

76 "took": 1, "timed_out": false, "_shards": "total": 5, "successful": 5, "failed": 0, "hits": "total": 3, "max_score": 1, "hits": [ "_index": "starwars", "_type": "my_type", "_id": "2", "_score": 1, "_source": "quote": "Obi-Wan never told you what happened to your father.",...

77 POST /starwars/_search "query": "match": "quote": "droid"

78 "took": 2, "timed_out": false, "_shards": "total": 5, "successful": 5, "failed": 0, "hits": "total": 1, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "1", "_score": , "_source": "quote": "These are <em>not</em> the droids you are looking for." ]

79 POST /starwars/_search "query": "match": "quote": "dad"

80 ... "hits": "total": 2, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "3", "_score": , "_source": "quote": "<b>no</b>. I am your father.", "_index": "starwars", "_type": "quotes", "_id": "2", "_score": , "_source": "quote": "Obi-Wan never told you what happened to your father." ]

81 POST /starwars/_search "query": "match_phrase": "quote": "I am your father"

82 "took": 3, "timed_out": false, "_shards": "total": 5, "successful": 5, "failed": 0, "hits": "total": 1, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "3", "_score": , "_source": "quote": "<b>no</b>. I am your father." ]

83 POST /starwars/_search "query": "match_phrase": "quote": "I am not your father"

84 "took": 15, "timed_out": false, "_shards": "total": 5, "successful": 5, "failed": 0, "hits": "total": 0, "max_score": null, "hits": []

85 POST /starwars/_search "query": "match_phrase": "quote": "query": "I am not your father", "slop": 1

86 "took": 5, "timed_out": false, "_shards": "total": 5, "successful": 5, "failed": 0, "hits": "total": 1, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "3", "_score": , "_source": "quote": "<b>no</b>. I am your father." ]

87 POST /starwars/_search "query": "match": "quote": "query": "van", "fuzziness": "AUTO"

88 "took": 14, "timed_out": false, "_shards": "total": 5, "successful": 5, "failed": 0, "hits": "total": 1, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "2", "_score": , "_source": "quote": "Obi-Wan never told you what happened to your father." ]

89 POST /starwars/_search "query": "match": "quote": "query": "ovi-van", "fuzziness": 1

90 "took": 109, "timed_out": false, "_shards": "total": 5, "successful": 5, "failed": 0, "hits": "total": 1, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "2", "_score": , "_source": "quote": "Obi-Wan never told you what happened to your father." ]

91 FuzzyQuery History Before: Brute force Now: Levenshtein Automaton

92 SELECT * FROM starwars WHERE quote LIKE "?an" OR quote LIKE "V?n" OR quote LIKE "Va?"

93 Scoring

94 Term Frequency / Inverse Document Frequency (TF/IDF) Search one term

95 BM25 Default in Elasticsearch 5.0

96 Term Frequency

97

98 Inverse Document Frequency

99

100 Field-Length Norm

101 Putting it Together score(q,d) = querynorm(q) coord(q,d) ( tf(t in d) idf(t)² t.getboost() norm(t,d) ) (t in q)

102 POST /starwars/_search?explain "query": "match": "quote": "father"

103 ... "_explanation": "value": , "description": "weight(synonym(quote:dad quote:father) in 0) [PerFieldSimilarity], result of:", "details": [ "value": , "description": "score(doc=0,freq=2.0 = termfreq=2.0\n), product of:", "details": [ "value": , "description": "idf(docfreq=1, doccount=1)", "details": [], "value": , "description": "tfnorm, computed from:", "details": [ "value": 2, "description": "termfreq=2.0", "details": [],...

104 Score : i am your father : obi wan never told you what happen your father

105 Vector Space Model Search multiple terms

106 Score each term Vectorize Calculate angle

107 Search your father

108

109 Function Score Script, weight, random, field value, decay (geo or date)

110 POST /starwars/_search "query": "function_score": "query": "match": "quote": "father", "random_score":

111 More Features

112 POST /starwars/_search "query": "match": "quote": "father", "highlight": "pre_tags": [ "<tag>" ], "post_tags": [ "</tag>" ], "fields": "quote":

113 ... "hits": [ "_index": "starwars", "_type": "quotes", "_id": "3", "_score": , "_source": "quote": "<b>no</b>. I am your father.", "highlight": "quote": [ "<b>no</b>. I am your <tag>father</tag>." ],...

114 Boolean Queries must must_not should filter

115 POST /starwars/_search "query": "bool": "must": "match": "quote": "query": "father", "should": [ "match": "quote": "query": "your", "match": "quote": "query": "obi" ]

116 ... "hits": "total": 2, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "2", "_score": , "_source": "quote": "Obi-Wan never told you what happened to your father.", "_index": "starwars", "_type": "quotes", "_id": "3", "_score": , "_source": "quote": "<b>no</b>. I am your father." ]

117 POST /starwars/_search "query": "bool": "filter": "match": "quote": "query": "father", "should": [ "match": "quote": "query": "your", "match": "quote": "query": "obi" ]

118 ... "hits": "total": 2, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "2", "_score": , "_source": "quote": "Obi-Wan never told you what happened to your father.", "_index": "starwars", "_type": "quotes", "_id": "3", "_score": , "_source": "quote": "<b>no</b>. I am your father." ]

119 POST /starwars/_search "query": "bool": "must": "match": "quote": "query": "father", "should": [ "match": "quote": "query": "your", "match": "quote": "query": "obi", "match": "quote": "query": "droid" ], "minimum_number_should_match": 2

120 ... "hits": "total": 1, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "2", "_score": , "_source": "quote": "Obi-Wan never told you what happened to your father." ]

121 Boosting Default 1 greater or smaller

122 POST /starwars/_search "query": "bool": "must": "match": "quote": "query": "father", "should": [ "match": "quote": "query": "your", "match": "quote": "query": "obi", "boost": 3 ]

123 ... "hits": "total": 2, "max_score": , "hits": [ "_index": "starwars", "_type": "quotes", "_id": "2", "_score": , "_source": "quote": "Obi-Wan never told you what happened to your father.", "_index": "starwars", "_type": "quotes", "_id": "3", "_score": , "_source": "quote": "<b>no</b>. I am your father." ]

124 Suggestion Suggest a similar text _search end point _suggest deprecated

125 POST /starwars/_search "query": "match": "quote": "fath", "suggest": "my_suggestion" : "text" : "drui", "term" : "field" : "quote"

126 ... "hits": "total": 0, "max_score": null, "hits": [], "suggest": "my_suggestion": [ "text": "drui", "offset": 0, "length": 4, "options": [ "text": "droid", "score": 0.5, "freq": 1 ] ]

127 NGram Partial matches Trigram Edge Gram

128 GET /_analyze "char_filter": [ "html_strip" ], "tokenizer": "type": "ngram", "min_gram": "3", "max_gram": "3", "token_chars": [ "letter" ], "filter": [ "lowercase" ], "text": "These are <em>not</em> the droids you are looking for."

129 "tokens": [ "token": "the", "start_offset": 0, "end_offset": 3, "type": "word", "position": 0, "token": "hes", "start_offset": 1, "end_offset": 4, "type": "word", "position": 1, "token": "ese", "start_offset": 2, "end_offset": 5, "type": "word", "position": 2, "token": "are", "start_offset": 6, "end_offset": 9, "type": "word", "position": 3,...

130 GET /_analyze "char_filter": [ "html_strip" ], "tokenizer": "type": "edge_ngram", "min_gram": "1", "max_gram": "3", "token_chars": [ "letter" ], "filter": [ "lowercase" ], "text": "These are <em>not</em> the droids you are looking for."

131 "tokens": [ "token": "t", "start_offset": 0, "end_offset": 1, "type": "word", "position": 0, "token": "th", "start_offset": 0, "end_offset": 2, "type": "word", "position": 1, "token": "the", "start_offset": 0, "end_offset": 3, "type": "word", "position": 2, "token": "a", "start_offset": 6, "end_offset": 7, "type": "word", "position": 3, "token": "ar", "start_offset": 6, "end_offset": 8, "type": "word", "position": 4,...

132 Conclusion

133 Indexing Formatting Tokenize Lowercase, Stop Words, Stemming Synonyms

134 Scoring Term Frequency Inverse Document Frequency Field-Length Norm Vector Space Model

135 Querying Match: Phrase, Slop, Fuzziness Boolean Suggestion NGram

136 Danke! Questions? Philipp PS: Stickers

137 Image Credits Schnitzel Architecture Conchita

2. bizhub Remote Access Function Support List

2. bizhub Remote Access Function Support List 2. bizhub Remote Access Function Support List MFP Function Support List for bizhub Remote Access Basic s MFP model Firmware v C754/ C654/ C754e/ C654e 754/ 654 C554/ C454/ C364/ C284/ C224 (*5) A1610Y

More information

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS

ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS ADOBE READER AND ACROBAT 8.X AND 9.X SYSTEM REQUIREMENTS Table of Contents OVERVIEW... 1 Baseline requirements beginning with 9.3.2 and 8.2.2... 2 System requirements... 2 9.3.2... 2 8.2.2... 3 Supported

More information

Google Search Appliance

Google Search Appliance Google Search Appliance Search Appliance Internationalization Google Search Appliance software version 7.2 and later Google, Inc. 1600 Amphitheatre Parkway Mountain View, CA 94043 www.google.com GSA-INTL_200.01

More information

Talk2You User Manual Smartphone / Tablet

Talk2You User Manual Smartphone / Tablet Talk2You User Manual Smartphone / Tablet Don t Translate it. Lingmo It! language translation technology for the global market The World s First Translating Voice Messaging Software Communicate with cross-border

More information

RELEASE NOTES UFED ANALYTICS DESKTOP SAVE TIME AND RESOURCES WITH ADVANCED IMAGE ANALYTICS HIGHLIGHTS

RELEASE NOTES UFED ANALYTICS DESKTOP SAVE TIME AND RESOURCES WITH ADVANCED IMAGE ANALYTICS HIGHLIGHTS RELEASE NOTES Version 5.2 September 2016 UFED ANALYTICS DESKTOP HIGHLIGHTS UFED Analytics Desktop version 5.2 serves as your virtual partner, saving precious time in the investigative process. Designed

More information

Microsoft Store badge guidelines. October 2017

Microsoft Store badge guidelines. October 2017 Microsoft Store badge guidelines October 2017 Welcome Together we can do amazing things. Millions of fans and thousands of partners and developers across the world empower people and organizations do great

More information

Hik-Connect Mobile Client

Hik-Connect Mobile Client Hik-Connect Mobile Client SPEC V3.6.3 Name: Hik-Connect Mobile Client Software Version: V3.6.3 Android: System Requirement: Android 4.1 or Above ios: System Requirement: ios 8.0 or Above Software Information

More information

8KMiles Software Services, Inc

8KMiles Software Services, Inc 8KMiles Software Services, Inc Comparison Report TABLE OF CONTENTS Smackdown... 3 Introduction... 5 Search features 1-1 comparison... 6 Feature 1: Getting Started... 7 Feature 2: Operations and Management...

More information

A comparison of open source or free GIS software packages. Acknowledgements:

A comparison of open source or free GIS software packages. Acknowledgements: A comparison of open source or free GIS software packages Acknowledgements: Shane Bradt New Hampshire Geospatial Extension Specialist The New Hampshire Geospatial Extension Program sbradt@ceunh.unh.edu

More information

GV-Center V2 INTRODUCTION GV CENTER V2 VS. GV CENTER V2 PRO

GV-Center V2 INTRODUCTION GV CENTER V2 VS. GV CENTER V2 PRO -1- GV-Center V2 INTRODUCTION While GV Center V2 Pro is a professional version for a large central monitoring network such as alarm services companies or chain stores, GV Center V2 is a standard version

More information

PROFICIENCY TESTING IN FOREIGN LANGUAGES

PROFICIENCY TESTING IN FOREIGN LANGUAGES REGISTRATION FORM PERSONAL INFORMATION Ms. Mr. Last Date of Birth First Middle PROFICIENCY TESTING IN FOREIGN LANGUAGES Social Security, NYU Student ID Number, or Passport Number Home Work Language to

More information

Guide & User Instructions

Guide & User Instructions Guide & User Instructions Revised 06/2012 726 Grant Street Troy Ohio 45373 877.698.3262 937.335.3887 onecallnow.com support@onecallnow.com America s Largest Message Notification Provider Copyright 2009-2012

More information

Licensed Program Specifications

Licensed Program Specifications AFP Font Collection for MVS, OS/390, VM, and VSE Program Number 5648-B33 Licensed Program Specifications AFP Font Collection for MVS, OS/390, VM, and VSE, hereafter referred to as AFP Font Collection,

More information

www.locwaydtp.com locway@locwaydtp.com We are and this is our Company Presentation Brief About Us LocWay is a localization company focused on projects coordination, Translation and Desktop Publishing (DTP)

More information

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao

American Philatelic Society Translation Committee. Annual Report Prepared by Bobby Liao American Philatelic Society Translation Committee Annual Report 2012 Prepared by Bobby Liao - 1 - Table of Contents: 1. Executive Summary 2. Translation Committee Activities Summary July 2011 June 2012

More information

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( )

Hik-Connect Client Software V (Android) V (iOS) Release Notes ( ) Hik-Connect Client Software V3.1.0 0828(Android) V3.1.0 170830(iOS) Release Notes (2017-09-07) Hik-Connect Version 3.1.0: Optimize Login Page Hik-Connect account and email address are displayed default,

More information

ipod touch 16GB - Technical Specifications

ipod touch 16GB - Technical Specifications ipod touch 16GB - Technical Specifications Size and Weight Height: 4.86 inches (123.4 mm) Width: 2.31 inches (58.6 mm) Depth: 0.24 inch (6.1 mm) Weight: 3.04 ounces (86 grams) Capacity 16GB Wireless 802.11a/b/g/n

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

QT8716. NVR Technology IP Channels 16 (32) Recording Resolution 720p / 1080p / 3MP / 4MP Live Viewing Resolution 1080p. Live Display FPS.

QT8716. NVR Technology IP Channels 16 (32) Recording Resolution 720p / 1080p / 3MP / 4MP Live Viewing Resolution 1080p. Live Display FPS. QT8716 NVR Technology IP Channels 16 (32) Recording Resolution 720p / 1080p / 3MP / 4MP Live Viewing Resolution 1080p Live Display FPS per Channel Hard Drive Supports 8 HDD up to 6TB each Remote Monitoring

More information

Models HP Engage One Top Mount 2x20 CFD (Black) HP Engage One Top Mount 2x20 CFD (White)

Models HP Engage One Top Mount 2x20 CFD (Black) HP Engage One Top Mount 2x20 CFD (White) Overview Models (Black) (White) 1RL95AA 3GS18AA Introduction Frame easily readable price, product, and order information for customers on the, HP s smallest and thinnest CFD, designed to complement your

More information

InterKey 2.0 for Windows Mobile Pocket PC devices

InterKey 2.0 for Windows Mobile Pocket PC devices Copyright 2005-2006 Paragon Software (Smart Handheld Devices Division) InterKey 2.0 for Windows Mobile Dear customers! Thank you for buying our software. It is your interest that inspires us to develop

More information

Localizing Intellicus. Version: 7.3

Localizing Intellicus. Version: 7.3 Localizing Intellicus Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

Nitti Mostro Designer Pieter van Rosmalen. OpenType PostScript (otf), TrueType (ttf), woff, eot

Nitti Mostro Designer Pieter van Rosmalen. OpenType PostScript (otf), TrueType (ttf), woff, eot bold monday Nitti Mostro Designer Pieter van Rosmalen design year 2015 about Format Without a doubt, Nitti Mostro is the boldest family in our Nitti series yet. And the most fun. Eighteen styles in total

More information

FAST Search for SharePoint >> SharePoint search on steroids. Bjørn Olav Kåsin Microsoft Enterprise Search Group Jan 15 th 2010

FAST Search for SharePoint >> SharePoint search on steroids. Bjørn Olav Kåsin Microsoft Enterprise Search Group Jan 15 th 2010 FAST Search for SharePoint >> SharePoint search on steroids Bjørn Olav Kåsin Microsoft Enterprise Search Group Jan 15 th 2010 Products for Every Customer Need Complete intranet search High end search delivered

More information

Goal of this document: A simple yet effective

Goal of this document: A simple yet effective INTRODUCTION TO ELK STACK Goal of this document: A simple yet effective document for folks who want to learn basics of ELK (Elasticsearch, Logstash and Kibana) without any prior knowledge. Introduction:

More information

Interactive Whiteboard Module ViewSync vtouch

Interactive Whiteboard Module ViewSync vtouch Interactive Whiteboard Module ViewSync vtouch vtouch, an interactive whiteboard module compatible with all short throw projectors from any manufacturer, offers educators an easy-to-use interactive projection

More information

This bulletin was created to inform you of the release of the new version 4.30 of the Epson EMP Monitor software utility.

This bulletin was created to inform you of the release of the new version 4.30 of the Epson EMP Monitor software utility. EPSON PRODUCT SUPPORT BULLETIN Date: 04/20/2009 Originator: JAM PSB #: PSB.2009.06.001 Authorization: Reference: TI 09-05e Rev. A/B Total Pages: 5 Product(s): PowerLite 735c / Cinema 500 / 737c / 745c

More information

Release Notes MimioStudio Software

Release Notes MimioStudio Software Release Notes MimioStudio 8.0.1 Software Copyright Notice 2011 DYMO/Mimio, a Newell Rubbermaid company About MimioStudio 8.0.1 Welcome to MimioStudio 8.0.1 software! Version 8.0.1 is an update to the existing

More information

KYOCERA Quick Scan v1.0

KYOCERA Quick Scan v1.0 KYOCERA Quick Scan v1.0 Software Information PC Name Version 0731 July 31, 2018 KYOCERA Document Solutions Inc. Product Planning Division 1 Table of Contents 1. Overview... 4 1.1. Background... 4 1.2.

More information

Perceptive Intelligent Capture Visibility

Perceptive Intelligent Capture Visibility Perceptive Intelligent Capture Visibility Technical Specifications Version: 3.1.x Written by: Product Knowledge, R&D Date: August 2018 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark

More information

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus

Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Transfer Manual Norman Endpoint Protection Transfer to Avast Business Antivirus Pro Plus Summary This document outlines the necessary steps for transferring your Norman Endpoint Protection product to Avast

More information

The SAP Knowledge Acceleration, website package, can be deployed to any web server, file server, CD-ROM, or a user workstation.

The SAP Knowledge Acceleration, website package, can be deployed to any web server, file server, CD-ROM, or a user workstation. SAP KNOWLEDGE ACCELERATION TECHNICAL SPECIFICATIONS In this guide, you will learn about hardware and software requirements for SAP Knowledge Acceleration (KA). SAP Knowledge Acceleration (KA) is a web-based

More information

Bryant Condensed. From The Process Type Foundry

Bryant Condensed. From The Process Type Foundry Bryant Condensed From The Process Type Foundry Designer Eric Olson Format Cross Platform OpenType Styles & Weights 4 weights AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz01 AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz0

More information

Complete Messaging Solution

Complete Messaging Solution ervice Mailvice Service & Operations Voice Your customers and clients expect their calls to be handled quickly or routed to the appropriate person or department. This is where ITS Telecom and Systems can

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.1.2 Features Notes The latest INSITE information can be found on the website at http://insite.cummins.com For technical support, please send an email to servicetoolsupport@cummins.com or call

More information

Profiling Web Archive Coverage for Top-Level Domain & Content Language

Profiling Web Archive Coverage for Top-Level Domain & Content Language Old Dominion University ODU Digital Commons Computer Science Presentations Computer Science 9-23-2013 Profiling Web Archive Coverage for Top-Level Domain & Content Language Ahmed AlSum Old Dominion University

More information

Oracle Access Manager

Oracle Access Manager Oracle Access Manager Addendum to Release Notes 10g (10.1.4.0.1) January 2007 This document is an addendum to the Release Notes for Oracle Access Manager 10g (10.1.4.0.1). It contains the following sections:

More information

Simple manual for ML members(mailman)

Simple manual for ML members(mailman) Simple manual for ML members(mailman) Version 4.2 (Mailing List Service) Academic Computing & Communications Center University of Tsukuba 28/11/2016 Index 1. Introduction... 1 2. What is Mailing list?...

More information

PORTABLE VIDEO BORESCOPE. User Manual

PORTABLE VIDEO BORESCOPE. User Manual PORTABLE VIDEO BORESCOPE User Manual CONTENTS Product Overview---------------------------------2 First Time Use--------------------------------------3 System Mode---------------------------------------5

More information

FS-1100 / FS-1300D Product Library

FS-1100 / FS-1300D Product Library FS-1100 / FS-1300D Product Library Version 1.1 EUR / 29.01.2008 Release Notes CD Contents Operating System(s): Version: (1) Printer Drivers: KX Printer Driver (Generic) Windows 98, Me, NT4 4.2.1409b KX

More information

Automatic Reader. Multi Lingual OCR System.

Automatic Reader. Multi Lingual OCR System. Automatic Reader Multi Lingual OCR System What is the Automatic Reader? Sakhr s Automatic Reader transforms scanned images into a grid of millions of dots, optically recognizes the characters found in

More information

INSITE Features Notes

INSITE Features Notes INSITE 8.3.0 Features Notes The latest INSITE information can be found on the website at http://insite.cummins.com. For technical support, please send an email to servicetoolsupport@cummins.com or call

More information

Brainware Intelligent Capture

Brainware Intelligent Capture Brainware Intelligent Capture Technical s Version: 5.8.1 Written by: Product Knowledge, R&D Date: Tuesday, February 20, 2018 2017 Hyland Software, Inc. and its affiliates. Perceptive Intelligent Capture

More information

QuickSpecs. HP Retail Integrated 2x20 Display. Overview. Front. 1. 2X20 LCD, backlit display. 2. USB connector

QuickSpecs. HP Retail Integrated 2x20 Display. Overview. Front. 1. 2X20 LCD, backlit display. 2. USB connector Overview Front 1. 2X20 LCD, backlit display 2. USB connector c04310460 Worldwide Version 2 June 16,2016 Page 1 Overview Shown on back of RP7, Retail System Models (Non-Complex) (Complex) G6U79AA G7G29AA

More information

Perceptive Intelligent Capture

Perceptive Intelligent Capture Perceptive Intelligent Capture Technical s Version: 5.7.1 Written by: Product Knowledge, R&D Date: Tuesday, February 20, 2018 2018 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

Complete Messaging Solution

Complete Messaging Solution ervice Mailvice Service & Operations Voice Your customers and clients expect their calls to be handled quickly or routed to the appropriate person or department. This is where ITS Telecom and Systems can

More information

Multilingual Support Configuration For IM and Presence Service

Multilingual Support Configuration For IM and Presence Service Multilingual Support Configuration For IM and Presence Service Install Locale Installer on IM and Presence Service, page 1 Error Messages, page 3 Localized Applications, page 5 Install Locale Installer

More information

10 Steps to Document Translation Success

10 Steps to Document Translation Success 10 Steps to Document Translation Success www.globalizationpartners.com 10 Steps to Document Translation Success Copyright 2016-2017 Globalization Partners International. All rights reserved. This ebook

More information

MaintSmart. Enterprise. User. Guide. for the MaintSmart Translator. version 4.0. How does the translator work?...2 What languages are supported?..

MaintSmart. Enterprise. User. Guide. for the MaintSmart Translator. version 4.0. How does the translator work?...2 What languages are supported?.. How does the translator work?......2 What languages are supported?..3 MaintSmart User Enterprise Guide version 4.0 for the MaintSmart Translator 1 MaintSmart Translator - An Overview. How does it work?

More information

System Demonstration TRADOS TRANSLATOR'S WORKBENCH

System Demonstration TRADOS TRANSLATOR'S WORKBENCH System Demonstration TRADOS TRANSLATOR'S WORKBENCH Mark Berry MCB Systems 1. System Builders and Contacts Developer TRADOS GmbH Tel. +49 (711) 168 77-0 Hackländerstrasse 17 Fax +49 (711) 168 77-50 D-70187

More information

Release Notes MimioStudio 9.1 Software

Release Notes MimioStudio 9.1 Software Release Notes MimioStudio 9.1 Software Copyright Notice 2012 DYMO/Mimio, a Newell Rubbermaid company About MimioStudio 9.1 I m in love with this! That s what one teacher exclaimed after using MimioStudio

More information

DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE DINO-LITE SOFTWARE

DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE DINO-LITE SOFTWARE FOTO SCHERM MET SOFTWARE 59 A professional, reliable software environment is essential when working with computer equipment like an USB microscope. All Dino-Lite USB products are delivered with an in-house

More information

Section Software

Section Software 4800 Software Language Standard Sets FS-4-8-014-01 4800 STANDARD SET ENGLISH/CROATIAN V1.2 FS-4-8-016-01 4800 STANDARD SET ENGLISH/DANISH V1.2 FS-4-8-004-03 4800 STANDARD SET ENGLISH/DUTCH V1.2 FS-4-8-002-03

More information

KIWI Smartphone FAQs V1.1 HUAWEI TECHNOLOGIES CO., LTD. Software Engineering Documentation Dept. Date December 2015

KIWI Smartphone FAQs V1.1 HUAWEI TECHNOLOGIES CO., LTD. Software Engineering Documentation Dept. Date December 2015 KIWI Smartphone FAQs V1.1 Author Software Engineering Documentation Dept Date December 2015 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2015. All rights reserved. No part of this

More information

Chevin Pro. a type specimen. 1

Chevin Pro. a type specimen. 1 a type specimen info@g-type.com 1 Introduction Light 11/13 pt Chevin is a modern, rounded type family in 6 weights which was designed with functionality and legibility in mind. With its open counters and

More information

USER GUIDE PUBLIC Document Version: SAP Translation Hub SAP SE or an SAP affiliate company. All rights reserved.

USER GUIDE PUBLIC Document Version: SAP Translation Hub SAP SE or an SAP affiliate company. All rights reserved. USER GUIDE PUBLIC Document Version: 1807 2018-08-22 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1.... 4 1.1 What's New for.... 4 Release Notes - 2017....8 1.2 Getting

More information

iphone 5 Specifications

iphone 5 Specifications iphone 5 Specifications Size and Weight! Height: 4.87 inches (123.8 mm)! Width: 2.31 inches (58.6 mm)! Depth: 0.30 inch (7.6 mm)! Weight: 3.95 ounces (112 grams) Cellular and Wireless! GSM model A1428*:

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 2 Copyright 2011, Oracle and/or its affiliates. All rights reserved. Oracle E-Business Suite Internationalization and Multilingual Features

More information

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.0 February 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.0 Introduction The LiveEngage platform aims to provide

More information

Language support and linguistics

Language support and linguistics Language support and linguistics in Lucene, Solr and ElasticSearch and the eco-system June 3rd, 2013 Christian Moen cm@atilika.com About me MSc. in computer science, University of Oslo, Norway Worked with

More information

GLOBAL NETFLIX PREFERRED VENDOR (NPV) RATE CARD:

GLOBAL NETFLIX PREFERRED VENDOR (NPV) RATE CARD: Global Rate Card Timed Text Origination Rates Audio Description Rates Netflix Scope of Work Guidelines A/V Materials Timed Text Audio Materials Trailers Forced Narratives NPV SLA & KPIs GLOBAL NETFLIX

More information

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.6 May 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.3 Introduction The LiveEngage platform aims to provide the

More information

1.1 Create a New Survey: Getting Started. To create a new survey, you can use one of two methods: a) Click Author on the navigation bar.

1.1 Create a New Survey: Getting Started. To create a new survey, you can use one of two methods: a) Click Author on the navigation bar. 1. Survey Authoring Section 1 of this User Guide provides step-by-step instructions on how to author your survey. Surveys can be created using questions and response choices you develop; copying content

More information

QuickSpecs. HP Graphical POS Pole Display. Models

QuickSpecs. HP Graphical POS Pole Display. Models Overview Models QZ704AA Introduction The is a stylish and durable 2-line customer-facing display. Key Features and Benefits The display delivers clear, easy-to-read text and graphics for displaying product

More information

Multilingual Support Configuration For IM and Presence Service

Multilingual Support Configuration For IM and Presence Service Multilingual Support Configuration For IM and Presence Service Locale Installation, page 1 Install Locale Installer on IM and Presence Service, page 3 Error Messages, page 5 Localized Applications, page

More information

SmartPSS. Smart Professional Surveillance System. Provide efficient device management, monitoring, playback, alarm, video analytics, video wall, etc.

SmartPSS. Smart Professional Surveillance System. Provide efficient device management, monitoring, playback, alarm, video analytics, video wall, etc. SmartPSS Smart Professional Surveillance System An easy-to-use security surveillance application with friendly interface. Designed for small or medium daily-use system. Provide efficient device management,

More information

Formatting Custom List Information.

Formatting Custom List Information. Hello. MailChimp has a lot of great merge tags that can help you customize your email campaigns. You can use MailChimp s merge tags to dynamically add content to your email. Include something as simple

More information

Inkjet Printer UX Series PREMIUM CLASS. Coding Solutions by Hitachi

Inkjet Printer UX Series PREMIUM CLASS. Coding Solutions by Hitachi Inkjet Printer UX Series PREMIUM CLASS UX Coding Solutions by Hitachi Efficient Clean & Easy Cartridge System With our smart consumable cartridge system mistakes are no longer possible. No risk printing

More information

Localization: How do I translate Magento interface? Magento localization tips

Localization: How do I translate Magento interface? Magento localization tips Magento interface is translated with CSV localization files (installed as extension in Magento Connect Manager) or using buit-in Inline translation tool. To learn how to enable inline translation please

More information

Instructions for Upgrading BladeUPS Firmware

Instructions for Upgrading BladeUPS Firmware All Blade UPS in a parallel system must have the same version of firmware. If installing a new UPS module into an existing system, which has a different firmware level, the new UPS will alarm Software

More information

Organon Sans. a type specimen. 1

Organon Sans. a type specimen. 1 a type specimen info@g-type.com 1 Introduction Light 11/13 pt Bold Caps & Small Caps 75/65 pt The six weight typeface is a stylish, legible and feature-laden OpenType family which complements its sister,

More information

Microsoft Academic Select Enrollment

Microsoft Academic Select Enrollment Microsoft Academic Select Enrollment Academic Select Agreement number Reseller or Microsoft affiliate to complete Academic Select Agreement Expiration Date Reseller or Microsoft affiliate to complete Enrollment

More information

User guide on how to generate PDF versions of the product information - veterinary

User guide on how to generate PDF versions of the product information - veterinary 03 February 2011 EMA/793983/2010 v.1.0 Patient Health Protection User guide on how to generate PDF versions of the product information - veterinary Introduction Since the product information consists of

More information

IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009)

IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009) IBM DB2 Web Query for System i V1R1M0 and V1R1M1 Install Instructions (updated 08/21/2009) Installation & Setup Review all instructions before starting the install of DB2 Web Query. Complete these steps

More information

DeskApp Admin Manual. Release 1.0 final. Kopano

DeskApp Admin Manual. Release 1.0 final. Kopano DeskApp Admin Manual Release 1.0 final Kopano Feb 21, 2018 Contents 1 Introduction 2 2 System requirements 3 2.1 WebApp............................................... 3 2.2 Operating system...........................................

More information

Heimat Didone Heimat Display Heimat Sans Heimat Mono Heimat Stencil

Heimat Didone Heimat Display Heimat Sans Heimat Mono Heimat Stencil Atlas Font Foundry Heimat Didone Heimat Display Heimat Sans Heimat Mono Heimat Stencil abcdefghijklmnopqrstuvwxyzßfbfifkflft 1234567890#$ àáâãäåāăąǻ ABCDEFGHIJKLMNOPQRSTUVWYZ& 1234567890@.,:;!?)]} * Heimat

More information

12 Steps to Software Translation Success

12 Steps to Software Translation Success 12 Steps to Software Translation Success www.globalizationpartners.com 12 Steps to Software Translation Success Copyright 2016-2017 Globalization Partners International. All rights reserved. This ebook

More information

Hibernate Search: A Successful Search, a Happy User Make it Happen!

Hibernate Search: A Successful Search, a Happy User Make it Happen! Hibernate Search: A Successful Search, a Happy User Make it Happen! Emmanuel Bernard Lead Developer at JBoss by Red Hat September 2nd 2009 1 Emmanuel Bernard Hibernate Search in Action blog.emmanuelbernard.com

More information

DocuSign Service User Guide. Information Guide

DocuSign Service User Guide. Information Guide Information Guide 1 DocuSign Service User Guide 1 Copyright 2003-2013 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights and patents refer to the DocuSign Intellectual

More information

iphone 3GS - Technical Specifications

iphone 3GS - Technical Specifications iphone 3GS - Technical Specifications Size and weight 1 Height: 4.5 inches (115.5 mm) Width: 2.4 inches (62.1 mm) Depth: 0.48 inch (12.3 mm) Weight: 4.8 ounces (135 grams) Cellular and wireless UMTS/HSDPA

More information

Project Name SmartPSS

Project Name SmartPSS V2.00.1 Language Farsi, Arabic, Russian, Japanese, Korean, Turkish, Vietnamese, Thai, Indonesian, Traditional Chinese, Hebrew, Spanish, Portuguese, French, Dutch, Italian, German, Czech, Slovakia, Hungarian,

More information

GV-EFD2100 Series 2MP H.264 Low Lux WDR IR Mini Fixed IP Dome

GV-EFD2100 Series 2MP H.264 Low Lux WDR IR Mini Fixed IP Dome GV-EFD2100 Series 2MP H.264 Low Lux WDR IR Mini Fixed IP Dome 1/2.8 progressive scan low lux CMOS Dual streams from H.264 and MJPEG Up to 25 fps at 1920 x 1080 Intelligent IR Day and Night function (with

More information

EBSCOhost User Guide Searching. support.ebsco.com. Last Updated 10/31/12

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

More information

Height: 9.50 inches (241.2 mm) Width: 7.31 inches (185.7 mm) Depth: 0.37 inch (9.4 mm) Weight: 1.44 pounds (652 g) Height: 9.50 inches (241.

Height: 9.50 inches (241.2 mm) Width: 7.31 inches (185.7 mm) Depth: 0.37 inch (9.4 mm) Weight: 1.44 pounds (652 g) Height: 9.50 inches (241. Height: 1 Width: Depth: Weight: Height: Width: Depth: Weight: 9.50 inches (241.2 mm) 7.31 inches (185.7 mm) 0.37 inch (9.4 mm) 1.44 pounds (652 g) 9.50 inches (241.2 mm) 7.31 inches (185.7 mm) 0.37 inch

More information

GV-FE520 5MP H.264 Fisheye IP Camera

GV-FE520 5MP H.264 Fisheye IP Camera - 1 - GV-FE520 5MP H.264 Fisheye IP Camera * GV FE520 is excluded from Japan, EU and German market. Introduction The GV FE520 is a fisheye camera that allows you to monitor all angles of a location using

More information

RDA DEVELOPMENTS OF NOTE P RESENTED TO CC:DA B Y KATHY GLENNAN, ALA REPRESENTATIVE TO THE RSC J ANUARY 21, 2017

RDA DEVELOPMENTS OF NOTE P RESENTED TO CC:DA B Y KATHY GLENNAN, ALA REPRESENTATIVE TO THE RSC J ANUARY 21, 2017 RDA DEVELOPMENTS OF NOTE P RESENTED TO CC:DA B Y KATHY GLENNAN, ALA REPRESENTATIVE TO THE RSC J ANUARY 21, 2017 SYNCHRONIZING THE OPEN METADATA REGISTRY AND THE RDA TOOLKIT OPEN METADATA REGISTRY & RDA

More information

QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ)

QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ) QUICK REFERENCE GUIDE: SHELL SUPPLIER PROFILE QUESTIONNAIRE (SPQ) July 2018 July 2018 1 SPQ OVERVIEW July 2018 2 WHAT IS THE SHELL SUPPLIER PROFILE QUESTIONNAIRE? Shell needs all potential and existing

More information

SourceOne. Products Compatibility Guide REV 61

SourceOne. Products Compatibility Guide REV 61 SourceOne Products Compatibility Guide 300-008-041 REV 61 Copyright 2005-2017 Dell Inc. or its subsidiaries All rights reserved. Published December 2017 Dell believes the information in this publication

More information

GV-Hot Swap Recording Server System V5 (Rev.D) 4U, 20-Bay

GV-Hot Swap Recording Server System V5 (Rev.D) 4U, 20-Bay -1- GV-Hot Swap Recording Server System V5 (Rev.D) 4U, 20-Bay INTRODUCTION The GV-Hot Swap Recording Server System is a video streaming server supported by a powerful data storage capacity and designed

More information

SourceOne. Products Compatibility Guide REV 62

SourceOne. Products Compatibility Guide REV 62 SourceOne Products Compatibility Guide 300-008-041 REV 62 Copyright 2005-2018 Dell Inc. or its subsidiaries All rights reserved. Published March 2018 Dell believes the information in this publication is

More information

SARCASTIC 1 OF 9 FONTS.BARNBROOK.NET

SARCASTIC 1 OF 9 FONTS.BARNBROOK.NET s 1 OF 9 Sarcastic? I bet you won t mention that it is based on 1950s script typography and the rhythmic forms of interconnected neon lettering. With absolutely none of it interpreted in a contemporary

More information

GV-FE4301 4MP H.264 WDR Fisheye IP Camera

GV-FE4301 4MP H.264 WDR Fisheye IP Camera - 1 - GV-FE4301 4MP H.264 WDR Fisheye IP Camera Introduction The GV-FE4301 is a fisheye camera that allows you to monitor all angles of a location using just one camera. The distorted hemispherical image

More information

INTERNATIONAL LANGUAGE PRODUCT LIST

INTERNATIONAL LANGUAGE PRODUCT LIST INTERNATIONAL LANGUAGE PRODUCT LIST Contact alpha@koorong.com.au to purchase any of these products Page 1 CONTENTS AMERICAS Page 3 ASIA PACIFIC Page 4 AFRICA Page 9 EUROPE Page 10 MIDDLE EAST Page 18 Page

More information

I N T R O D U C T I O N

I N T R O D U C T I O N I N T R O D U C T I O N What do you need for a label? Information about the product o Product code, size, lot, barcode (if applicable) Information regarding compositions o An indication of the fibre content

More information

winra-system requirements

winra-system requirements Choose a building block. Author: Wolters Kluwer Deutschland GmbH E Mail: anwendersupport.softwarerecht@wolterskluwer.com winra Legal Department Software winra-system requirements Version 6.0, September

More information

Push button sensor 3 Plus - Brief instructions for loading additional display languages Order-No , , 2042 xx, 2043 xx, 2046 xx

Push button sensor 3 Plus - Brief instructions for loading additional display languages Order-No , , 2042 xx, 2043 xx, 2046 xx KNX/EIB Product documentation Issue: 01.07.2011 65yxx220 Push button sensor 3 Plus - Brief instructions for loading additional display languages KNX/EIB Product documentation Contents 1 Product definition...

More information

1 DEALING WITH LARGE DATA SETS PROCESSING A HOT FOLDER SUPPORTED FILE TYPES FOR CONVERT ANY FILE TO PDF... 5

1 DEALING WITH LARGE DATA SETS PROCESSING A HOT FOLDER SUPPORTED FILE TYPES FOR CONVERT ANY FILE TO PDF... 5 Version 1.1 March 2016 Table of Contents 1 DEALING WITH LARGE DATA SETS... 3 1.1 REQUIREMENT... 3 1.2 BACKGROUND... 3 1.3 SOLUTION... 3 2 PROCESSING A HOT FOLDER... 4 2.1 REQUIREMENT... 4 2.2 SOLUTION...

More information

ipad 3 WiFi + Cellular Specifications

ipad 3 WiFi + Cellular Specifications ipad 3 WiFi + Cellular Specifications Size and Weight Height: 9.50 inches (241.2 mm) Width: 7.31 inches (185.7 mm) Depth: 0.37 inch (9.4 mm) Weight: 1.46 pounds (662 g) Display Retina display 9.7-inch

More information

Click-to-Call (Web RTC)

Click-to-Call (Web RTC) Click-to-Call (Web RTC) Admin Guide 27 September 2018 Contents Click-to-Call and StarLeaf Cloud 3 Browser support for Click-to-Call 3 Chrome 3 Internet Explorer 3 Firefox 4 Safari 4 Content share for browser-based

More information

EBSCOhost User Guide Searching. Basic, Advanced & Visual Searching, Result List, Article Details, Additional Features. support.ebsco.

EBSCOhost User Guide Searching. Basic, Advanced & Visual Searching, Result List, Article Details, Additional Features. support.ebsco. EBSCOhost User Guide Searching Basic, Advanced & Visual Searching, Result List, Article Details, Additional Features Table of Contents What is EBSCOhost... 5 System Requirements... 5 Inside this User Guide...

More information