h p://

Size: px
Start display at page:

Download "h p://"

Transcription

1 B4M36DS2, BE4M36DS2: Database Systems 2 h p:// Prac cal Class 7 Cassandra Mar n Svoboda mar n.svoboda@fel.cvut.cz Charles University in Prague, Faculty of Mathema cs and Physics Czech Technical University in Prague, Faculty of Electrical Engineering

2 Data Model Database system structure Instance keyspaces tables rows columns Keyspace Table (column family) Collec on of (similar) rows Table schema must be specified, yet can be modified later on Row Collec on of columns Rows in a table do not need to have the same columns Each row is uniquely iden fied by a primary key Column Name-value pair + addi onal data B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

3 Data Model Column values Empty value Atomic value Na ve data types such as texts, integers, dates, Tuples Tuple of anonymous fields, each of any type (even different) User defined types (UDT) Set of named fields of any type Collec ons Lists, sets, and maps Nested tuples, UDTs, or collec ons are allowed, but currently only in frozen mode (such elements are serialized when stored) B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

4 Query Language CQL = Cassandra Query Language DDL statements creates a new keyspace creates a new table DML statements selects and projects rows from a single table inserts rows into a table updates columns of rows in a table removes rows from a table B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

5 First Steps Connect to our NoSQL server SSH / SFTP and PuTTY / WinSCP :22 Start CQLSH shell Basic useful commands Clear the shell terminal window Terminates the current database connec on B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

6 Keyspace Create your personal keyspace Use your login name as a name of your keyspace List all exis ng keyspaces Switch to your keyspace B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

7 Tables Create a new table for users Columns: integer iden fier, first name, last name View table defini on Insert new users into the table of users 1, Irena, Holubova 2, Mar n, Svoboda Browse exis ng users Find all users Find a specific user with iden fier 1 B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

8 Filtering Try to find a par cular user according to their last name Create a secondary index for last names Try to find a par cular user once again Enable filtering B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

9 Types Create a user-defined type for names of people Fields: first, last Create a new table for contacts Columns id: integer iden fier name: first and last name address: triple of street, city and ZIP code s: set of addresses apps: list of preferred messenger applica ons phones: map of phone numbers (work, home, ) B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

10 Inser on Insert new records into the table of contacts 1 Irena Holubova Malostranske names, Praha, holubova@ksi.mff.cuni.cz WhatsApp, Messenger work Mar n Svoboda svoboda@ksi.mff.cuni.cz, mar n.svoboda@mff.cuni.cz Viber, WhatsApp work , fax B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

11 Update Modify exis ng contact records Replace certain columns of a person with id 1 Replace address: Malostranske names 25, Praha, Replace applica ons: Hangouts Modify certain columns of a person with id 1 Add new address: holubova@ksi.mff.cuni.cz Add new applica ons: Messenger and WhatsApp Add new phone number: home Modify certain columns of a person with id 1 Remove address: irena.holubova@mff.cuni.cz Remove applica ons: Hangouts and Messenger Remove phone number: home B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

12 Dele on Modify columns of exis ng contact records Remove / update certain columns of a person with id 1 Remove address column Remove the first applica on Remove phone number to work B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

13 Aggrega on and Ordering Create a new table for messages Columns sender: integer iden fier of a sender app: name of a messenger applica on used date: date a given message was sent me: me a given message was sent recipient: integer iden fier of a recipient message: message text Primary key involves the following columns sender, app, date, and me Columns sender and app are considered to be par oning B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

14 Aggrega on and Ordering Insert the following rows into the table of messages B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

15 Aggrega on and Ordering Find all messages of a user with id 2 sent using whatsapp Order the rows according to dates and mes, both in descending order Aggregate messages sent by a par cular user with id 2 Return the overall number of sent messages for each combina on of an applica on name and message date B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

16 References CQL Cassandra Query Language h p://cassandra.apache.org/doc/latest/cql/ B4M36DS2, BE4M36DS2: Database Systems 2 Prac cal Class 7: Cassandra

Column-Family Stores: Cassandra

Column-Family Stores: Cassandra NDBI040: Big Data Management and NoSQL Databases h p://www.ksi.mff.cuni.cz/ svoboda/courses/2016-1-ndbi040/ Lecture 10 Column-Family Stores: Cassandra Mar n Svoboda svoboda@ksi.mff.cuni.cz 13. 12. 2016

More information

h p://

h p:// B4M36DS2, BE4M36DS2: Database Systems 2 h p://www.ksi.m.cuni.cz/~svoboda/courses/181-b4m36ds2/ Prac cal Class 5 MapReduce Mar n Svoboda mar n.svoboda@fel.cvut.cz 5. 11. 2018 Charles University, Faculty

More information

Column-Family Stores: Cassandra

Column-Family Stores: Cassandra Course NDBI040: Big Data Management and NoSQL Databases Practice 03: Column-Family Stores: Cassandra Martin Svoboda 1. 12. 2015 Faculty of Mathematics and Physics, Charles University in Prague Outline

More information

NDBI040: Big Data Management and NoSQL Databases

NDBI040: Big Data Management and NoSQL Databases NDBI040: Big Data Management and NoSQL Databases h p://www.ksi.mff.cuni.cz/~svoboda/courses/171-ndbi040/ Prac cal Class 8 MongoDB Mar n Svoboda svoboda@ksi.mff.cuni.cz 5. 12. 2017 Charles University in

More information

h p://

h p:// B4M36DS2, BE4M36DS2: Database Systems 2 h p://www.ksi.m.cuni.cz/~svoboda/courses/181-b4m36ds2/ Prac cal Class 7 Redis Mar n Svoboda mar n.svoboda@fel.cvut.cz 19. 11. 2018 Charles University, Faculty of

More information

SQL: Advanced Constructs

SQL: Advanced Constructs B0B36DBS, BD6B36DBS: Database Systems h p://www.ksi.mff.cuni.cz/~svoboda/courses/172-b0b36dbs/ Prac cal Class 8 SQL: Advanced Constructs Author: Mar n Svoboda, mar n.svoboda@fel.cvut.cz Tutors: J. Ahmad,

More information

NDBI040: Big Data Management and NoSQL Databases. h p:// svoboda/courses/ ndbi040/

NDBI040: Big Data Management and NoSQL Databases. h p://  svoboda/courses/ ndbi040/ NDBI040: Big Data Management and NoSQL Databases h p://www.ksi.mff.cuni.cz/ svoboda/courses/2016-1-ndbi040/ Prac cal Class 2 Riak Key-Value Store Mar n Svoboda svoboda@ksi.mff.cuni.cz 25. 10. 2016 Charles

More information

B4M36DS2, BE4M36DS2: Database Systems 2

B4M36DS2, BE4M36DS2: Database Systems 2 B4M36DS2, BE4M36DS2: Database Systems 2 h p://www.ksi.mff.cuni.cz/~svoboda/courses/171-b4m36ds2/ Lecture 2 Data Formats Mar n Svoboda mar n.svoboda@fel.cvut.cz 9. 10. 2017 Charles University in Prague,

More information

NDBI040: Big Data Management and NoSQL Databases. h p://

NDBI040: Big Data Management and NoSQL Databases. h p:// NDBI040: Big Data Management and NoSQL Databases h p://www.ksi.mff.cuni.cz/~svoboda/courses/171-ndbi040/ Prac cal Class 5 Riak Mar n Svoboda svoboda@ksi.mff.cuni.cz 13. 11. 2017 Charles University in Prague,

More information

Key-Value Stores: RiakKV

Key-Value Stores: RiakKV B4M36DS2, BE4M36DS2: Database Systems 2 h p://www.ksi.m.cuni.cz/~svoboda/courses/181-b4m36ds2/ Lecture 7 Key-Value Stores: RiakKV Mar n Svoboda mar n.svoboda@fel.cvut.cz 12. 11. 2018 Charles University,

More information

Key-Value Stores: RiakKV

Key-Value Stores: RiakKV B4M36DS2: Database Systems 2 h p://www.ksi.mff.cuni.cz/ svoboda/courses/2016-1-b4m36ds2/ Lecture 4 Key-Value Stores: RiakKV Mar n Svoboda svoboda@ksi.mff.cuni.cz 24. 10. 2016 Charles University in Prague,

More information

Key-Value Stores: RiakKV

Key-Value Stores: RiakKV NDBI040: Big Data Management and NoSQL Databases h p://www.ksi.mff.cuni.cz/ svoboda/courses/2016-1-ndbi040/ Lecture 4 Key-Value Stores: RiakKV Mar n Svoboda svoboda@ksi.mff.cuni.cz 25. 10. 2016 Charles

More information

h p://

h p:// B4M36DS2, BE4M36DS2: Database Systems 2 h p://www.ksi.mff.cuni.cz/~svoboda/courses/171-b4m36ds2/ Lecture 1 Introduc on Mar n Svoboda mar n.svoboda@fel.cvut.cz 2. 10. 2017 Charles University in Prague,

More information

B0B36DBS, BD6B36DBS: Database Systems

B0B36DBS, BD6B36DBS: Database Systems B0B36DBS, BD6B36DBS: Database Systems h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Prac cal Class 10 JDBC, JPA 2.1 Author: Mar n Svoboda, mar n.svoboda@fel.cvut.cz Tutors: J. Ahmad, R. Černoch,

More information

MapReduce, Apache Hadoop

MapReduce, Apache Hadoop B4M36DS2, BE4M36DS2: Database Systems 2 h p://www.ksi.mff.cuni.cz/~svoboda/courses/171-b4m36ds2/ Lecture 5 MapReduce, Apache Hadoop Mar n Svoboda mar n.svoboda@fel.cvut.cz 30. 10. 2017 Charles University

More information

SQL: DML and Advanced Constructs Insert, Update, Delete, View, Index, Procedure, Transaction, Trigger

SQL: DML and Advanced Constructs Insert, Update, Delete, View, Index, Procedure, Transaction, Trigger Courses B0B36DBS, A7B36DBS: Database Systems Practical Class 08: SQL: DML and Advanced Constructs Insert, Update, Delete, View, Index, Procedure, Transaction, Trigger Martin Svoboda 11. 4. 2017 Faculty

More information

Digital Analy 韜 cs Installa 韜 on and Configura 韜 on

Digital Analy 韜 cs Installa 韜 on and Configura 韜 on Home > Digital AnalyĀcs > Digital Analy 韜 cs Installa 韜 on and Configura 韜 on Digital Analy 韜 cs Installa 韜 on and Configura 韜 on Introduc 韜 on Digital Analy 韜 cs is an e automate applica 韜 on that assists

More information

Document Stores: MongoDB

Document Stores: MongoDB Course NDBI040: Big Data Management and NoSQL Databases Practice 04: Document Stores: MongoDB Martin Svoboda 15. 12. 2015 Faculty of Mathematics and Physics, Charles University in Prague Outline Document

More information

Inter-agency Mee-ng on Prepara-on for the 2018 SDG Reports 28 Feb 01 Mar Agenda item 6: Review of data/metadata inputs for the database (UNSD)

Inter-agency Mee-ng on Prepara-on for the 2018 SDG Reports 28 Feb 01 Mar Agenda item 6: Review of data/metadata inputs for the database (UNSD) Inter-agency Mee-ng on Prepara-on for the 2018 SDG Reports 28 Feb 01 Mar 2018 Agenda item 6: Review of data/metadata inputs for the database (UNSD) Zin Lin Development Data and Dissemina-on Sec-on Sta-s-cs

More information

Harnessing Publicly Available Factual Data in the Analytical Process

Harnessing Publicly Available Factual Data in the Analytical Process June 14, 2012 Harnessing Publicly Available Factual Data in the Analytical Process by Benson Margulies, CTO We put the World in the World Wide Web ABOUT BASIS TECHNOLOGY Basis Technology provides so ware

More information

DIRECT SUPPLIER P RTAL INSTRUCTIONS

DIRECT SUPPLIER P RTAL INSTRUCTIONS DIRECT SUPPLIER P RTAL INSTRUCTIONS page I IMPORTANT Please complete short Online Tutorials and Quiz at www.supplierportal.coles.com.au/dsd TABLE of Contents 1 Ingredients 2 Log In 3 View a Purchase Order

More information

CS 4604: Introduc0on to Database Management Systems. B. Aditya Prakash Lecture #7: En-ty/Rela-onal Model---Part 3

CS 4604: Introduc0on to Database Management Systems. B. Aditya Prakash Lecture #7: En-ty/Rela-onal Model---Part 3 CS 4604: Introduc0on to Database Management Systems B. Aditya Prakash Lecture #7: En-ty/Rela-onal Model---Part 3 Purpose of E/R Model The E/R model allows us to sketch the design of a database informally.

More information

Special Topic: Automated Report Recipients 5. Crea ng a New Region 6 Adding Districts to Regions 8

Special Topic: Automated Report Recipients 5. Crea ng a New Region 6 Adding Districts to Regions 8 TT Tracker Set-up 3 Project Modifica ons 3 Access Country Project 3 Create Web Users 4 Special Topic: Automated Report Recipients 5 Create Program Loca ons (Coverage Areas) 6 Crea ng a New Region 6 Adding

More information

SQL: Data De ni on. B0B36DBS, BD6B36DBS: Database Systems. h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 3

SQL: Data De ni on. B0B36DBS, BD6B36DBS: Database Systems. h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 3 B0B36DBS, BD6B36DBS: Database Systems h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 3 SQL: Data De ni on Mar n Svoboda mar n.svoboda@fel.cvut.cz 13. 3. 2018 Czech Technical University

More information

CGS 3066: Spring 2017 SQL Reference

CGS 3066: Spring 2017 SQL Reference CGS 3066: Spring 2017 SQL Reference Can also be used as a study guide. Only covers topics discussed in class. This is by no means a complete guide to SQL. Database accounts are being set up for all students

More information

Project 1 ECE544 Communica-on Networks II Francesco Bronzino. Includes teaching material from Bart Braem and Michael Voorhaen

Project 1 ECE544 Communica-on Networks II Francesco Bronzino. Includes teaching material from Bart Braem and Michael Voorhaen Project 1 ECE544 Communica-on Networks II Francesco Bronzino Includes teaching material from Bart Braem and Michael Voorhaen Project Goals Get familiar with Click s environment Get familiar with our virtualized

More information

Printed Circuit Board Assembly Analysis / 1

Printed Circuit Board Assembly Analysis / 1 Printed Circuit Board Assembly Analysis Introduction DFM Concurrent Costing The first step in the manufacture of the printed circuit board assembly is the fabrica on of the bare circuit board, o en called

More information

Conceptual Database Modeling

Conceptual Database Modeling Course A7B36DBS: Database Systems Lecture 01: Conceptual Database Modeling Martin Svoboda Irena Holubová Tomáš Skopal Faculty of Electrical Engineering, Czech Technical University in Prague Course Plan

More information

The Knight News Innovation Lab

The Knight News Innovation Lab The Knight News Innovation Lab ILLINOIS CONGRESSIONAL PRIMARIES Tools for enhancing coverage of March 20 elec3on What are we trying to accomplish? For publishers: Provide innova-ve technology for elec-on

More information

Interface Module Adapter SIMATIC S7-300, 400 and 1500

Interface Module Adapter SIMATIC S7-300, 400 and 1500 s Interface Module dapter SIMTIC S7-300, 400 and 1500 Version 4.3 01/2017 Page 1 Innova on on economical base When we are talking to our customers there always seems to be a common problem: many plants

More information

API v2. Conventions. Security Parameters. Collections. HTTP codes. Security Roles. Docs» API v2

API v2. Conventions. Security Parameters. Collections. HTTP codes. Security Roles. Docs» API v2 Docs» API v2 API v2 Conventions Security Parameters headers X-Vsaas-Apikey (string) : Watcher API Key X-Vsaas-Session (string) : Session key, for logged in users Collections query search (string): Substring

More information

Relational Model. Courses B0B36DBS, A7B36DBS: Database Systems. Practical Class 03: Martin Svoboda

Relational Model. Courses B0B36DBS, A7B36DBS: Database Systems. Practical Class 03: Martin Svoboda Courses B0B36DBS, A7B36DBS: Database Systems Practical Class 03: Relational Model Martin Svoboda 7. 3. 2017 Faculty of Electrical Engineering, Czech Technical University in Prague Exercise 1 Create an

More information

MyCouncil. Accredita on Management System Informa on and Naviga on Guide

MyCouncil. Accredita on Management System Informa on and Naviga on Guide MyCouncil Accredita on Management System Informa on and Naviga on Guide October 2017 MyCouncil GENERAL INFORMATION MyCouncil is a web based accredita on management system created to streamline accredita

More information

Interface Module Adapter SIMATIC S7-300, 400 and 1500

Interface Module Adapter SIMATIC S7-300, 400 and 1500 s Interface Module dapter SIMTIC S7-300, 400 and 1500 Version 5 08/2018 Page 1 Innova on on economical base When we are talking to our customers there always seems to be a common problem: many plants are

More information

Assignment Session : July-March

Assignment Session : July-March Faculty Name Class/Section Subject Name Assignment Session : July-March 2018-19 MR.RAMESHWAR BASEDIA B.Com II Year RDBMS Assignment THEORY ASSIGNMENT II (A) Objective Question 1. Software that defines

More information

New n Member Polygon and Grid Maintenance

New n Member Polygon and Grid Maintenance North Carolina 811, Inc. 2300 W. Meadowview Rd Suite 227 Greensboro, North Carolina 27407 New n Member Polygon and Grid Maintenance Users Manual Updated: August 5, 2016 Table of Contents Introduc on Overview

More information

Simba ODBC Driver with SQL Connector for Apache Cassandra

Simba ODBC Driver with SQL Connector for Apache Cassandra Simba ODBC Driver with SQL Connector for Apache Cassandra 2.0.16 The release notes provide details of enhancements and features in Simba ODBC Driver with SQL Connector for Apache Cassandra 2.0.16, as well

More information

Big Data Development CASSANDRA NoSQL Training - Workshop. November 20 to (5 days) 9 am to 5 pm HOTEL DUBAI GRAND DUBAI

Big Data Development CASSANDRA NoSQL Training - Workshop. November 20 to (5 days) 9 am to 5 pm HOTEL DUBAI GRAND DUBAI Big Data Development CASSANDRA NoSQL Training - Workshop November 20 to 24 2016 (5 days) 9 am to 5 pm HOTEL DUBAI GRAND DUBAI ISIDUS TECH TEAM FZE PO Box 9798 Dubai UAE, email training-coordinator@isidusnet

More information

Midterm Review. Winter Lecture 13

Midterm Review. Winter Lecture 13 Midterm Review Winter 2006-2007 Lecture 13 Midterm Overview 3 hours, single sitting Topics: Relational model relations, keys, relational algebra expressions SQL DDL commands CREATE TABLE, CREATE VIEW Specifying

More information

Querying Data with Transact SQL

Querying Data with Transact SQL Course 20761A: Querying Data with Transact SQL Course details Course Outline Module 1: Introduction to Microsoft SQL Server 2016 This module introduces SQL Server, the versions of SQL Server, including

More information

Microso 埘 Exam Dumps PDF for Guaranteed Success

Microso 埘 Exam Dumps PDF for Guaranteed Success Microso 埘 70 698 Exam Dumps PDF for Guaranteed Success The PDF version is simply a copy of a Portable Document of your Microso 埘 70 698 ques ons and answers product. The Microso 埘 Cer fied Solu on Associa

More information

Conceptual Modeling in ER and UML

Conceptual Modeling in ER and UML Courses B0B36DBS, A7B36DBS: Database Systems Practical Classes 01 and 02: Conceptual Modeling in ER and UML Martin Svoboda 21. and 28. 2. 2017 Faculty of Electrical Engineering, Czech Technical University

More information

Evolution of XML Applications

Evolution of XML Applications Evolution of XML Applications University of Technology Sydney, Australia Irena Mlynkova 9.11. 2011 XML and Web Engineering Research Group Department of Software Engineering Faculty of Mathematics and Physics

More information

Database Architectures

Database Architectures B0B36DBS, BD6B36DBS: Database Systems h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 11 Database Architectures Authors: Tomáš Skopal, Irena Holubová Lecturer: Mar n Svoboda, mar n.svoboda@fel.cvut.cz

More information

Migrating Oracle Databases To Cassandra

Migrating Oracle Databases To Cassandra BY UMAIR MANSOOB Why Cassandra Lower Cost of ownership makes it #1 choice for Big Data OLTP Applications. Unlike Oracle, Cassandra can store structured, semi-structured, and unstructured data. Cassandra

More information

2014 INSTRUCTIONS FOR RE-ENROLLING FAMILIES

2014 INSTRUCTIONS FOR RE-ENROLLING FAMILIES University of California Division of Agriculture and Natural Resources 4-H Youth Development Program 4hOnline Guide for Youth and Adults For Alameda County 2014 INSTRUCTIONS FOR RE-ENROLLING FAMILIES 4hOnline

More information

Internet of Things Big Data Cloud Computing

Internet of Things Big Data Cloud Computing Internet of Things Big Data Cloud Computing S U S TA I NA B I L I T Y AU TO M AT I O N REAL-TIME PAY B A C K B I G DATA LIVE I N T E G R AT I O N ROI CLOUD w w w. s h i f t e n e r g y. c o m S AV I N

More information

Relational Model. Course A7B36DBS: Database Systems. Lecture 02: Martin Svoboda Irena Holubová Tomáš Skopal

Relational Model. Course A7B36DBS: Database Systems. Lecture 02: Martin Svoboda Irena Holubová Tomáš Skopal Course A7B36DBS: Database Systems Lecture 02: Relational Model Martin Svoboda Irena Holubová Tomáš Skopal Faculty of Electrical Engineering, Czech Technical University in Prague Outline Logical database

More information

USING FMEA AS A RISK ASSESSMENT TECHNIQUE

USING FMEA AS A RISK ASSESSMENT TECHNIQUE USING FMEA AS A RISK ASSESSMENT TECHNIQUE piramalpharmasolu ons.com 02 INTRODUCTION Failure mode effects analysis (FMEA) is a form of risk assessment using a step-by-step approach to iden fy possible failures

More information

Facebook Adver-sing Strategies for

Facebook Adver-sing Strategies for Facebook Adver-sing Strategies for News Professionals PRESENTED BY: TOYA WILSON-SMITH, M.B.A. NEXGENERATION DIGITAL MARKETING AGENCY INC. FACEBOOK ADVERTISING STRATEGIES THE 7 STEPS TO BUILDING YOUR EMAIL

More information

Sept 28, 2016 Sprenkle - CSCI Assignment 5 Demonstrates typical design/implementa-on process

Sept 28, 2016 Sprenkle - CSCI Assignment 5 Demonstrates typical design/implementa-on process Objec-ves Packaging Collec-ons Generics Eclipse Sept 28, 2016 Sprenkle - CSCI209 1 Itera-on over Code Assignment 5 Demonstrates typical design/implementa-on process Ø Start with your original code design

More information

REGION: NORTH AMERICA

REGION: NORTH AMERICA R U M A REGION: NORTH AMERICA R U M A Chapter Issue Date 1 Introduc on 05/21/2012 2 Install and Upgrade Minimum Hardware Requirements Android Opera ng System and Wi Fi Se ngs Installing Revoquest the First

More information

Geometric verifica-on of matching

Geometric verifica-on of matching Geometric verifica-on of matching The correspondence problem The correspondence problem tries to figure out which parts of an image correspond to which parts of another image, a;er the camera has moved,

More information

USER PERCEPTION OF DELETING INSTANT MESSAGES EuroUSEC 18, London, UK, 23 April 2018

USER PERCEPTION OF DELETING INSTANT MESSAGES EuroUSEC 18, London, UK, 23 April 2018 OVERVIEW Instant Messaging New WhatsApp feature introduced October 2017 Delete messages for everyone Do users delete messages? How do other messengers do this? Do users know what happens? What do users

More information

SQT CURRICULUM. A Professional Approach For Manul Tes ng Tools SOFTWARE QUALITY TESTING. Tes ng Prac ce Overview. So ware Tes ng Methodology

SQT CURRICULUM. A Professional Approach For Manul Tes ng Tools SOFTWARE QUALITY TESTING. Tes ng Prac ce Overview. So ware Tes ng Methodology SQT SOFTWARE QUALITY TESTING CURRICULUM A Professional Approach For Manul Tes ng Tools Tes ng Prac ce Overview Tes ng Service Line Overview So ware Organiza on Structure and Tes ng Goal Introduc on to

More information

Chapter 4. The Relational Model

Chapter 4. The Relational Model Chapter 4 The Relational Model Chapter 4 - Objectives Terminology of relational model. How tables are used to represent data. Connection between mathematical relations and relations in the relational model.

More information

MI-PDB, MIE-PDB: Advanced Database Systems

MI-PDB, MIE-PDB: Advanced Database Systems MI-PDB, MIE-PDB: Advanced Database Systems http://www.ksi.mff.cuni.cz/~svoboda/courses/2015-2-mie-pdb/ Lecture 11: RDF, SPARQL 3. 5. 2016 Lecturer: Martin Svoboda svoboda@ksi.mff.cuni.cz Author: Martin

More information

Solved MCQ on fundamental of DBMS. Set-1

Solved MCQ on fundamental of DBMS. Set-1 Solved MCQ on fundamental of DBMS Set-1 1) Which of the following is not a characteristic of a relational database model? A. Table B. Tree like structure C. Complex logical relationship D. Records 2) Field

More information

electronic license applications user s guide Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10

electronic license applications user s guide Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10 applications Contents What you need Page 1 Get started Page 3 Paper Non-Resident Licensing Page 10 Welcome to the Na onal Insurance Producer Registry s applications The give producers the ability to quickly

More information

Free Yourself into the Cloud Taiwan s only Hybrid Cloud specialist using

Free Yourself into the Cloud Taiwan s only Hybrid Cloud specialist using Free Yourself into the Cloud Taiwan s only Hybrid Cloud specialist using technology easpnet GWS Hybrid Cloud Services Virtualiza on is a new concept and technology that has become a hot topic in recent

More information

Presentation Switchers. digital presentation systems. Users Guide PS110. August, 2014 PN: DOC a

Presentation Switchers. digital presentation systems. Users Guide PS110. August, 2014 PN: DOC a Presentation Switchers digital presentation systems Users Guide PS110 August, 2014 PN: DOC-000023-00a Trademark Informa on Presenta on Switchers, the PS Box logo or icon, and the names and marks associated

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for Apache Cassandra User's Guide

TIBCO ActiveMatrix BusinessWorks Plug-in for Apache Cassandra User's Guide TIBCO ActiveMatrix BusinessWorks Plug-in for Apache Cassandra User's Guide Software Release 6.3 August 2017 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO

More information

To install Oracle Java 8, first we will add a repository to our package manager so our usual system update will download the Oracle JDK8 installer.

To install Oracle Java 8, first we will add a repository to our package manager so our usual system update will download the Oracle JDK8 installer. Installing Apache Cassandra on Ubuntu Xenial 16.04.1 LTS David J. Walling, March 29 th, 2017 This how to describes how to install Apache Cassandra 2.2.9 on Ubuntu. As a first step, we will confirm that

More information

ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY

ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY ADMIN TRAINING GUIDE FEBRUARY 22, 2017 STAFFING SYSTEM NIGHT OWL PRODUCTIONS ENTERPRISE SYSTEMS & SERVICES KENNESAW STATE UNIVERSITY Table of Contents Welcome to Night Owl Produc ons!... 3 Accessing Night

More information

UNIVERSAL. Energy Saver Windows PC Stick with IPTV add-on USER GUIDE

UNIVERSAL. Energy Saver Windows PC Stick with IPTV add-on USER GUIDE UNIVERSAL PocketPC Energy Saver Windows PC Stick with IPTV add-on USER GUIDE Table of Content: Product Overview I Product Descrip on.ii How to Connect using HDMI Cable..III o How to Connect to a Monitor

More information

Streamlining Your Work with Macros. Workshop Manual

Streamlining Your Work with Macros. Workshop Manual Microsoft Excel 2010 401 Advanced Workshop Streamlining Your Work with Macros Workshop Manual Presented by David Newbold, Jennifer Tran and Katie Spencer 06/23/11 1 Excel 401 Macro Exercise Workbook Class

More information

SQL: Data Querying. B0B36DBS, BD6B36DBS: Database Systems. h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 4

SQL: Data Querying. B0B36DBS, BD6B36DBS: Database Systems. h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 4 B0B36DBS, BD6B36DBS: Database Systems h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 4 SQL: Data Querying Mar n Svoboda mar n.svoboda@fel.cvut.cz 20. 3. 2018 Czech Technical University

More information

Julia Eclipse Plugin User Manual Table of Contents

Julia Eclipse Plugin User Manual Table of Contents Julia Eclipse Plugin User Manual Table of Contents Introduction Installation Settings Running Julia Navigating the Results Managing analyses results Extraction of the application under analysis Julia Java

More information

NEWSLETTER. Agrisoft Systems. OMP 9.3 coming up. Message from the Management. Twenty-fi h edi on, Apr. Jun Dear Customers and Friends,

NEWSLETTER. Agrisoft Systems. OMP 9.3 coming up. Message from the Management. Twenty-fi h edi on, Apr. Jun Dear Customers and Friends, Twenty-fi h edi on, OMP 9.3 coming up Message from the Management Dear Customers and Friends, We are in the final stages of preparing the next major release in the OMP development cycle, which will carry

More information

XSEDE Iden ty Management Use Cases

XSEDE Iden ty Management Use Cases XSEDE Iden ty Management Use Cases January 6, 2017 Version 1.3 These use cases describe how researchers, scien sts, and other community members register themselves with the XSEDE system, manage their profile

More information

Course Introduction & Foundational Concepts

Course Introduction & Foundational Concepts Course Introduction & Foundational Concepts CPS 352: Database Systems Simon Miner Gordon College Last Revised: 8/30/12 Agenda Introductions Course Syllabus Databases Why What Terminology and Concepts Design

More information

Bitnami Cassandra for Huawei Enterprise Cloud

Bitnami Cassandra for Huawei Enterprise Cloud Bitnami Cassandra for Huawei Enterprise Cloud Description Apache Cassandra is an open source distributed database management system designed to handle large amounts of data across many commodity servers,

More information

doc. RNDr. Tomáš Skopal, Ph.D. RNDr. Michal Kopecký, Ph.D.

doc. RNDr. Tomáš Skopal, Ph.D. RNDr. Michal Kopecký, Ph.D. course: Database Systems (NDBI025) SS2017/18 doc. RNDr. Tomáš Skopal, Ph.D. RNDr. Michal Kopecký, Ph.D. Department of Software Engineering, Faculty of Mathematics and Physics, Charles University in Prague

More information

Getting to know. by Michelle Darling August 2013

Getting to know. by Michelle Darling August 2013 Getting to know by Michelle Darling mdarlingcmt@gmail.com August 2013 Agenda: What is Cassandra? Installation, CQL3 Data Modelling Summary Only 15 min to cover these, so please hold questions til the end,

More information

8) A top-to-bottom relationship among the items in a database is established by a

8) A top-to-bottom relationship among the items in a database is established by a MULTIPLE CHOICE QUESTIONS IN DBMS (unit-1 to unit-4) 1) ER model is used in phase a) conceptual database b) schema refinement c) physical refinement d) applications and security 2) The ER model is relevant

More information

Networking for Wide Format Printers

Networking for Wide Format Printers Networking for Wide Format Printers Table of Contents Configure PC before RIP Installa on... 1 Verifying Your Network Se ngs for Mac Communica on... 3 Changing Your Network Adapter for Mac Communica on...

More information

Conceptual Design. The Entity-Relationship (ER) Model

Conceptual Design. The Entity-Relationship (ER) Model Conceptual Design. The Entity-Relationship (ER) Model CS430/630 Lecture 12 Slides based on Database Management Systems 3 rd ed, Ramakrishnan and Gehrke Database Design Overview Conceptual design The Entity-Relationship

More information

Part 1: Excep-ons, part 2 Part 2: Iterator. Lecture 11 COMP 401, Spring /3/2015

Part 1: Excep-ons, part 2 Part 2: Iterator. Lecture 11 COMP 401, Spring /3/2015 Part 1: Excep-ons, part 2 Part 2: Iterator Lecture 11 COMP 401, Spring 2015 3/3/2015 The finally block Some-me we need some code to run no maker what happens. OMen this is the case in order to free up

More information

Physician Reference Guide Paragon Clinician Hub Version 13.0

Physician Reference Guide Paragon Clinician Hub Version 13.0 Physician Reference Guide Paragon Clinician Hub Version 13.0 Table of Contents Table of Contents Clinician Hub 13.0 4 5 Clinician Hub 13.0 6 7 Key Features Clinician Hub 13.0 How to Unlock an Applica on

More information

Cassandra- A Distributed Database

Cassandra- A Distributed Database Cassandra- A Distributed Database Tulika Gupta Department of Information Technology Poornima Institute of Engineering and Technology Jaipur, Rajasthan, India Abstract- A relational database is a traditional

More information

STM. Computing. Specifica on Topics. High Level Skills you should think about to take your work to the next level:

STM. Computing. Specifica on Topics. High Level Skills you should think about to take your work to the next level: Specifica on Topics High Level Skills you should think about to take your work to the next level: Discussing the advantages and disadvantages of the different topology types Describing the key fields in

More information

Principles of Information Systems

Principles of Information Systems Principles of Information Systems Session 02 Computer Systems, Hardware and Software Part 01 - Hardware Chapter 03 Principles and Learning Objec9ves Last -me, we iden-fied a desire for our systems to be

More information

Data about data is database Select correct option: True False Partially True None of the Above

Data about data is database Select correct option: True False Partially True None of the Above Within a table, each primary key value. is a minimal super key is always the first field in each table must be numeric must be unique Foreign Key is A field in a table that matches a key field in another

More information

Governance, Risk & Compliance. TSo Plus System Requirements. TSo Plus

Governance, Risk & Compliance. TSo Plus System Requirements. TSo Plus Governance, Risk & Compliance TSo Plus System Requirements TSo Plus 2018.1 Governance, Risk & Compliance This publica on was wri en for TSo Plus Publica on Informa on / Version Document Title: TSo Plus

More information

Big Data Management and NoSQL Databases

Big Data Management and NoSQL Databases NDBI040 Big Data Management and NoSQL Databases Lecture 1. Introduction Doc. RNDr. Irena Holubova, Ph.D. holubova@ksi.mff.cuni.cz http://www.ksi.mff.cuni.cz/~holubova/ndbi040/ What is Big Data? buzzword?

More information

1 Big Data Hadoop. 1. Introduction About this Course About Big Data Course Logistics Introductions

1 Big Data Hadoop. 1. Introduction About this Course About Big Data Course Logistics Introductions Big Data Hadoop Architect Online Training (Big Data Hadoop + Apache Spark & Scala+ MongoDB Developer And Administrator + Apache Cassandra + Impala Training + Apache Kafka + Apache Storm) 1 Big Data Hadoop

More information

SeedSense 2017 So ware Release Notes

SeedSense 2017 So ware Release Notes SeedSense 2017 So ware Release Notes 1. System Wide Changes 1.1 Updated the opera ng system on Gen2 20/20 displays 1.2 Added a 6 item mode to the home screen 1.3 Changed the default se ng to the Display

More information

SQL: Concepts. Todd Bacastow IST 210: Organization of Data 2/17/ IST 210

SQL: Concepts. Todd Bacastow IST 210: Organization of Data 2/17/ IST 210 SQL: Concepts Todd Bacastow IST 210: Organization of Data 2/17/2004 1 Design questions How many entities are there? What are the major entities? What are the attributes of each entity? Is there a unique

More information

Setting up PuTTY. Version Updated for 2015 Fall (with corrections)

Setting up PuTTY. Version Updated for 2015 Fall (with corrections) Setting up PuTTY CTEC1330 Data and Telecommunications CTEC1767 Data Communications & Networking I CTEC1863 Operating Systems CTEC1906 Internet Computing Version 1.9.2 Updated for 2015 Fall (with corrections)

More information

Setting up PuTTY. Software* Downoad PuTTY. Download PuTTY Download the putty.zip file. It contains several programs for SSH, SFTP, and SCP.

Setting up PuTTY. Software* Downoad PuTTY. Download PuTTY Download the putty.zip file. It contains several programs for SSH, SFTP, and SCP. Software* Setting up PuTTY Microsoft Windows 7 PuTTY 0.65 PuTTYgen 0.65 WinSCP 5.7.5 CTEC1330 Data and Telecommunications CTEC1767 Data Communications & Networking I CTEC1863 Operating Systems CTEC1906

More information

AMPS Snapshot: User Registra on External Users

AMPS Snapshot: User Registra on External Users Do You Need an AMPS Account? How to Prepare for AMPS Account Registra on Not an employee of DLA or DFAS? If you cannot authen cate your iden ty with a smart card, you can s ll obtain an AMPS account to

More information

Final Exam Logistics. CS 133: Databases. Goals for Today. Some References Used. Final exam take-home. Same resources as midterm

Final Exam Logistics. CS 133: Databases. Goals for Today. Some References Used. Final exam take-home. Same resources as midterm Final Exam Logistics CS 133: Databases Fall 2018 Lec 25 12/06 NoSQL Final exam take-home Available: Friday December 14 th, 4:00pm in Olin Due: Monday December 17 th, 5:15pm Same resources as midterm Except

More information

CS6302 DBMS 2MARK & 16 MARK UNIT II SQL & QUERY ORTIMIZATION 1. Define Aggregate Functions in SQL? Aggregate function are functions that take a collection of values as input and return a single value.

More information

CQL for Apache Cassandra 3.0 (Earlier version)

CQL for Apache Cassandra 3.0 (Earlier version) CQL for Apache Cassandra 3.0 (Earlier version) Updated: 2018-08-20-07:00 2018 DataStax, Inc. All rights reserved. DataStax, Titan, and TitanDB are registered trademark of DataStax, Inc. and its subsidiaries

More information

PERFORMANCE NAVIGATOR MANUAL

PERFORMANCE NAVIGATOR MANUAL VERSION 19 MAY 21, 2018 PERFORMANCE NAVIGATOR MANUAL Proprietary Rights 2018 Midrange Performance Group, Inc. (MPG). All rights reserved. The informa on contained in this manual is subject to change at

More information

RefWorks User Quick Start Guide VERSION 5.0

RefWorks User Quick Start Guide VERSION 5.0 RefWorks User Quick Start Guide VERSION 5.0 LOGGING IN Access www.refworks.com/refworks and then enter your personal Login Name and Password. (First- me users need to sign up for an individual account

More information

Big Data Analytics. Rasoul Karimi

Big Data Analytics. Rasoul Karimi Big Data Analytics Rasoul Karimi Information Systems and Machine Learning Lab (ISMLL) Institute of Computer Science University of Hildesheim, Germany Big Data Analytics Big Data Analytics 1 / 1 Outline

More information

We are ready to serve Latest Testing Trends, Are you ready to learn?? New Batches Info

We are ready to serve Latest Testing Trends, Are you ready to learn?? New Batches Info We are ready to serve Latest Testing Trends, Are you ready to learn?? New Batches Info START DATE : TIMINGS : DURATION : TYPE OF BATCH : FEE : FACULTY NAME : LAB TIMINGS : PH NO: 9963799240, 040-40025423

More information

Quick Reference Guide for Blackboard Elluminate Virtual Classroom Part 1

Quick Reference Guide for Blackboard Elluminate Virtual Classroom Part 1 Quick Reference Guide for Blackboard Elluminate Virtual Classroom Part 1 Virtual Classroom Elluminate Live! is a real-time (synchronous) virtual classroom environment that has been integrated with the

More information

9/23/15. Objec-ves. Assignment 2 Review. Review STATIC METHODS AND FIELDS. Sta-c Methods/Fields. Sta-c Methods

9/23/15. Objec-ves. Assignment 2 Review. Review STATIC METHODS AND FIELDS. Sta-c Methods/Fields. Sta-c Methods Objec-ves Sta-c methods, variables Garbage collec-on Parameter passing in Java Inheritance Assignment 2 Review private int onevar; public Assign2(int par) { onevar = par; Is the above code correct? Sept

More information