Lecturer: Yong Liu Contact me at:

Slides:



Advertisements
Similar presentations
Ovid Training Dept 2012 Setting up eTOC Subscriptions.
Advertisements

Welcome to GoBig Printing | Quick Start Presentation The company that brought you here has spent years perfecting your marketing material. Each product.
Grade Cam Dustin Foster 2/4/13 Please open Chrome & Login to Skyward.
WaveMaker Visual AJAX Studio 4.0 Training
Microsoft SQL Server 2008 From the Program menu choose: Microsoft SQL Server 2008 R2  SQL Server Management Studio. You may see a window indicating the.
Members Only & Login Modules Members Only works with the Login module to provide password protection to Web pages and files. Login Groups may be created.
What is MySQL? MySQL is a relational database management system (A relational database stores data in separate tables rather than putting all the data.
Access Lesson 2 Creating a Database
Chapter Extension 6 Using Microsoft Access © 2008 Pearson Prentice Hall, Experiencing MIS, David Kroenke.
Business Objects For End Users BI_BOBJ_200 1BI_BOBJ_200 Business Objects for End Users.
RIMS II Online Order and Delivery System Tutorial on Downloading and Viewing Multipliers.
® IBM Software Group © 2006 IBM Corporation The Eclipse Data Perspective and Database Explorer This section describes how to use the Eclipse Data Perspective,
Github & Arduino How To: Post On Github How To: Download from Github How To: Upload Code Downloaded from Github to Arduino Tommy Sanchez EE400D Spring.
MagicInfo Pro Server Software All control, content, and scheduling is performed within the MagicInfo Pro Server software previously installed. Before.
1. 2 CUSTODIAL COMPUTER ACCESS MANUAL Table of Contents 3 Logging in to School Connect 3 Changing School Connect Password 5 Webmail9 Changing Webmail.
Creating a Web Site to Gather Data and Conduct Research.
InteractiveMedia’s Imagine Software Platform When user clicks on the Imagine desktop icon or installed app. This is the first thing the user will see full.
1 INITIAL SETUP OF THE ST ScI ELECTRONIC GRANTS MANAGEMENT SYSTEM BY AO DESIGNEES September, 2000.
6 th Annual Focus Users’ Conference Manage Integrations Presented by: Mike Morris.
Chapter 17 Creating a Database.
Present :Arezoo Mollahasani. Step 1  Define your server connection Open MySQL WorkBench and click New Server Instance on the right of the window.
Extensis Portfolio A Brief How-to. Login to the Portfolio Server using the Web Client through: portfolio.austin.utexas.edu:8090/
® Microsoft Office 2013 Access Creating a Database.
Administrators on Springerlink Petra Schuster, Global Manager Customer Service eProducts.
Exporting a database to a sql script 1. Getting to the command-line in XAMPP. Go to All Programs/XAMPP/XAMPP Control Panel. Click on Shell. 2.
Creating a simple database This shows you how to set up a database using PHPMyAdmin (installed with WAMP)
INTRODUCTION TO ACCESS. OBJECTIVES  Define the terms field, record, table, relational database, primary key, and foreign key  Create a blank database.
Modify Tables and FieldsModify Tables and Fields Lesson 4 © 2014, John Wiley & Sons, Inc.Microsoft Official Academic Course, Microsoft Word Microsoft.
BuzzLah iOS Installation/User Guide
Software-Projekt 2008 Seminarvortrag“Short tutorial of MySql“ Wei Chen Verena Honsel.
Programming with Microsoft Visual Basic 2012 Chapter 14: Access Databases and SQL.
1.Switch on the computer and wait for loading. 2.Select the Windows 7 OS at the end of the list. 3.Click on the link ‘Administrator’ 4.Enter the administrator.
1.Switch on the computer and wait for loading. 2.Select the Windows 7 OS at the end of the list. 3.Click on the link ‘Administrator’ 4.Enter the administrator.
Copyright © 2014 Pearson Canada Inc. Ext. 5b-1 Copyright © 2014 Pearson Canada Inc. Application Extension 5b Using Microsoft Access Part 2: Using Information.
COM621: Advanced Interactive Web Development Lecture 10 PHP and MySQL.
AdisInsight User Guide July 2015
3 A Guide to MySQL.
Tutorial 1 Creating a Database
INTRODUCTION TO DATABASES (MICROSOFT ACCESS)
, MS-Access, QBE, Access/Oracle
WikID installation/training
Objectives Create an action query to create a table
Introduction to Web programming
Basic Training May 2016.
Current outstanding balance
Access Creating a Database
Chapter 4 MS ACCESS DATABASE.
T_C_N_L_G_ E D I D I E O Y O H I E B J I R E A A W.
Access Creating a Database
Bomgar Remote support software
MySQL and MyPHPAdmin.
Access Lesson 1 Understanding Access Fundamentals
System Navigation and Test Launch
Creating Database Tables
Aqua Data Studio.
Exploring Microsoft® Access® 2016 Series Editor Mary Anne Poatsy
Creating and Modifying Queries
More about Databases.
Excel: Excel Basics Participation Project
Excel: Excel Basics Participation Project
8 6 MySQL Special Topics A Guide to MySQL.
Internet Explorer Compatibility View Settings
RefWorks Presented by Suzanne van den Hoogen
Yating Liu July 2018 G-OnRamp workshop
Access Test Questions Test Date: 05/05/16.
PubMed Database Interface (Basic Course: Module 4)
Tutorial 9 Using Action Queries and Advanced Table Relationships
Database 2.
Data Base.
eBilling Training Service Provider Administrator
Presentation transcript:

Lecturer: Yong Liu Contact me at: Yong.liu@aalto.fi Sequel Pro manual Lecturer: Yong Liu Contact me at: Yong.liu@aalto.fi

Short introduction This is a very short introduction of how to use Sequel Pro, given that the software does not provide any official manual. I would encourage you to explore the software, since most functions available at HeidiSQL also available at Sequel Pro albeit using a different interface. You just need sometime to explore it. 23.11.2018

Set up a local account After open the software, please type: “127.0.0.1” for Host; “root” for Username; “3306” for Port (in default). You can give a “Name” for your local database, such as “localhost” as shown in the left figure. Hope you still remember the password you set for MySQL root account, otherwise we have to reset root password for MySQL Then, click “Connect”

Table or account window After clicking “Connect”, you will arrive at the following interface. “Query window” This is where you type and run MySQL query! Table or account window This is where you will see the list of tables in your database This is where you will see the results from running a MySQL query! 23.11.2018

Importing a database to Sequel Pro: Please download “classicmodels (using your own laptop).sql” file from MyCourse. Click “File”  “open” to select your database file, then click “Run All Queries” from middle right place of the software. Note that you can select to run part of your code via clicking on “Run Selected Text” 23.11.2018

Opening a existing database in Sequel Pro: After importing or creating a database in Sequel Pro, you can choose the database to use by clicking “choose database” from top left corner of the software. You could activate the “classicmodels” database from the course for instance. Thereafter, you will be able to the list of tables in the database from the “Table or account window”. 23.11.2018

Showing the data Clicking the table that you want to see the data from. Click “content” option. 23.11.2018

As highlighted in red pane, there are several options: “structure” shows the structure of a table, such as variable name, variable type, length of a string field. In the “structure” window, the information of key used in the table is shown at the bottom. 23.11.2018

In the ”structure” window, you can Add or delete a variable from the table; Add or delete a key from the table 23.11.2018

In the ”structure” window, you can Delete, duplicate or rename after right clicking on a table. Add a new table to the database. 23.11.2018

Export a table to be csv file Right click on any table that you want to export the data, choose “Export”, and select “As CSV file”. 23.11.2018

Export query result as a CSV file After running a query, you will get some results. By clicking on the ‘gear’ icon, you will find a option to support you exporting the result as CSV file. 23.11.2018

Open multiple query windows Select “Database” from menu Select “Open Database in New Tab” 23.11.2018

Query history In the query window, please select “Query History” from the middle of the window 23.11.2018

Query Result At the bottom of query window, a short summary on query outcome is available, such as the number of affected rows, and running time. 23.11.2018

Add a key 1. In “structure” window, move to the bottom of the interface. 2. Click on “ + ” 3. Click on the triangle to select variable that you want to set up as a key 4. Choose a proper key type from “key type” option 23.11.2018

Add a foreign key 23.11.2018 https://stackoverflow.com/questions/18583246/how-do-i-add-a-foreign-key-in-sequelpro

Delete foreign key 1. Go to the “Relations” window 2. Right click on a foreign key, and then click the option of “Delete Relation”. 23.11.2018

The manual will be updated in accordance with new course content. 23.11.2018