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.

Slides:



Advertisements
Similar presentations
1 SESSION 6 Using tables and graphs in project work.
Advertisements

How to use - A Powerful Tool
In the top left corner of the page, click on Pages & Files. Click on the If Then Statements folder to select it. Click New – Create a Page. You can also.
Caitlin Brown, LLMSW & Rachel Lathrop, LMSW Wayne State University School of Social Work Center for Social Work Research.
Click Here for Download the Installation Files Click Here for Guide How to Extract Installation Files.
Compliance Assist! Refresher Instruction Guide Accreditation Module.
HOW TO USE BY ALEX ROSS ALEX ROSS. HOW TO CREATE ACCOUNT FOR DUMMIES is a great way to communicate with others. We can interact with.
Cutting-and-Pasting Content Directly Into Blackboard.
EQT Answer Sheet Printing Steps. Choose the Print EQT Tests icon next.
Step 1: Create Login Page –  Copy an existing page and create a page that will house the login form.  Save and go back to Page Management.  Do not export.
© Commonwealth of Australia 2009 Using OneNote in the Classroom.
Microsoft SQL Server 2008 Installation Guide Omer Alrwais.
How to use Microsoft Word. Where can I find Microsoft Word? How to select, copy and paste information Go to the document from which you wish to copy the.
Chapter 3 Bullets and Numbers. Bullets  To start a list, click the bullets command Home tab   Press Enter, a new bulleted point is added.
Region 3 Playbook for Website Friday, October 14, 2011 Rose Buchanan Hardin Construction Company Region 3 Webmaster Greater Orlando Chapter 73.
CSC 240 (Blum)1 Forms and Importing Data in Access.
Personal Oracle8i Create a new user Create a new table Enter data into a new table Export & import data Start and exit SQL Plus SQL Plus Syntax.
Using an HTML image (img) element’s onclick event to change the source (src) of an iframe to an embedded youtube video.
JDBC Tutorial CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
Configuring IQmol for Windows machines, use version!
Right-click on this, and select: Copy To Folder …
Fall 2003Sylnovie Merchant, Ph.D. ACCESS Tutorial Note: The purpose of this tutorial is to provide an introduction to some of the functions of ACCESS in.
Procurement Query Login Using Mail User & Password.
Label the parts of a spreadsheet! 1.Open Excel-Close the side panel on the left! 2.Push the PrintScrn button on your keyboard-top row left! 3.Open PowerPoint.
Lesson 14: Exploring Excel Learning Objectives After studying this lesson, you will be able to:  Explain ways Excel can help your productivity.
DATABASE DESIGN LAB Session 1 Getting Acquainted with Microsoft Access Database Management System Using for first half of the course Desktop based user.
Design of a Relational Database Schema for Magnet Inventory Data Catherine Pao July 26, 2006.
How to use the NHS Safety Thermometer Functions of the tool How to input your data How to get the most out of it.
WAMP Server Installatin Shiyun Wen. WAMP Server Installation  WAMP Server is an integrated installation of Apache, MySQL, and PHP for Windows. Following.
Here is the log in for your control panel. Enter your user name, password and click Login.
MODULE 9 Integrating Word, Excel, Access, and PowerPoint © Paradigm Publishing, Inc.1.
Pasewark & Pasewark Microsoft Office XP: Introductory Course 1 INTRODUCTORY MICROSOFT EXCEL Lesson 3 – Organizing the Worksheet.
Steps to Install VirtueMart 1. Setup Database 2. Download VirtueMart 3. Setup VirtueMart 4. Test installation Prerequisites: 1. XAMPP installation complete.
Note:- You can unpin it any time you wish to…..
Lesson 6: Working with Word Basics. 2 Learning Objectives After studying this lesson, you will be able to:  Use and customize the Ribbon  Use the Quick.
More Oracle SQL Scripts. Highlight (but don’t open) authors table, got o External data Excel, and make an external spreadsheet with the data.
Quick Introduction to HTML DB. Accessing HTML DB There are two ways to access HTML DB 1.In the ilearning curriculum, select the red boxed arrow that appears.
To insert a sound file, click insert / object. With the Create New tab visible, scroll down the list and choose Wave Sound / click OK.
1 Introduction to SQL *Plus Oracle SQL Interface MIS309 Database Systems.
Notice a new tab has opened. You can go back and forth between the two.
If you have already login then click here. Enter your User ID & Password here.
By Rina Juliana ; Meryan Itoanna ; Riska Nurmalia CREATE A WEBSITE BY OFFLINE.
Open Office Writer Introduction AOSS _ Course material AOSS Master training workshop Singapore 2007.
MYSQL AND MYSQL WORKBENCH MIS2502 Data Analytics.
MySQL and PHPMyAdmin 1. Make sure your MySQL service is running. If using XAMPP, open the control panel. If the button for MySQL says Start, click it.
1 CS 106 Computing Fundamentals II Chapter 85 “Excel Tables” Herbert G. Mayer, PSU CS status 6/14/2013 Initial content copied verbatim from CS 106 material.
How to Add Pictures to SOF Gallery. Select and Click onto [PHOTO GALLERY] STEP 1.
, MS-Access, QBE, Access/Oracle
Home Page - Can be customized by the user Clicking on preferences in the upper right allows you to customize you home page, this one is set to favorites.
Customizing the Quick Access Toolbar in Microsoft Office
1- Powerpoint will open automatically 2- Open your presentation (File…open…choose your file) 3- Click on the tab called Turningpoint as seen below.
UFIE8K10-M Data Management 2006/7
mysql and mysql workbench
Chapter 4 MS ACCESS DATABASE.
MySQL and MyPHPAdmin.
MySQL and PHPMyAdmin.
Building the Northwind database from a SQL script
IS 220 Databases Fundamentals
Aqua Data Studio.
The SMS Query Menu System for the iSeries
Lecturer: Yong Liu Contact me at:
MySQL and PHPMyAdmin 1.
First, open your Workbench
Using the Vendor Portal
How to add questions to a WBI participant feedback questionnaire (1)
Using the PPSEE “Learn” Directory
How to Use Destiny Discover
These slides are for reference only. They are not "lecture notes"
WESS Search Function This brief will show you how to use the JReport Function to Find a HAZREP in WESS even if you do not have the date of the event First.
Home Page - Can be customized by the user Clicking on preferences in the upper right allows you to customize you home page, this one is set to favorites.
Presentation transcript:

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

Use the mysqldump command. I used the root user (- u). I did not enter a password (-p), but it prompted me for one. I named the database I wanted a script for. I directed the results into a.sql file mysqldump -u root -p classicmodels > c:\xampp\classicScript.sql 3

Prompted for password. Not much seen here since results directed to file. 4

Right click on the C:\ icon to access the menu. Mark (highlight), copy, and paste are under Edit. 5

In PHPMyAdmin, go to New on the left, enter a new database name and click Create 6

Select new datadase on the left, go to the Import tab, choose the sql script you made by clicking on Choose File. Scroll down and click Go. 7

Result of script. Tables created. Data inserted. 8