“Source” the file Download tables.sql from the class website Upload it into your cse account “source” the file at the command line – mysql -h student-db.

Slides:



Advertisements
Similar presentations
PHP SQL. Connection code:- mysql_connect("server", "username", "password"); Connect to the Database Server with the authorised user and password. Eg $connect.
Advertisements

Log into help.flvs.net and click on the sign in button.
Query Methods (SQL). What is SQL A programming language for databases. SQL (structured Query Language) It allows you add, edit, delete and run queries.
Company Confidential 1 © 2005 Nokia DBUpgradeTool_ ppt / / JMa A Database Upgrade Tool Nokia Networks Jukka Maaranen.
How to Complete the Agreement Contract. Go to:
London & Zurich Plc User Guide. Service Benefits Full on-line management of client accounts Paperless direct debit – no signatures required Standing orders.
User Guide. Service Benefits  Full on-line management of client accounts  Paperless direct debit – no signatures required  Standing orders fixed not.
What is MySQL? MySQL is a relational database management system (A relational database stores data in separate tables rather than putting all the data.
DIMES Planner The DIMES Project Tel Aviv University October-2010.
How to Logon Oracle Collaboration Suite and change password? STEP 1 Launch
Using Relational Databases and SQL Steven Emory Department of Computer Science California State University, Los Angeles Laboratory 1: Introduction to Relational.
Sara SartoliAkbar Siami Namin NSF-SFS workshop July 14-18, 2014.
G053 - Lecture 17 Making Forms Work Mr C Johnston ICT Teacher
Analysis of SQL injection prevention using a proxy server By: David Rowe Supervisor: Barry Irwin.
SQL HW1 Turn in as a hardcopy at the start of next class period. You may work this assignment in groups.
BZUPAGES.COM Presentation on Content Management System (CMS) Presented to. Sir Ahmad Kareem.
© 2003 By Default! A Free sample background from Slide 1 Week 2  Free PHP Hosting Setup  PHP Backend  Backend Security 
Information Systems Today (©2006 Prentice Hall) MySQL 1CS3754 Class Note #8, Is an open-source relational database management system 2.Is fast and.
SCEDA’s Website – Click here to log in to the website.
ISYS 475 Project: Customizing a Zen Cart E-Commerce Site.
Using iPlan to Submit Documents Fall Registering Your Account in iPlan 2.
Unit 5 Microsoft SQL Server and MySQL. Key Concepts DBMS variations SQL Server features SQL Server Management Studio MySQL features Scripts Queries Database.
DATABASE TOOLS CS 260 Database Systems. Overview  Database accounts  Oracle SQL Developer  MySQL Workbench.
JDBC Tutorial CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
EXAM 1 NEXT TUESDAY…. EXAMPLE QUESTIONS 1.Why is the notion of a “state” important in relational database technology? What does it refer to? 2.What do.
GOAL User Interactive Web Interface Update Pages by Club Officers Two Level of Authentication.
Click here to create a new account Click here to check the system for an existing account Enter the site by typing in your User ID and Password and clicking.
EBC Flex Help Accessing the website and your account.
FP6 IT System 1 ELECTRONIC PROPOSAL SUBMISSION SYSTEM.
Go to your Blog URL: Then click on “Log in” Your students do not need to remember their password, they can select.
Windows 7 WampServer 2.1 MySQL PHP 5.3 Script Apache Server User Record or Select Media Upload to Internet Return URL Forward URL Create.
LAPS Submission Guide. LAPS Submission Process – How to access the LAPS Forms LAPS Forms have been ed to the LTCHs by their respective LHIN.
File Transfer Protocol (FTP) CIS 130. File Transfer Protocol (FTP) Copy files from one internet host (server) to your account on another host –Need domain.
Organize Your Stuff. Memorize those passwords!!  M7krGR8  ye36HDt  Think and Connect  Just like a phone number  How will you manage all your usernames.
Directions For Accessing Your “Moodle” Team Account 1 Step 1: Use your team Moodle account to access Technology Challenge Louisiana High School Technology.
CMPE 226 Database Systems April 19 Class Meeting Department of Computer Engineering San Jose State University Spring 2016 Instructor: Ron Mak
Fab25 User Training Cerium Labs LabCollector - LIMS Lynette Ballast.
PHP and SQL Server: Connection IST 210: Organization of Data IST2101.
How To Start a SQL server Connecting to SQL Server.
HOW TO DESKTOP USE by Mario C. Ponciano – a.k.a: Razec DBJMIN MULTI-DB Client (easy-to-use) (Step-by-Step) Jun/ v0.1.
Created by My Hanh, Marketing Hanoi in April, 2016 PROCEDURE TO USE MEDIA LIBRARY WEBSITE media.easia-travel.com.
DEVRY CIS 336 W EEK 5 G ROUP P ROJECT T ASK 3 Check this A+ tutorial guideline at
Fundamental of Databases
1Z0-071 Exam : Oracle Database 12c SQL
Basics on DB access Elke A. Rundensteiner.
Eagle Gate College/Provo College Group
How to Download and Install Windows Live Messenger
UFIE8K10-M Data Management 2006/7
JABSOM Annual Faculty Report Instructions
Oracle Accounts on Campus
Step by step instructions to Add an Admin User in WordPress utilizing FTP Guided By: - WPGLOBALSUPPORTWPGLOBALSUPPORT.
Quicken File Password Related Issues
Eric Hill, Software Developer, JMP
IS 220 Databases Fundamentals
Aqua Data Studio.
Chapter 1 Introduction.
2016, Fall Pusan National University Taehoon Kim
First, open your Workbench
MSIS 655 Advanced Business Applications Programming
Chapter 1 Introduction.
Using SQL*Plus.
Monthly meeting speaker organiser Monthly Meeting speaker organisers
Reports Web Innovations 2017.
SQLPLUS: Oracle SQL Interface
PRIVATE SCHOOLS SSC NR Section confirmation’.
Reading STAAR Benchmark 8:00 AM- 11:15 AM
Meet the CoTESOL Members’ Wiki
References & Recommendations
1 Directions For Accessing Your “Moodle” Team Account
Presentation transcript:

“Source” the file Download tables.sql from the class website Upload it into your cse account “source” the file at the command line – mysql -h student-db -u [EUID] -p [EUID] < tables.sql – Example: mysql -h student-db -u jwp0101 -p jwp0101 < tables.sql – Your password is your EUID unless you change it – If you have having password problems, contact Matt Kernan

Querying at the Command Line Log in to your mysql account – mysql -h student-db -u [EUID] –p Use your database – use [EUID]; Practice writing queries When you are satisfied with the query, copy it into file [lastname]_[firstname]_MySQL.sql

[lastname]_[firstname]_MySQL.sql Use comments for the English version Number the queries Place your SQL query underneath: Find the table names of all existing tables created by you show tables; Find the schema of the borrower table etc... Save the file regularly

Submitting the file Source the file to ensure your queries work Submit the file using the project command: project submit 4350s001 banking [filename]