Chapter 6-2 MS SQL Server (Cont.) Learn how to create databases with SQL Server 2000 Creating a table with SQL Server 2000

Size: px
Start display at page:

Download "Chapter 6-2 MS SQL Server (Cont.) Learn how to create databases with SQL Server 2000 Creating a table with SQL Server 2000"

Transcription

1 Chapter 6-2 MS SQL Server (Cont.) Learn how to create databases with SQL Server 2000 Creating a table with SQL Server

2 Learn how to create databases with SQL Server 2000 SQL Server Identifiers Identifiers can be from 1 to 128 Unicode characters in length including letters, symbols, and numbers. The first character must be a letter or the following #, or _ (underscore). You can use the following symbols after the first character: #, $, and _. Identifiers that begin with symbol are used as local variables. Identifiers that begin with the # symbol are used to signify that the object you are creating is a temporary object and can be referenced by the user during the session. SQL Server Database 2

3 Creating a database With SQL Server 2000, you can create databases using one of these three methods: The Create Database Wizard The SQL Server Enterprise Manager console Transact SQL (T-SQL) Using the Create Database Wizard If you're new to SQL Server, the best way to create a new database is to use the Create Database Wizard. Once you are comfortable with using SQL Server Enterprise Manager and/or T-SQL, you can move beyond this wizard to more advanced ways of creating databases. To use the Create Database Wizard: 1. Open the SQL Server Enterprise Manager from the Start menu. 2. Click on the SQL Server instance where you want to create your new database and expand it (using the plus sign to the left). 3. From the Tools menu, choose Wizards. 4. Expand Database and highlight Create Database Wizard (Figure A) and click OK. 3

4 5. When the Welcome To The Create Database Wizard screen appears, click Next, type a database name, and browse to the location where you want to place your database file and transaction logs (Figure B). (Figure B) 6. Click Next and enter the initial size of your primary database (.mdf) file (Figure C). You can add secondary files as well; they will be given an.ndf extension 4

5 7. Click Next and define how you want your database growth to occur (Figure D). 8. Click Next and enter the initial size of your transaction logs. 9. Click Next and define your transaction log database growth. 10. Click Next, review your database settings, and click Finish Manually create a database in Enterprise Manager To manually create a database using SQL Server Enterprise Manager: 1. Open Enterprise Manager and select and expand your SQL Server instance. 2. Right-click on Databases and choose New Database. 3. In the General tab, type a database name (Figure E). 5

6 4. In the Transaction Log tab, you can configure the auto growth size, database log location, and secondary location. 5. Click OK, and your database is created. Creating a database using T-SQL In addition to the two methods mentioned above, you can use T-SQL to create a database. The syntax is as follows: CREATE DATABASE database_name [ ON [ < filespec > [,...n ] ] [, < filegroup > [,...n ] ] ] [ LOG ON { < filespec > [,...n ] } ] [ COLLATE collation_name ] [ FOR LOAD FOR ATTACH ] < filespec > ::= [ PRIMARY ] ( [ NAME =logical_file_name, ] FILENAME ='os_file_name' [, SIZE =size ] [, MAXSIZE = { max_size UNLIMITED } ] [, FILEGROWTH =growth_increment ] ) [,...n ] < filegroup > ::= FILEGROUP filegroup_name < filespec > [,...n ] Let s say, for example, that we wanted to create a database that contains a primary data file called DDAT and one transaction log called DDAT_LOG. We would create this database using the T-SQL syntax shown in Figure G. 6

7 Now, we will take it one step further and add a primary file, two secondary files, and two transaction logs (Figure H), REF: 7

8 Creating a table with SQL Server 2000 Creating a table With SQL Server 2000, you can create tables using one of these three methods: The SQL Server Enterprise Manager console Transact SQL (T-SQL) Using the SQL Server Enterprise Manage Console Category Data Type Comments String char(n), varchar Stores character strings. Binary binary(n), varbinary Stores binary information in two-byte pairs. Integer int, smallint,tinyint Stores integer values. ApproxNumeric float, real Stores approximate numeric information. Exact Numeric decimal, numeric Stores exact numeric information. Special bit, text, image Stores a single bit, character information greater than 8,000 bytes, or image data. Date and Time Money datetime, smalldatetime money, smallmoney Stores dates and times. Stores currency values. Auto-increment timestamp Stores values that are automatically incremented. User-defined Computedcolumn Unicode data nchar, ntext, nvarchar You can create your own data types. Stores the expression used to compute the column. Stores data in a Unicode (double byte per stored character) format. 8

9 Using Transact SQL (T-SQL) Syntax CREATE TABLE [database.[owner.]]table_name ( column_name datatype [identity constraint NULL NOT NULL] [...] ) table_name column_name datatype The last piece is optional is the name of the new table following the rules for identifiers. It must also be unique within the database for its owner. This means that if two users have permission to create tables within a database, the tables themselves might have the same name, but they will still be considered unique because the owner s name forms part of the table name. is the column name and must follow the rules for identifiers is the data type of the column. You can specify the Identity property, field constraints, and nullability. Example 1 CREATE TABLE employees ( emp_id tinyint IDENTITY NOT NULL, Fname char(15), Lname char(20) NOT NULL, Address1 varchar(30), Address2 varchar(30), city varchar(30), state char(2), zipcode char(10), start_date datetime ) Example 2 CREATE TABLE tblorder ( OrdID int NOT NULL, Price money NOT NULL, 9

10 Qty smallint NOT NULL, Total AS Price * Qty ) Drop Tables To drop a table using Transact-SQL, run the DROP TABLE statement. Example 3 DROP TABLE tblemployees 10

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

How To Create A Table In Sql 2.5.2.2 (Ahem)

How To Create A Table In Sql 2.5.2.2 (Ahem) Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or

More information

Using Different Partition Views to Split Up A Large Group Of System

Using Different Partition Views to Split Up A Large Group Of System Turner s Production MS Scalability Table of Contents 1. Initial rollout: Single / Single SQL Database -- March 2nd, 2009 2. Dual s / Dual SQL Databases Spring 2009 3. Redundant Application Database(s)

More information

Ontrack PowerControls V8.1 for SQL ReadMe

Ontrack PowerControls V8.1 for SQL ReadMe Ontrack PowerControls V8.1 for SQL ReadMe Contents About the Free Trial Supported Environments Ontrack PowerControls Licensing Ontrack PowerControls Agents Limitations Technical Support About Kroll Ontrack

More information

Ontrack PowerControls User Guide Version 8.0

Ontrack PowerControls User Guide Version 8.0 ONTRACK POWERCONTROLS Ontrack PowerControls User Guide Version 8.0 Instructions for operating Ontrack PowerControls in Microsoft SQL Server Environments NOVEMBER 2014 NOTICE TO USERS Ontrack PowerControls

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

More information

MS ACCESS DATABASE DATA TYPES

MS ACCESS DATABASE DATA TYPES MS ACCESS DATABASE DATA TYPES Data Type Use For Size Text Memo Number Text or combinations of text and numbers, such as addresses. Also numbers that do not require calculations, such as phone numbers,

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

A Tutorial on SQL Server 2005. CMPT 354 Fall 2007

A Tutorial on SQL Server 2005. CMPT 354 Fall 2007 A Tutorial on SQL Server 2005 CMPT 354 Fall 2007 Road Map Create Database Objects Create a database Create a table Set a constraint Create a view Create a user Query Manage the Data Import data Export

More information

Administração e Optimização de BDs

Administração e Optimização de BDs Departamento de Engenharia Informática 2010/2011 Administração e Optimização de BDs Aula de Laboratório 1 2º semestre In this lab class we will address the following topics: 1. General Workplan for the

More information

SQL Server Table Design - Best Practices

SQL Server Table Design - Best Practices CwJ Consulting Ltd SQL Server Table Design - Best Practices Author: Andy Hogg Date: 20 th February 2015 Version: 1.11 SQL Server Table Design Best Practices 1 Contents 1. Introduction... 3 What is a table?...

More information

Comparison of Open Source RDBMS

Comparison of Open Source RDBMS Comparison of Open Source RDBMS DRAFT WORK IN PROGRESS FEEDBACK REQUIRED Please send feedback and comments to s.hetze@linux-ag.de Selection of the Candidates As a first approach to find out which database

More information

Microsoft SQL Server Connector for Apache Hadoop Version 1.0. User Guide

Microsoft SQL Server Connector for Apache Hadoop Version 1.0. User Guide Microsoft SQL Server Connector for Apache Hadoop Version 1.0 User Guide October 3, 2011 Contents Legal Notice... 3 Introduction... 4 What is SQL Server-Hadoop Connector?... 4 What is Sqoop?... 4 Supported

More information

Microsoft SQL connection to Sysmac NJ Quick Start Guide

Microsoft SQL connection to Sysmac NJ Quick Start Guide Microsoft SQL connection to Sysmac NJ Quick Start Guide This Quick Start will show you how to connect to a Microsoft SQL database it will not show you how to set up the database. Watch the corresponding

More information

Oracle Migration Workbench

Oracle Migration Workbench Oracle Migration Workbench Reference Guide for SQL Server and Sybase Adaptive Server Migrations Release 9.2.0 for Microsoft Windows 98/2000/NT and Microsoft Windows XP September 2002 Part Number: B10254-01

More information

Full Text Search. Objectives. Full Text Search

Full Text Search. Objectives. Full Text Search Full Text Search Full Text Search Objectives Learn about full-text search capabilities in SQL Server 2000. Configure a database for full-text search. Write queries using full-text search syntax. Use full-text

More information

Black Hat Briefings USA 2004 Cameron Hotchkies cameron@0x90.org

Black Hat Briefings USA 2004 Cameron Hotchkies cameron@0x90.org Blind SQL Injection Automation Techniques Black Hat Briefings USA 2004 Cameron Hotchkies cameron@0x90.org What is SQL Injection? Client supplied data passed to an application without appropriate data validation

More information

10+ tips for upsizing an Access database to SQL Server

10+ tips for upsizing an Access database to SQL Server 10 Things 10+ tips for upsizing an Access database to SQL Server Page 1 By Susan Harkins July 31, 2008, 8:03 AM PDT Takeaway: When the time comes to migrate your Access database to SQL Server, you could

More information

4 Logical Design : RDM Schema Definition with SQL / DDL

4 Logical Design : RDM Schema Definition with SQL / DDL 4 Logical Design : RDM Schema Definition with SQL / DDL 4.1 SQL history and standards 4.2 SQL/DDL first steps 4.2.1 Basis Schema Definition using SQL / DDL 4.2.2 SQL Data types, domains, user defined types

More information

Oracle Database E12156-01

Oracle Database E12156-01 Oracle Database SQL Developer Supplementary Information for Microsoft SQL Server and Sybase Adaptive Server Migrations Release 1.5 E12156-01 April 2008 This document contains information for migrating

More information

Financial Data Access with SQL, Excel & VBA

Financial Data Access with SQL, Excel & VBA Computational Finance and Risk Management Financial Data Access with SQL, Excel & VBA Guy Yollin Instructor, Applied Mathematics University of Washington Guy Yollin (Copyright 2012) Data Access with SQL,

More information

How Strings are Stored. Searching Text. Setting. ANSI_PADDING Setting

How Strings are Stored. Searching Text. Setting. ANSI_PADDING Setting How Strings are Stored Searching Text SET ANSI_PADDING { ON OFF } Controls the way SQL Server stores values shorter than the defined size of the column, and the way the column stores values that have trailing

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

SQL. Short introduction

SQL. Short introduction SQL Short introduction 1 Overview SQL, which stands for Structured Query Language, is used to communicate with a database. Through SQL one can create, manipulate, query and delete tables and contents.

More information

Database Migration from MySQL to RDM Server

Database Migration from MySQL to RDM Server MIGRATION GUIDE Database Migration from MySQL to RDM Server A Birdstep Technology, Inc. Raima Embedded Database Division Migration Guide Published: May, 2009 Author: Daigoro F. Toyama Senior Software Engineer

More information

A table is a collection of related data entries and it consists of columns and rows.

A table is a collection of related data entries and it consists of columns and rows. CST 250 MySQL Notes (Source: www.w3schools.com) MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database objects called tables.

More information

Choosing a Data Model for Your Database

Choosing a Data Model for Your Database In This Chapter This chapter describes several issues that a database administrator (DBA) must understand to effectively plan for a database. It discusses the following topics: Choosing a data model for

More information

2/3/04 Doc 7 SQL Part 1 slide # 1

2/3/04 Doc 7 SQL Part 1 slide # 1 2/3/04 Doc 7 SQL Part 1 slide # 1 CS 580 Client-Server Programming Spring Semester, 2004 Doc 7 SQL Part 1 Contents Database... 2 Types of Databases... 6 Relational, Object-Oriented Databases and SQL...

More information

Relational Databases 101

Relational Databases 101 C H A P T E R 3 Relational Databases 101 Introduction Many of my readers come from backgrounds that don t include formal training on the best ways to design and create efficient, business-class relational

More information

Information Technology NVEQ Level 2 Class X IT207-NQ2012-Database Development (Basic) Student s Handbook

Information Technology NVEQ Level 2 Class X IT207-NQ2012-Database Development (Basic) Student s Handbook Students Handbook ... Accenture India s Corporate Citizenship Progra as well as access to their implementing partners (Dr. Reddy s Foundation supplement CBSE/ PSSCIVE s content. ren s life at Database

More information

Best Practices in SQL Programming. Madhivanan

Best Practices in SQL Programming. Madhivanan Best Practices in SQL Programming Madhivanan Do not use irrelevant datatype VARCHAR instead of DATETIME CHAR(N) instead of VARCHAR(N) etc Do not use VARCHAR instead of DATETIME create table #employee_master(emp_id

More information

SQL Server 2014 Development Essentials

SQL Server 2014 Development Essentials SQL Server 2014 Development Essentials Basit A. Masood-Al-Farooq Chapter No 1 "Microsoft SQL Server Database Design Principles" In this package, you will find: The author s biography A preview chapter

More information

Moving the Web Security Log Database

Moving the Web Security Log Database Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server

More information

ODBC Driver Version 4 Manual

ODBC Driver Version 4 Manual ODBC Driver Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned in this manual

More information

3.GETTING STARTED WITH ORACLE8i

3.GETTING STARTED WITH ORACLE8i Oracle For Beginners Page : 1 3.GETTING STARTED WITH ORACLE8i Creating a table Datatypes Displaying table definition using DESCRIBE Inserting rows into a table Selecting rows from a table Editing SQL buffer

More information

Guide to Upsizing from Access to SQL Server

Guide to Upsizing from Access to SQL Server Guide to Upsizing from Access to SQL Server An introduction to the issues involved in upsizing an application from Microsoft Access to SQL Server January 2003 Aztec Computing 1 Why Should I Consider Upsizing

More information

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows)

How To Create An Easybelle History Database On A Microsoft Powerbook 2.5.2 (Windows) Introduction EASYLABEL 6 has several new features for saving the history of label formats. This history can include information about when label formats were edited and printed. In order to save this history,

More information

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today.

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today. & & 1 & 2 Lecture #7 2008 3 Terminology Structure & & Database server software referred to as Database Management Systems (DBMS) Database schemas describe database structure Data ordered in tables, rows

More information

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA www.sybex.com

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA www.sybex.com Essential SQL 2 Essential SQL This bonus chapter is provided with Mastering Delphi 6. It is a basic introduction to SQL to accompany Chapter 14, Client/Server Programming. RDBMS packages are generally

More information

B.1 Database Design and Definition

B.1 Database Design and Definition Appendix B Database Design B.1 Database Design and Definition Throughout the SQL chapter we connected to and queried the IMDB database. This database was set up by IMDB and available for us to use. But

More information

Information Systems SQL. Nikolaj Popov

Information Systems SQL. Nikolaj Popov Information Systems SQL Nikolaj Popov Research Institute for Symbolic Computation Johannes Kepler University of Linz, Austria popov@risc.uni-linz.ac.at Outline SQL Table Creation Populating and Modifying

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

Changing Passwords in Cisco Unity 8.x

Changing Passwords in Cisco Unity 8.x CHAPTER 9 Changing Passwords in Cisco Unity 8.x This chapter contains the following sections: Changing Passwords for the Cisco Unity 8.x Service Accounts (Without Failover), page 9-1 Changing Passwords

More information

Knocker main application User manual

Knocker main application User manual Knocker main application User manual Author: Jaroslav Tykal Application: Knocker.exe Document Main application Page 1/18 U Content: 1 START APPLICATION... 3 1.1 CONNECTION TO DATABASE... 3 1.2 MODULE DEFINITION...

More information

Using Microsoft SQL Server A Brief Help Sheet for CMPT 354

Using Microsoft SQL Server A Brief Help Sheet for CMPT 354 Using Microsoft SQL Server A Brief Help Sheet for CMPT 354 1. Getting Started To Logon to Windows NT: (1) Press Ctrl+Alt+Delete. (2) Input your user id (the same as your Campus Network user id) and password

More information

sqlite driver manual

sqlite driver manual sqlite driver manual A libdbi driver using the SQLite embedded database engine Markus Hoenicka mhoenicka@users.sourceforge.net sqlite driver manual: A libdbi driver using the SQLite embedded database engine

More information

Database Modeling. Creating E/R Diagrams with SQL Server Management Studio and MySQL Workbench. Telerik School Academy

Database Modeling. Creating E/R Diagrams with SQL Server Management Studio and MySQL Workbench. Telerik School Academy Database Modeling Creating E/R Diagrams with SQL Server Management Studio and MySQL Workbench Telerik School Academy Telerik Software Academy http://schoolacademy.telerik.com Table of Contents 1. Data

More information

Field Properties Quick Reference

Field Properties Quick Reference Field Properties Quick Reference Data types The following table provides a list of the available data types in Microsoft Office Access 2007, along with usage guidelines and storage capacities for each

More information

Getting Started with Telerik Data Access. Contents

Getting Started with Telerik Data Access. Contents Contents Overview... 3 Product Installation... 3 Building a Domain Model... 5 Database-First (Reverse) Mapping... 5 Creating the Project... 6 Creating Entities From the Database Schema... 7 Model-First

More information

Manual. TC3 Database Server. TwinCAT. Version Date Order No. 1.2 2015-06-17 TF6420

Manual. TC3 Database Server. TwinCAT. Version Date Order No. 1.2 2015-06-17 TF6420 Manual TC3 Database Server TwinCAT Version Date Order No. 1.2 2015-06-17 TF6420 Table of contents Table of contents 1 Foreword... 5 1.1 Notes on the documentation... 5 1.2 Safety instructions... 6 2 Overview...

More information

Title. Syntax. stata.com. odbc Load, write, or view data from ODBC sources. List ODBC sources to which Stata can connect odbc list

Title. Syntax. stata.com. odbc Load, write, or view data from ODBC sources. List ODBC sources to which Stata can connect odbc list Title stata.com odbc Load, write, or view data from ODBC sources Syntax Menu Description Options Remarks and examples Also see Syntax List ODBC sources to which Stata can connect odbc list Retrieve available

More information

Protecting SQL Server Databases. 1997-2008 Software Pursuits, Inc.

Protecting SQL Server Databases. 1997-2008 Software Pursuits, Inc. Protecting SQL Server Databases 1997-2008 Table of Contents Introduction... 2 Overview of the Backup Process... 2 Configuring SQL Server to Perform Scheduled Backups... 3 Configuring SureSync Relation

More information

Language Reference Guide

Language Reference Guide Language Reference Guide InterBase XE April, 2011 Copyright 1994-2011 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All

More information

Stellar Phoenix. SQL Database Repair 6.0. Installation Guide

Stellar Phoenix. SQL Database Repair 6.0. Installation Guide Stellar Phoenix SQL Database Repair 6.0 Installation Guide Overview Stellar Phoenix SQL Database Repair software is an easy to use application designed to repair corrupt or damaged Microsoft SQL Server

More information

How to set up a database in Microsoft Access

How to set up a database in Microsoft Access Contents Contents... 1 How to set up a database in Microsoft Access... 1 Creating a new database... 3 Enter field names and select data types... 4 Format date fields: how do you want fields with date data

More information

StruxureWare Power Monitoring 7.0.1. Database Upgrade FAQ

StruxureWare Power Monitoring 7.0.1. Database Upgrade FAQ StruxureWare Power Monitoring 7.0.1 Database Upgrade FAQ Document Overview Author Power Software, Schneider Electric Last Revised 10 th July 2012 Document Purpose Upgrading ION-Enterprise to StruxureWare

More information

CSC 443 Data Base Management Systems. Basic SQL

CSC 443 Data Base Management Systems. Basic SQL CSC 443 Data Base Management Systems Lecture 6 SQL As A Data Definition Language Basic SQL SQL language Considered one of the major reasons for the commercial success of relational databases SQL Structured

More information

Release 2.0. Cox Business Online Backup Quick Start Guide

Release 2.0. Cox Business Online Backup Quick Start Guide Cox Business Online Backup Quick Start Guide Release 2.0 Cox Business Online Backup Quick Start Guide i IMPORTANT: You must notify Cox in advance if you would like to move or relocate your telephone Service.

More information

Beginning SQL, Differences Between Oracle and Microsoft

Beginning SQL, Differences Between Oracle and Microsoft Beginning SQL, Differences Between and Microsoft If you're new to SQL or just new to SQL, perhaps coming from a Microsoft environment, it may seem like the two versions should be very similar, and they

More information

Architecting the Future of Big Data

Architecting the Future of Big Data Hive ODBC Driver User Guide Revised: July 22, 2013 2012-2013 Hortonworks Inc. All Rights Reserved. Parts of this Program and Documentation include proprietary software and content that is copyrighted and

More information

Informatica PowerExchange for Microsoft Azure SQL Data Warehouse (Version 10.1) User Guide

Informatica PowerExchange for Microsoft Azure SQL Data Warehouse (Version 10.1) User Guide Informatica PowerExchange for Microsoft Azure SQL Data Warehouse (Version 10.1) User Guide Informatica PowerExchange for Microsoft Azure SQL Data Warehouse User Guide Version 10.1 June 2016 Copyright (c)

More information

Metadata Import Plugin User manual

Metadata Import Plugin User manual Metadata Import Plugin User manual User manual for Metadata Import Plugin 1.0 Windows, Mac OS X and Linux August 30, 2013 This software is for research purposes only. CLC bio Silkeborgvej 2 Prismet DK-8000

More information

MYSQL DATABASE ACCESS WITH PHP

MYSQL DATABASE ACCESS WITH PHP MYSQL DATABASE ACCESS WITH PHP Fall 2009 CSCI 2910 Server Side Web Programming Typical web application interaction Database Server 3 tiered architecture Security in this interaction is critical Web Server

More information

GO!NotifyLink. Database Maintenance. GO!NotifyLink Database Maintenance 1

GO!NotifyLink. Database Maintenance. GO!NotifyLink Database Maintenance 1 GO!NotifyLink Database Maintenance GO!NotifyLink Database Maintenance 1 Table of Contents Database Maintenance 3 Database Cleanup... 3 Database Backups... 3 Database Configuration... 4 The Procedure via

More information

Success Keys For Migrating From Sybase ASE to DB2 UDB

Success Keys For Migrating From Sybase ASE to DB2 UDB White Paper Success Keys For Migrating From Sybase ASE to DB2 UDB Part 1: Data Migration The purpose of this paper is to describe the key success factors that help migrate the Sybase Database schema, underlying

More information

Chapter 4: Database Design

Chapter 4: Database Design Chapter 4: Chapter 4: Objectives Understand data integrity concepts. Learn how to normalize data. Work with SQL Server s tools for enforcing data integrity. Implement primary and foreign keys. Use Declarative

More information

Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual

Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual Lab Manual Databases Microsoft Access 1 Table of Contents Lab 1: Introduction to Microsoft Access... 3 Getting started... 3 Tables... 3 Primary Keys... 6 Field Properties... 7 Validation Rules... 11 Input

More information

1. Database basics. 2. Central or distributed database. MonitorMagic Database Reference Version 1.2, November 2004

1. Database basics. 2. Central or distributed database. MonitorMagic Database Reference Version 1.2, November 2004 1. Database basics MonitorMagic supports recording monitoring data to a database for graphing and reporting purposes. This document describes some best practice examples in using a database with MonitorMagic.

More information

DATABASE ADMINISTRATION SQL SERVER STANDARDS

DATABASE ADMINISTRATION SQL SERVER STANDARDS DATABASE ADMINISTRATION SQL SERVER STANDARDS SQL Server Naming Conventions and Standards 3 1.0 Databases, Files, and File Paths 3 2.0 Tables and Views 3 3.0 Columns 3 4.0 Indexes 3 5.0 Stored Procedures

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

Database Administration with MySQL

Database Administration with MySQL Database Administration with MySQL Suitable For: Database administrators and system administrators who need to manage MySQL based services. Prerequisites: Practical knowledge of SQL Some knowledge of relational

More information

Super SQL Server Systems Errata List (Last Updated 18 November 2006) Table of Contents:

Super SQL Server Systems Errata List (Last Updated 18 November 2006) Table of Contents: Super SQL Server Systems Errata List (Last Updated 18 November 2006) Table of Contents: Microsoft Visual C++ - WIN32 DLL xp_hellovcdll should read Microsoft Visual C++ - WIN32 DLL Microsoft Visual C++

More information

Install MS SQL Server 2012 Express Edition

Install MS SQL Server 2012 Express Edition Install MS SQL Server 2012 Express Edition Sohodox now works with SQL Server Express Edition. Earlier versions of Sohodox created and used a MS Access based database for storing indexing data and other

More information

Introduction This document s purpose is to define Microsoft SQL server database design standards.

Introduction This document s purpose is to define Microsoft SQL server database design standards. Introduction This document s purpose is to define Microsoft SQL server database design standards. The database being developed or changed should be depicted in an ERD (Entity Relationship Diagram). The

More information

Using Business Activity Monitoring

Using Business Activity Monitoring bc Using Business Activity Monitoring Workbench July 2008 Adobe LiveCycle ES Update 1 Update 1 Using Business Activity Monitoring Workbench Portions Copyright 2008 Adobe Systems Incorporated. All rights

More information

Database Migration : An In Depth look!!

Database Migration : An In Depth look!! Database Migration : An In Depth look!! By Anil Mahadev anilm001@gmail.com As most of you are aware of the fact that just like operating System migrations are taking place, databases are no different.

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

A list of data types appears at the bottom of this document. String datetimestamp = new java.sql.timestamp(system.currenttimemillis()).

A list of data types appears at the bottom of this document. String datetimestamp = new java.sql.timestamp(system.currenttimemillis()). Data Types Introduction A data type is category of data in computer programming. There are many types so are clustered into four broad categories (numeric, alphanumeric (characters and strings), dates,

More information

4 Simple Database Features

4 Simple Database Features 4 Simple Database Features Now we come to the largest use of iseries Navigator for programmers the Databases function. IBM is no longer developing DDS (Data Description Specifications) for database definition,

More information

Learning SQL Data Compare. SQL Data Compare - 8.0

Learning SQL Data Compare. SQL Data Compare - 8.0 Learning SQL Data Compare SQL Data Compare - 8.0 Contents Getting started... 4 Red Gate Software Ltd 2 Worked example: synchronizing data in two databases... 6 Worked example: restoring from a backup file...

More information

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

Moving/Restoring the StarShip SQL database

Moving/Restoring the StarShip SQL database Rev A.T 20140812 Moving/Restoring the StarShip SQL database This document outlines the necessary steps to migrate the StarShip database from one Microsoft SQL Server 2012 instance to another. The steps

More information

Teach Yourself InterBase

Teach Yourself InterBase Teach Yourself InterBase This tutorial takes you step-by-step through the process of creating and using a database using the InterBase Windows ISQL dialog. You learn to create data structures that enforce

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior.

Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior. Create a table When you create a database, you store your data in tables subject-based lists that contain rows and columns. For instance, you can create a Contacts table to store a list of names, addresses,

More information

Siemens Teamcenter Oracle -to-sql Server 2008 Migration Guide

Siemens Teamcenter Oracle -to-sql Server 2008 Migration Guide Siemens Teamcenter Oracle -to-sql Server 2008 Migration Guide Microsoft Corporation Published: June 2010 Author: Randy Dyess Solid Quality Mentors Technical Reviewers: Christopher Gill Teamcenter Centers

More information

Microsoft SQL Server. Dragomir Vatkov http://vatkov.netfirms.com. Presentation for Course: Modern Software Technologies

Microsoft SQL Server. Dragomir Vatkov http://vatkov.netfirms.com. Presentation for Course: Modern Software Technologies Microsoft SQL Server Dragomir Vatkov http://vatkov.netfirms.com Presentation for Course: Modern Software Technologies Contents MS SQL Server 6.5 Introduction, History, Important terms, Versions, Security,

More information

2. In the Search programs and files field, enter mmc and hit the enter key

2. In the Search programs and files field, enter mmc and hit the enter key The Enrollment Key Pair is created when you make an on-line request for a certificate. There will be one Enrollment Key Pair for each certificate request that you have made. Your computer will look for

More information

System Area Management Software Tool Tip: Integrating into NetIQ AppManager

System Area Management Software Tool Tip: Integrating into NetIQ AppManager System Area Management Software Tool Tip: Integrating into NetIQ AppManager Overview: This document provides an overview of how to integrate System Area Management's event logs with NetIQ's AppManager.

More information

Linas Virbalas Continuent, Inc.

Linas Virbalas Continuent, Inc. Linas Virbalas Continuent, Inc. Heterogeneous Replication Replication between different types of DBMS / Introductions / What is Tungsten (the whole stack)? / A Word About MySQL Replication / Tungsten Replicator:

More information

How to schedule and automate backups of SQL Server databases in SQL Server Express Editions

How to schedule and automate backups of SQL Server databases in SQL Server Express Editions How to schedule and automate backups of SQL Server databases in SQL Server Express Editions View products that this article applies to. Expand all Collapse all Summary SQL Server Express editions do not

More information

MapInfo SpatialWare Version 4.6 for Microsoft SQL Server

MapInfo SpatialWare Version 4.6 for Microsoft SQL Server Release Notes MapInfo SpatialWare Version 4.6 for Microsoft SQL Server These release notes contain information about the SpatialWare v. 4.6 release. These notes are specific to the Microsoft SQL Server

More information

Conventional Files versus the Database. Files versus Database. Pros and Cons of Conventional Files. Pros and Cons of Databases. Fields (continued)

Conventional Files versus the Database. Files versus Database. Pros and Cons of Conventional Files. Pros and Cons of Databases. Fields (continued) Conventional Files versus the Database Files versus Database File a collection of similar records. Files are unrelated to each other except in the code of an application program. Data storage is built

More information

Technical Support Set-up Procedure

Technical Support Set-up Procedure Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it

More information

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office Access 2007 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table

More information

How to manage the Adaptive Call Recorder (v.9-50)

How to manage the Adaptive Call Recorder (v.9-50) How to manage the Adaptive Call Recorder (v.9-50) The Adaptive Hybrid Call Recorder records all telephone calls that are made and received. Recording calls provides an audit of what was said in every conversation.

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

Database Architecture

Database Architecture Database Architecture Fourth Edition Copyright 2005 - Wingenious - All Rights Reserved This document is copyrighted material. It may not be distributed without prior approval from the author. Questions,

More information