Comparison with MySQL

Size: px
Start display at page:

Download "Comparison with MySQL"

Transcription

1 Element and Attribute IT 3203 Introduction to Web Development Databases, and the Web April 21 Notice: This session is being recorded. Copyright 2007 by Bob Brown Databases and Programming Languages General approach: Construct SQL statements in a variable Pass SQL commands to the DBMS with an API Retrieve the results with an API (function) Process the results Comparison with is more often found on servers than. If you can do, you can do For greatest portability, learn to use PEAR::DB (not studied here) Connect String Connect String $db_handle = pg_connect("host=sheep port=5432 dbname=test user=lamb password=xyzzy"); Connect to a database. Keyword oriented. $db_handle=mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]]) Connect to a server. Positional. You must then select a database. Remember, is your friend 1

2 Connect to Database $db_handle=pg_connect("dbname=webdev") or die("could not connect: ". pg_last_error()); $db_handle = mysql_connect("webdev", "bbrown", "xyzzy") or die("could not connect: ". mysql_error()); mysql_select_db("webdev") or die("could not select database"); Connect and Select in The call to mysql_connect names the server. The call to mysql_select names the database. In this class, confusingly, they both have the same name, i.e. the database webdev on server webdev. Build Query String $query="select * from hardware_t;"; $query="select * from hardware_t;"; Yup, they re identical. Execute the Query $db_result = pg_query($query); if (!$db_result) die("query failed: ". pg_last_error()); $db_result = mysql_query($query); if (!$db_result) die("query failed: ". mysql_error()); Get Number of Rows $num=pg_num_rows($db_result); $num=mysql_num_rows($db_result); Process Result Rows for ($i=0; $i<$num; $i++) { $row=pg_fetch_assoc($db_result, $i); for ($i=0; $i<$num; $i++) { $row=mysql_fetch_assoc($db_result, $i); 2

3 A Shortcut to Row Processing while ($row=pg_fetch_assoc($dbresult)) { while ($row=mysql_fetch_assoc($dbresult)) { If You Can Do You can do. With the exception of selecting a database in, the differences are almost entirely in the function names. This is for PHP; other languages might be less similar. Look up Professor James Hendler 3

4 Information Architecture and the Enterprise Economies Don t Always Scale Large organizations need: Consistent processes Clear and consistent communications The purpose of an organization is to coordinate the efforts of many people. However, technology drives decentralization. The Decentralizing Nature of Technology Compare and contrast: A personal Web site A corporate or university Web site Building a Web page is easy Everyone in the enterprise will want to do it They will all be different! 4

5 The Corporate Portal Model Problems Where to begin? Silos of information Same concept, different labels Different concept, same labels Inconsistent navigation systems Ignorance is not bliss! The cost of finding information The cost of not finding information Inconsistent information The Case for Centralization Increased Revenues Reduced Costs Clearer Communication Shared Expertise Centralization is Inevitable Anyway (?) 5

6 Roadblocks to Centralization Unrealistic Scheduling No Stone Unturned The Monolithic Effort Human Nature Ignored Insufficient Support A Framework for Centralization A New Business Unit Phasing In Strategy and Tactics A New Business Unit Establish, with support of senior management, a business unit for IA and content management. Become a service provider. Become self-supporting. Offer basic services free (For consultants, this is pitching. ) Bill for premium services. Billing limits demand. (Good.) A Phased Rollout You cannot do everything all at once. Identify the best clients Content Users Context You will have to sell your services! A client information checklist Projecting demand Strategy and Tactics Separate strategy and tactics Strategy Strategic alignment Financial and political stability Management and performance Tactics Implementing IA for clients Questions 6

Java Applets This is not a Java course! (You re supposed to know about Java.)

Java Applets This is not a Java course! (You re supposed to know about Java.) IT 3203 Introduction to Web Development Java and the Web IA and the Enterprise November 26 28 Study Abroad Spend July in Madrid Informational meeting: Wednesday, November 28 3:00 pm in Room J-308 http://spsumadrid08.blogspot.com/

More information

PHP. How Web Applications interact with server side databases CRUD. Connecting and using mysql from PHP PHP provides many mysql specific functions

PHP. How Web Applications interact with server side databases CRUD. Connecting and using mysql from PHP PHP provides many mysql specific functions PHP How Web Applications interact with server side databases CRUD Connecting and using mysql from PHP PHP provides many mysql specific functions mysql_connect mysql_select_db mysql_query mysql_fetch_array

More information

IELM 511 Information Systems Design Labs 5 and 6. DB creation and Population

IELM 511 Information Systems Design Labs 5 and 6. DB creation and Population IELM 511 Information Systems Design Labs 5 and 6. DB creation and Population In this lab, your objective is to learn the basics of creating and managing a DB system. One way to interact with the DBMS (MySQL)

More information

More loops. Control structures / flow control. while loops. Loops / Iteration / doing things over and over and over and over...

More loops. Control structures / flow control. while loops. Loops / Iteration / doing things over and over and over and over... Control structures / flow control More loops while loops if... else Switch for loops while... do.. do... while... Much of this material is explained in PHP programming 2nd Ed. Chap 2 Control structures

More information

PHP Development - Introduction

PHP Development - Introduction PHP Development - Introduction Php Hypertext Processor PHP stands for PHP: Hypertext Preprocessor PHP is a server-side scripting language, like ASP PHP scripts are executed on the server PHP supports many

More information

Ghislain Fourny. Information Systems for Engineers 7. The ecosystem around SQL

Ghislain Fourny. Information Systems for Engineers 7. The ecosystem around SQL Ghislain Fourny Information Systems for Engineers 7. The ecosystem around SQL How do we use databases? How do we use databases? Simple database installed on a machine (MySQL, PostgreSQL...). User inserts

More information

Server side scripting and databases

Server side scripting and databases Example table Server side scripting and databases student How Web Applications interact with server side databases - part 2 student kuid lastname money char char int student table Connecting and using

More information

PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008.

PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008. PHP: Cookies, Sessions, Databases. CS174. Chris Pollett. Sep 24, 2008. Outline. How cookies work. Cookies in PHP. Sessions. Databases. Cookies. Sometimes it is useful to remember a client when it comes

More information

A QUICK GUIDE TO PROGRAMMING FOR THE WEB. ssh (then type your UBIT password when prompted)

A QUICK GUIDE TO PROGRAMMING FOR THE WEB. ssh (then type your UBIT password when prompted) A QUICK GUIDE TO PROGRAMMING FOR THE WEB TO GET ACCESS TO THE SERVER: ssh Secure- Shell. A command- line program that allows you to log in to a server and access your files there as you would on your own

More information

COMP390 (Design &) Implementation

COMP390 (Design &) Implementation COMP390 (Design &) Implementation Phil (& Dave s) rough guide Consisting of some ideas to assist the development of large and small projects in Computer Science (and a chance for me to try out some features

More information

COMP390 (Design &) Implementation

COMP390 (Design &) Implementation COMP390 (Design &) Implementation A rough guide Consisting of some ideas to assist the development of large and small projects in Computer Science (With thanks to Dave Shield) Design & Implementation What

More information

COMP390 (Design &) Implementation

COMP390 (Design &) Implementation COMP390 (Design &) Implementation Phil (& Dave s) rough guide Consisting of some ideas to assist the development of large and small projects in Computer Science (and a chance for me to try out some features

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

Getting Started in CAMS Enterprise

Getting Started in CAMS Enterprise CAMS Enterprise Getting Started in CAMS Enterprise Unit4 Education Solutions, Inc. Published: 18 May 2016 Abstract This document is designed with the new user in mind. It details basic features and functions

More information

Book Review. Information Architecture for the World Wide Web (Second Edition) by Louis Rosenfeld & Peter Morville

Book Review. Information Architecture for the World Wide Web (Second Edition) by Louis Rosenfeld & Peter Morville Book Review Information Architecture for the World Wide Web (Second Edition) by Louis Rosenfeld & Peter Morville Catriona Cornett IST 413 April 16, 2007 Introduction Information Architecture for the World

More information

Previously everyone in the class used the mysql account: Username: csci340user Password: csci340pass

Previously everyone in the class used the mysql account: Username: csci340user Password: csci340pass Database Design, CSCI 340, Spring 2016 SQL, Transactions, April 15 Previously everyone in the class used the mysql account: Username: csci340user Password: csci340pass Personal mysql accounts have been

More information

LISUG web site project

LISUG web site project Google AdWords LISUG web site project Web site design considerations SEO (Search Engine Optimization) Keyword Analysis PHP MySQL by Alan Baisch Important steps and strategies Review existing website and

More information

Previously everyone in the class used the mysql account: Username: csci340user Password: csci340pass

Previously everyone in the class used the mysql account: Username: csci340user Password: csci340pass Database Design, CSCI 340, Spring 2016 SQL, Transactions, April 15 Previously everyone in the class used the mysql account: Username: csci340user Password: csci340pass Personal mysql accounts have been

More information

Lecture 13: MySQL and PHP. Monday, March 26, 2018

Lecture 13: MySQL and PHP. Monday, March 26, 2018 Lecture 13: MySQL and PHP Monday, March 26, 2018 MySQL The Old Way In older versions of PHP, we typically used functions that started with mysql_ that did not belong to a class For example: o o o o mysql_connect()

More information

Integration Best Practices: Net Change Design Patterns

Integration Best Practices: Net Change Design Patterns Integration Best Practices: Net Change Design Patterns HERE TODAY AND HERE TOMORROW, TOO: THE CHALLENGE OF CAPTURING CHANGED DATA BETWEEN APPLICATIONS. JANUARY 2008 WRITTEN BY: PETER R. CHASE - EXECUTIVE

More information

Creating the Data Layer

Creating the Data Layer Creating the Data Layer When interacting with any system it is always useful if it remembers all the settings and changes between visits. For example, Facebook has the details of your login and any conversations

More information

Boren Campus Representative Application Management and Review Instructions

Boren Campus Representative Application Management and Review Instructions Boren Campus Representative Application Management and Review Instructions Overview The 2018 Boren Fellowship and Scholarship applications are now hosted on the Technolutions Slate (Slate) platform. Please

More information

- Application Developers: Responsible to implement the solutions. How Oracle can meet Data Warehouse End-User Expectations

- Application Developers: Responsible to implement the solutions. How Oracle can meet Data Warehouse End-User Expectations ABSTRACT This paper presents the key steps and the responsibilities of a Data Warehouse or Data Mart Architect in developing a Data Warehouse or Data Mart project. The emphasis is placed on the process

More information

Using imis Security for Access Control

Using imis Security for Access Control Using imis Security for Access Control Friday, April 6, 2018 11:15 AM 12:15 PM Bruce Wilson, Senior Director, Technology and Management Consulting RSM US LLP About me Senior Director, Technology and Management

More information

Cybersecurity, Trade, and Economic Development

Cybersecurity, Trade, and Economic Development Cybersecurity, Trade, and Economic Development G7 ICT Priorities: Technology, Innovation, and the Global Economy UNCTAD E-Commerce Week Danielle Kriz Senior Director, Global Policy Palo Alto Networks April

More information

Architecture Assessment Case Study. Single Sign on Approach Document PROBLEM: Technology for a Changing World

Architecture Assessment Case Study. Single Sign on Approach Document PROBLEM: Technology for a Changing World Technology for a Changing World Architecture Assessment Case Study Single Sign on Approach Document PROBLEM: Existing portal has Sign on Capabilities based on the SQL Server database and it s not having

More information

Configuring Microsoft Outlook to Connect to Hosted Exchange Service

Configuring Microsoft Outlook to Connect to Hosted Exchange Service Configuring Microsoft Outlook to Connect to Hosted Exchange Service Configuring Microsoft Outlook for Hosted Exchange Service Version: 1.0 Updated on: April 27, 2011 Page 1 of 7 TABLE OF CONTENTS Configuring

More information

CSCE 548 Building Secure Software SQL Injection Attack

CSCE 548 Building Secure Software SQL Injection Attack CSCE 548 Building Secure Software SQL Injection Attack Professor Lisa Luo Spring 2018 Previous class DirtyCOW is a special type of race condition problem It is related to memory mapping We learned how

More information

Nelnet Enterprise Student Account Online Billing and Payment System. Undergraduate Student User Guide

Nelnet Enterprise Student Account Online Billing and Payment System. Undergraduate Student User Guide Nelnet Enterprise Student Account Online Billing and Payment System Undergraduate Student User Guide Student Access You may access Nelnet Enterprise by logging on to your Secure Hollins HIS account at

More information

A guide for assembling your Jira Data Center team

A guide for assembling your Jira Data Center team A guide for assembling your Jira Data Center team Contents 01 Getting started 02 Helpful roles for your Jira Data Center team 03 Helpful expertise for your Jira Data Center team 04 Pro tips & best practices

More information

2017 Politecnico di Torino 1

2017 Politecnico di Torino 1 SQL for the applications Call Level Interface Requests are sent to the DBMS through functions of the host language solution based on predefined interfaces API, Application Programming Interface SQL instructions

More information

2017 Politecnico di Torino 1

2017 Politecnico di Torino 1 SQL for the applications Call Level Interface Requests are sent to the DBMS through functions of the host language solution based on predefined interfaces API, Application Programming Interface SQL instructions

More information

Table of Contents. Navigate the Management Menu. 911 Management Page

Table of Contents. Navigate the Management Menu. 911 Management Page ucontrol Managing 911 Information Important note regarding 911 service: VoIP 911 service has certain limitations relative to Enhanced 911 service that is available on most traditional telephone service.

More information

setup.exe file must be run locally. The setup.exe file was easy to find, in the LumiraTeamServer subfolder.

setup.exe file must be run locally. The setup.exe file was easy to find, in the LumiraTeamServer subfolder. Lumira Edge Install As a moderately experienced user of SAP Lumira Desktop, I am knowledgeable in the utility and functionality that it provides. It is ideal for manipulating, editing, and formatting data

More information

i2i Systems Self-Service Support Portal

i2i Systems Self-Service Support Portal i2i Systems Self-Service Support Portal User Guide The i2i Systems Self-Service Support Portal is your gateway to quality customer service. You can access the portal 24x7 to get help or support, or to

More information

Databases (MariaDB/MySQL) CS401, Fall 2015

Databases (MariaDB/MySQL) CS401, Fall 2015 Databases (MariaDB/MySQL) CS401, Fall 2015 Database Basics Relational Database Method of structuring data as tables associated to each other by shared attributes. Tables (kind of like a Java class) have

More information

New Dashboard - Help Screens

New Dashboard - Help Screens New Dashboard - Help Screens Welcome to the new Panacea Dashboard. This document aims to provide you with concise explanations of the menu system and features available to you as a Panacea user account

More information

Announcements. PS 3 is out (see the usual place on the course web) Be sure to read my notes carefully Also read. Take a break around 10:15am

Announcements. PS 3 is out (see the usual place on the course web) Be sure to read my notes carefully Also read. Take a break around 10:15am Announcements PS 3 is out (see the usual place on the course web) Be sure to read my notes carefully Also read SQL tutorial: http://www.w3schools.com/sql/default.asp Take a break around 10:15am 1 Databases

More information

Importing to WIRED Contact From a Database File. Reference Guide

Importing to WIRED Contact From a Database File. Reference Guide Importing to WIRED Contact From a Database File Reference Guide Table of Contents Preparing the Database table for Import... 2 Locating the Field Names for the Import... 2 Importing the File to WiredContact...

More information

Remote Desktop How to guide

Remote Desktop How to guide CaseMap Remote Desktop for Windows User Contents How to open Remote Desktop Connection and Login to the Terminal Server... 2 How to save your connection settings and create a shortcut on your desktop...

More information

NOSQL Databases and Neo4j

NOSQL Databases and Neo4j NOSQL Databases and Neo4j Database and DBMS Database - Organized collection of data The term database is correctly applied to the data and their supporting data structures. DBMS - Database Management System:

More information

Information Governance: What About Business Applications & Structured Data? Webinar for ACC Hosted by Navigant March 19, 2015

Information Governance: What About Business Applications & Structured Data? Webinar for ACC Hosted by Navigant March 19, 2015 Information Governance: What About Business Applications & Structured Data? Webinar for ACC Hosted by Navigant March 19, 2015 Introduction» Introduction of Pamela Strong Legal Technology Solutions (LTS)

More information

Running SQL in Java and PHP

Running SQL in Java and PHP Running SQL in Java and PHP FCDB 9.6 9.7 Dr. Chris Mayfield Department of Computer Science James Madison University Mar 01, 2017 Introduction to JDBC JDBC = Java Database Connectivity 1. Connect to the

More information

Database-Aware Fault Localization for Dynamic Web Applications

Database-Aware Fault Localization for Dynamic Web Applications Database-Aware Fault Localization for Dynamic Web Applications Hung Viet Nguyen, Hoan Anh Nguyen, Tung Thanh Nguyen, Tien N. Nguyen Iowa State University ICSM 2013 Sep 22-28, 2013 Eindhoven, The Netherlands

More information

REV OBSERVER for WINDOWS

REV OBSERVER for WINDOWS REV OBSERVER for WINDOWS Purpose This document is a step by step guide for installing REV OBSERVER software from the Internet on to a WINDOWS Operating System. Requirements Normal Installation None To

More information

IS 2150 / TEL 2810 Introduction to Security

IS 2150 / TEL 2810 Introduction to Security IS 2150 / TEL 2810 Introduction to Security James Joshi Professor, SIS Lecture 15 April 20, 2016 SQL Injection Cross-Site Scripting 1 Goals Overview SQL Injection Attacks Cross-Site Scripting Attacks Some

More information

Getting started guide for Administrators

Getting started guide for Administrators Getting started guide for Administrators Table of Contents Introduction... 3 Creating the school portal... 5 Navigating the platform... 6 Help Center... 12 Profile... 14 Configuring features... 16 Customizing

More information

Chapter 6 Part2: Manipulating MySQL Databases with PHP

Chapter 6 Part2: Manipulating MySQL Databases with PHP IT215 Web Programming 1 Chapter 6 Part2: Manipulating MySQL Databases with PHP Jakkrit TeCho, Ph.D. Business Information Technology (BIT), Maejo University Phrae Campus Objectives In this chapter, you

More information

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual

Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging. Quick-Start Manual Mobiketa Smart Bulk SMS & Voice SMS Marketing Script with 2-Way Messaging Quick-Start Manual Overview Mobiketa Is a full-featured Bulk SMS and Voice SMS marketing script that gives you control over your

More information

Database Foundations. 6-1 Introduction to Oracle Application Express. Copyright 2015, Oracle and/or its affiliates. All rights reserved.

Database Foundations. 6-1 Introduction to Oracle Application Express. Copyright 2015, Oracle and/or its affiliates. All rights reserved. Database Foundations 6-1 Introduction to Oracle Application Express Roadmap Introduction to Oracle Application Express You are here Structured Query Language (SQL) Data Definition Language (DDL) Data Manipulation

More information

Dropbox User Provisioning and

Dropbox User Provisioning and Dropbox User Provisioning and Sync in SAASPASS support@saaspass.com Contents Introduction... 3 Connect to Dropbox... 3 Sync & Group Mapping... 3 Group Mapping for Sync... 3 Some Sync Policies and Notes...

More information

BDO P11D Enterprise Version 25.0 Getting Started

BDO P11D Enterprise Version 25.0 Getting Started BDO P11D Enterprise Version 25.0 Getting Started Introduction Installation instructions for Version 25.0 are provided in this guide; see Installing P11D Enterprise 2018-19. Please read the instructions

More information

DATABASE SYSTEMS. Introduction to MySQL. Database System Course, 2016

DATABASE SYSTEMS. Introduction to MySQL. Database System Course, 2016 DATABASE SYSTEMS Introduction to MySQL Database System Course, 2016 AGENDA FOR TODAY Administration Database Architecture on the web Database history in a brief Databases today MySQL What is it How to

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

s2tier Remote Desktop Instructions

s2tier Remote Desktop Instructions s2tier Remote Desktop Instructions These instructions are for s2tier users only. If you do not know if you are a 2tier user, then you are not a s2tier user. General Guidelines The s2tier servers are s2tier1,

More information

MIT Database Management Systems Lesson 01: Introduction

MIT Database Management Systems Lesson 01: Introduction MIT 22033 Database Management Systems Lesson 01: Introduction By S. Sabraz Nawaz Senior Lecturer in MIT, FMC, SEUSL Learning Outcomes At the end of the module the student will be able to: Describe the

More information

Running SQL in Java and PHP

Running SQL in Java and PHP Running SQL in Java and PHP FCDB 9.6 9.7 Dr. Chris Mayfield Department of Computer Science James Madison University Feb 28, 2018 Introduction to JDBC JDBC = Java Database Connectivity 1. Connect to the

More information

Evolution of Capabilities Hunter Downey, Solution Advisor

Evolution of Capabilities Hunter Downey, Solution Advisor Evolution of Capabilities Hunter Downey, Solution Advisor What is our suite? Crystal Reports Web Intelligence Dashboards Explorer Mobile Lumira Predictive 2011 SAP. All rights reserved. 2 What is our suite?

More information

If a student logs in using the Google or Microsoft options on the bottom of the screen, they will get to the guest portal. If you have students

If a student logs in using the Google or Microsoft options on the bottom of the screen, they will get to the guest portal. If you have students 1 If a student logs in using the Google or Microsoft options on the bottom of the screen, they will get to the guest portal. If you have students saying I am logged in but I don t see form it is probably

More information

Accelerate Your Cloud Journey

Accelerate Your Cloud Journey Dubai, UAE 20th March 2013 Accelerate Your Cloud Journey James Spearman Dimension Data - Solutions Architect Cloud 2012 2011 Cisco and/or its affiliates. All rights reserved. Cisco Connect 1 Dimension

More information

Chapter 9 SQL in a server environment

Chapter 9 SQL in a server environment Chapter 9 SQL in a server environment SQL in a Programming Environment embedded SQL persistent stored modules Database-Connection Libraries Call-level interface (CLI) JDBC PHP Database connection The third

More information

End o' semester clean up. A little bit of everything

End o' semester clean up. A little bit of everything End o' semester clean up A little bit of everything Database Optimization Two approaches... what do you think they are? Improve the Hardware Has been a great solution in recent decades, thanks Moore! Throwing

More information

Instructions for Using PEP Enhancements. Create a Template for Multiple Enrollment Applications

Instructions for Using PEP Enhancements. Create a Template for Multiple Enrollment Applications Instructions for Using PEP Enhancements Information posted April 23, 2010 Enhancements to Provider Enrollment on the Portal (PEP) will be implemented on May 3, 2010. Providers and account administrators

More information

Accelerating Citizen Access with Portals

Accelerating Citizen Access with Portals Accelerating Citizen Access with Portals Allen Hy Cheung, Senior IT Specialist, Lotus Software, IBM Software Group Agenda Business Unit or Product Name Internet Portal as a Driver What Portal can help

More information

CSE 530A ACID. Washington University Fall 2013

CSE 530A ACID. Washington University Fall 2013 CSE 530A ACID Washington University Fall 2013 Concurrency Enterprise-scale DBMSs are designed to host multiple databases and handle multiple concurrent connections Transactions are designed to enable Data

More information

5 OAuth EssEntiAls for APi AccEss control layer7.com

5 OAuth EssEntiAls for APi AccEss control layer7.com 5 OAuth Essentials for API Access Control layer7.com 5 OAuth Essentials for API Access Control P.2 Introduction: How a Web Standard Enters the Enterprise OAuth s Roots in the Social Web OAuth puts the

More information

SYSTEM ADMINISTRATION GUIDE VERSION 15.2

SYSTEM ADMINISTRATION GUIDE VERSION 15.2 SYSTEM ADMINISTRATION GUIDE VERSION 15.2 Copyright 2017 FileHold Systems Inc. All rights reserved. For further information about this manual or other FileHold Systems products, contact us at Suite 250-4664

More information

12d Synergy Server Installation Guide

12d Synergy Server Installation Guide 12d Synergy Server Installation Guide Version 3.0 April 2017 12d Solutions Pty Ltd ACN 101 351 991 PO Box 351 Narrabeen NSW Australia 2101 (02) 9970 7117 (02) 9970 7118 support@12d.com www.12d.com 12d

More information

WEEK 3 TERADATA EXERCISES GUIDE

WEEK 3 TERADATA EXERCISES GUIDE WEEK 3 TERADATA EXERCISES GUIDE The Teradata exercises for this week assume that you have completed all of the MySQL exercises, and know how to use GROUP BY, HAVING, and JOIN clauses. The quiz for this

More information

PHYSICIAN S OFFICE STAFF Instructions for Paragon s WebStation for Physicians

PHYSICIAN S OFFICE STAFF Instructions for Paragon s WebStation for Physicians PHYSICIAN S OFFICE STAFF Instructions for Paragon s WebStation for Physicians Login with your assigned individual User Name and Password. Physician Office Staff are issued inquiry access only in WebStation

More information

Gartner Mid Market Trends- Featured at MES #MES17

Gartner Mid Market Trends- Featured at MES #MES17 Gartner Mid Market Trends- Featured at MES #MES17 @ T h e M i d m a r ke t C I O M i d s i ze E n t e r p r i s e S u m m i t MES SPRING April 30 May 2, 2017 Gaylord Opryland Resort Nashville, TN MES FALL

More information

User Guide for the Online Application. OCC Front Office Portal G3 Front Office2.5

User Guide for the Online Application. OCC Front Office Portal G3 Front Office2.5 User Guide for the Online Application OCC Front Office Portal G3 Front Office2.5 0 TABLE OF CONTENTS ONLINE APPLICATION PROCESS o How Do I Apply For Export Market Access? 2 COMPETING THE APPLICATION FORM

More information

Opaali Portal Quick guide

Opaali Portal Quick guide Opaali Portal Quick guide Company information Telia Finland Oyj Teollisuuskatu 15, 00510 HELSINKI, FI Registered office: Helsinki Business ID 1475607-9, VAT No. FI14756079 1 (40) Page 2 (40) Copyright

More information

PHP: Databases and Classes. CS174. Chris Pollett. Sep 29, 2008.

PHP: Databases and Classes. CS174. Chris Pollett. Sep 29, 2008. PHP: Databases and Classes. CS174. Chris Pollett. Sep 29, 2008. Outline. Databases. Classes. Connecting to MySQL from PHP. To start a connect to a MySQL database one can issue the command: $db = mysql_connect();

More information

Center For Emergency Response and Public Safety

Center For Emergency Response and Public Safety Student Login Instructions Welcome to CERPS (the Center for Emergency Response ), your online learning portal for the Ontario Fire Service. These instructions will help you to log into your online course

More information

IT 3203 Introduction to Web Development

IT 3203 Introduction to Web Development IT 3203 Introduction to Web Development Databases and SQL April 7 Notice: This session is being recorded. Copyright 2007 by Bob Brown Disadvantages of File Processing Program-Data Dependence All programs

More information

Checklist for Testing of Web Application

Checklist for Testing of Web Application Checklist for Testing of Web Application Web Testing in simple terms is checking your web application for potential bugs before its made live or before code is moved into the production environment. During

More information

Sample Title. Dancing with the Magento 2 APIs. A guided tour of the API dance floor. DevelopersParadise 2016 / Opatija / Croatia

Sample Title. Dancing with the Magento 2 APIs. A guided tour of the API dance floor. DevelopersParadise 2016 / Opatija / Croatia Sample Title Dancing with the Magento 2 APIs A guided tour of the API dance floor Bill Curtis CTO - Sweet Tooth Overview Use cases for using the Magento 2 API How to make API calls Extending the API

More information

Database Connectivity using PHP Some Points to Remember:

Database Connectivity using PHP Some Points to Remember: Database Connectivity using PHP Some Points to Remember: 1. PHP has a boolean datatype which can have 2 values: true or false. However, in PHP, the number 0 (zero) is also considered as equivalent to False.

More information

Install and Configure the TS Agent

Install and Configure the TS Agent Install or Upgrade the TS Agent, page 1 Start the TS Agent Configuration Interface, page 2 Configure the TS Agent, page 2 Creating the REST VDI Role, page 7 Install or Upgrade the TS Agent Before You Begin

More information

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F.

Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. ! Steps A. Identify version number B. Access configuration page C. Basic settings D. Advance settings E. Front end experience settings F. Save and complete! A. Identify version number A.1. Log in to Admin

More information

Archivists Toolkit Internal Database

Archivists Toolkit Internal Database Archivists Toolkit Internal Database The Archivists Toolkit now includes (AT 2.0, update 9 and later), support for an internal database based on HyperSQL 2.0 (HSQLDB). HyperSQL is a small, reliable, high

More information

Install and Configure the TS Agent

Install and Configure the TS Agent Install the TS Agent, page 1 Start the TS Agent Configuration Interface, page 2 Configure the TS Agent, page 2 Creating the REST VDI Role, page 7 Install the TS Agent Before You Begin Confirm that the

More information

Connecting Spotfire to Data Sources with Information Designer

Connecting Spotfire to Data Sources with Information Designer Connecting Spotfire to Data Sources with Information Designer Margot Goodwin, Senior Manager, Application Consulting September 15, 2016 HUMAN HEALTH ENVIRONMENTAL HEALTH 2014 PerkinElmer Spotfire Information

More information

CMS Manual with Shopping Cart (Shopp)

CMS Manual with Shopping Cart (Shopp) CMS Manual with Shopping Cart (Shopp) Contact Details: Ray Giridharan Email: ray@totalmarketingaustralia.com.au Contact: 0433 399 294 Website: www.totalmarketingaustralia.com.au Index 1. How to Login to

More information

Data Crow Version 2.0

Data Crow Version 2.0 Data Crow Version 2.0 http://www.datacrow.net Document version: 4.1 Created by: Robert Jan van der Waals Edited by: Paddy Barrett Last Update: 26 January, 2006 1. Content 1. CONTENT... 2 1.1. ABOUT DATA

More information

ACT! by Sage. Premium for Web 2007 (9.0) User s Guide

ACT! by Sage. Premium for Web 2007 (9.0) User s Guide ACT! by Sage Premium for Web 2007 (9.0) User s Guide ACT! by Sage Premium for Web 2007 (9.0) User s Guide Copyright Notice and Trademark 2006 Sage Software SB, Inc. All Rights Reserved. The Sage Software

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 Installation and Setup Guide Revised on 09/25/2014 TABLE OF CONTENTS ROCK-POND REPORTING 2.1... 1 SUPPORT FROM ROCK-POND SOLUTIONS... 2 ROCK-POND REPORTING OVERVIEW... 2 INFRASTRUCTURE

More information

RLink360. Webinar Training

RLink360. Webinar Training RLink360 Webinar Training What s New 1 st Term Direct Billing Online credit card payments for direct billed policies PDF Documents can be accessed through the Documents tab Business Requests can now be

More information

Introducing SQL Query Verifier Plugin

Introducing SQL Query Verifier Plugin Introducing SQL Query Verifier Plugin IBM Application Runtime Expert for i Document version: 1.0 To download the master version of this document, visit product home site: http://www.ibm.com/systems/power/software/i/are/index.html

More information

Reading Area Community College. Password Manager User Guide

Reading Area Community College. Password Manager User Guide Reading Area Community College Password Manager User Guide Prepared by: Gessica Rohella (LookingGlass+Kryptos BA Team) Creation Date: Feb 16, 2017 Last Updated: Feb 22, 2017 Table of Contents Introduction...

More information

Solar-Driven Chemistry Page 1 of 19. II. CVs and publications of all applicants Altogether not more than 2 pages A4 per applicant!

Solar-Driven Chemistry Page 1 of 19. II. CVs and publications of all applicants Altogether not more than 2 pages A4 per applicant! Solar-Driven Chemistry Page 1 of 19 Pre-proposal content I. Project description and appendix Description of the scientific ideas highlighting the novelty, originality and feasibility as well as the scientific

More information

BIG CLIMB Profile Guide

BIG CLIMB Profile Guide BIG CLIMB Profile Guide A step by step guide on how to create your Big Climb personal page and profile to enhance the fundraising experience. Helpful hints before getting started: 1. The participant center

More information

Office of Human Resources. Hiring Adjuncts CREATING THE POSTING (NO POSITION DESCRIPTION REQUIRED!)

Office of Human Resources. Hiring Adjuncts CREATING THE POSTING (NO POSITION DESCRIPTION REQUIRED!) Office of Human Resources Hiring Adjuncts CREATING THE POSTING (NO POSITION DESCRIPTION REQUIRED!) Adjunct Initiator Dept Chair Employment Team Confirm that you are in the Applicant Tracking module (blue).

More information

Quantum Admin. Contents

Quantum Admin. Contents Quantum Admin Contents Date Created... 2 Project Title... 2 Project Mission Statement... 2 Description... 2 Overview... 2 General... 2 Security... 2 Launching Admin... 2 Themes... 3 Users... 5 Work Breakdown

More information

Draft. Students Table. FName LName StudentID College Year. Justin Ennen Science Senior. Dan Bass Management Junior

Draft. Students Table. FName LName StudentID College Year. Justin Ennen Science Senior. Dan Bass Management Junior Chapter 6 Introduction to SQL 6.1 What is a SQL? When would I use it? SQL stands for Structured Query Language. It is a language used mainly for talking to database servers. It s main feature divisions

More information

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design.

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design. FINAL REPORT Table of Contents I) Project Planning II) User Analysis III) Tasks Analysis IV) Storyboard V) Function Design VI) Scenario Design VII) Database VIII) Usability Questionnaire IX) System Version

More information

Internet of Things. Internet of Everything. Presented By: Louis McNeil Tom Costin

Internet of Things. Internet of Everything. Presented By: Louis McNeil Tom Costin Internet of Things Internet of Everything Presented By: Louis McNeil Tom Costin Agenda Session Topics What is the IoT (Internet of Things) Key characteristics & components of the IoT Top 10 IoT Risks OWASP

More information

CSC 215 PROJECT 2 DR. GODFREY C. MUGANDA

CSC 215 PROJECT 2 DR. GODFREY C. MUGANDA CSC 215 PROJECT 2 DR. GODFREY C. MUGANDA 1. Project Overview In this project, you will create a PHP web application that you can use to track your friends. Along with personal information, the application

More information

Database-Connection Libraries. Java Database Connectivity PHP

Database-Connection Libraries. Java Database Connectivity PHP Database-Connection Libraries Call-Level Interface Java Database Connectivity PHP 1 An Aside: SQL Injection SQL queries are often constructed by programs. These queries may take constants from user input.

More information