CREATE TABLE FUNCAO ( idfuncao INTEGER NOT NULL, DESCRICAO VARCHAR NULL, PRIMARY KEY(idFUNCAO) );

Size: px
Start display at page:

Download "CREATE TABLE FUNCAO ( idfuncao INTEGER NOT NULL, DESCRICAO VARCHAR NULL, PRIMARY KEY(idFUNCAO) );"

Transcription

1 create database syslog CREATE TABLE GRUPO_PRODUTO ( idgrupo_produto INTEGER NOT NULL, PRIMARY KEY(idGRUPO_PRODUTO) CREATE TABLE FUNCAO ( idfuncao INTEGER NOT NULL, PRIMARY KEY(idFUNCAO) CREATE TABLE FORNECEDOR ( idfornecedor INTEGER NOT NULL, NOME_FORNECEDOR VARCHAR NULL, RAZAO_SOCIAL VARCHAR NULL, CNPJ VARCHAR NULL, ENDERECO VARCHAR NULL, BAIRRO VARCHAR NULL, CIDADE VARCHAR NULL, UF CHAR NULL, CEP VARCHAR NULL, TELEFONE VARCHAR NULL, FAX VARCHAR NULL, VARCHAR NULL, TELEFONE_COMERCIAL INTEGER NULL, CONTATO VARCHAR NULL, PRIMARY KEY(idFORNECEDOR) CREATE TABLE TIPO_RECEBIMENTO ( idtipo_recebimento INTEGER NOT NULL, DESC_TIPORECEBIMENTO INTEGER NULL, PRIMARY KEY(idTIPO_RECEBIMENTO) CREATE TABLE TAB_DIAS_SEMANA ( idtab_dias_semana INTEGER NOT NULL, DIA_SEMANA VARCHAR NULL, PRIMARY KEY(idTAB_DIAS_SEMANA) CREATE TABLE NIVEL_ACESSO ( idnivel_acesso INTEGER NOT NULL, GRUPO_ACESSO VARCHAR NULL, PRIMARY KEY(idNIVEL_ACESSO) CREATE TABLE ALMOXARIFADO ( idalmoxarifado INTEGER NOT NULL, STATUS_ALM CHAR NULL, PRIMARY KEY(idALMOXARIFADO) CREATE TABLE USUARIO ( idusuario INTEGER NOT NULL, NIVEL_ACESSO_idNIVEL_ACESSO INTEGER NOT NULL, NOME_USUARIO VARCHAR NULL, LOGIN VARCHAR NULL, SENHA VARCHAR(10) NULL, PRIMARY KEY(idUSUARIO), FOREIGN KEY(NIVEL_ACESSO_idNIVEL_ACESSO) REFERENCES NIVEL_ACESSO(idNIVEL_ACESSO) CREATE TABLE TAB_FORMA_DE_PAGTO ( Página 1

2 idtab_formapagto INTEGER NOT NULL, TIPO_RECEBIMENTO_idTIPO_RECEBIMENTO INTEGER NOT NULL, DESC_PRAZOPAAGTO INTEGER ZEROFILL NOT NULL, NUM_DIAS_PRAZO DECIMAL NULL, PRIMARY KEY(idTAB_FORMAPAGTO, TIPO_RECEBIMENTO_idTIPO_RECEBIMENTO), INDEX TAB_FORMA_DE_PAGTO_FKIndex1(TIPO_RECEBIMENTO_idTIPO_RECEBIMENTO), FOREIGN KEY(TIPO_RECEBIMENTO_idTIPO_RECEBIMENTO) REFERENCES TIPO_RECEBIMENTO(idTIPO_RECEBIMENTO) CREATE TABLE PRODUTO ( idproduto INTEGER NOT NULL, FORNECEDOR_idFORNECEDOR INTEGER NOT NULL, GRUPO_PRODUTO_idGRUPO_PRODUTO INTEGER NOT NULL, PRECO_CUSTO FLOAT NULL, PRECO_VENDA FLOAT NULL, PRIMARY KEY(idPRODUTO), INDEX PRODUTO_FKIndex1(GRUPO_PRODUTO_idGRUPO_PRODUTO), INDEX PRODUTO_FKIndex2(FORNECEDOR_idFORNECEDOR), FOREIGN KEY(GRUPO_PRODUTO_idGRUPO_PRODUTO) REFERENCES GRUPO_PRODUTO(idGRUPO_PRODUTO), FOREIGN KEY(FORNECEDOR_idFORNECEDOR) REFERENCES FORNECEDOR(idFORNECEDOR) CREATE TABLE FUNCIONARIO ( MATRICULA INTEGER NOT NULL, USUARIO_idUSUARIO INTEGER NOT NULL, FUNCAO_idFUNCAO INTEGER NOT NULL, NOME_FUNCIONARIO VARCHAR NULL, DATA_NASC DATE NULL, RG VARCHAR NULL, CPF VARCHAR NULL, ENDERECO VARCHAR NULL, SEXO CHAR NULL, TELEFONE_RESID VARCHAR NULL, TELEFONE_CELULAR VARCHAR NULL, VARCHAR NULL, PRIMARY KEY(MATRICULA), INDEX FUNCIONARIO_FKIndex1(FUNCAO_idFUNCAO), INDEX FUNCIONARIO_FKIndex3(USUARIO_idUSUARIO), FOREIGN KEY(FUNCAO_idFUNCAO) REFERENCES FUNCAO(idFUNCAO), FOREIGN KEY(USUARIO_idUSUARIO) REFERENCES USUARIO(idUSUARIO) CREATE TABLE SETOR ( idsetor INTEGER NOT NULL, STATUS_SETOR CHAR NULL, PRIMARY KEY(idSETOR), INDEX SETOR_FKIndex1(FUNCIONARIO_MATRICULA), Página 2

3 SCRIPT SQL CREATE TABLE ROMANEIO_ENTREGA ( idromaneio_entrega INTEGER NOT NULL, DATA_ROMANEIO DATE NULL, DATA_SAIDA DATE NULL, DATA_RETORNO DATE NULL, PARAMETRO_LIMITE_PEDIDOS DECIMAL NULL, PARAMETRO_LIMITE_VLR_TOTAL DECIMAL NULL, PRIMARY KEY(idROMANEIO_ENTREGA), INDEX ROMANEIO_ENTREGA_FKIndex1(FUNCIONARIO_MATRICULA), CREATE TABLE CLIENTE ( idcliente INTEGER NOT NULL, SETOR_idSETOR INTEGER NOT NULL, NOME VARCHAR NULL, LOGRADOURO VARCHAR NULL, CEP VARCHAR NULL, BAIRRO VARCHAR NULL, CIDADE VARCHAR NULL, UF CHAR NULL, TEL_COMERCIAL VARCHAR NULL, TEL_CELULAR VARCHAR NULL, TEL_FAX VARCHAR NULL, DATA_CADASTRO DATETIME NULL, CONTATO VARCHAR NULL, VARCHAR NULL, VLR_LIMITE_CREDITO DECIMAL NULL, PRIMARY KEY(idCLIENTE), INDEX CLIENTE_FKIndex1(SETOR_idSETOR), FOREIGN KEY(SETOR_idSETOR) REFERENCES SETOR(idSETOR) CREATE TABLE CLI_PESSOA_FISICA ( idpessoa_fisica INTEGER NOT NULL, CPF VARCHAR NULL, RG VARCHAR NULL, PRIMARY KEY(idPESSOA_FISICA), INDEX CLI_PESSOA_FISICA_FKIndex1(CLIENTE_idCLIENTE), CREATE TABLE CLI_PESSOA_JURIDICA ( idcli_pessoa_juridica INTEGER NOT NULL, CNPJ VARCHAR NULL, INSCRICAO_EST VARCHAR NULL, RAZAO_SOCIAL VARCHAR NULL, PRIMARY KEY(idCLI_PESSOA_JURIDICA), INDEX CLI_PESSOA_JURIDICA_FKIndex1(CLIENTE_idCLIENTE), Página 3

4 SCRIPT SQL CREATE TABLE PRESTAR_CONTAS ( idprestar_contas INTEGER NOT NULL, ROMANEIO_ENTREGA_idROMANEIO_ENTREGA INTEGER NOT NULL, DATA_PRESTACAO DATE NULL, VALOR_DINHEIRO FLOAT NULL, VALOR_CHEQUE FLOAT NULL, PRIMARY KEY(idPRESTAR_CONTAS), INDEX PRESTAR_CONTAS_FKIndex1(ROMANEIO_ENTREGA_idROMANEIO_ENTREGA), FOREIGN KEY(ROMANEIO_ENTREGA_idROMANEIO_ENTREGA) REFERENCES ROMANEIO_ENTREGA(idROMANEIO_ENTREGA) CREATE TABLE COMPRAS ( idcompras INTEGER NOT NULL, FORNECEDOR_idFORNECEDOR INTEGER NOT NULL, DT_COMPRA DATE NULL, QUANTIDADE INTEGER NULL, VALOR FLOAT NULL, PRODUTO VARCHAR NULL, QUANTIDADE_PROD INTEGER NULL, VALOR_PROD FLOAT NULL, PRIMARY KEY(idCOMPRAS), INDEX COMPRAS_FKIndex2(FORNECEDOR_idFORNECEDOR), INDEX COMPRAS_FKIndex2(FUNCIONARIO_MATRICULA), FOREIGN KEY(FORNECEDOR_idFORNECEDOR) REFERENCES FORNECEDOR(idFORNECEDOR), CREATE TABLE CLIENTE_has_TAB_FORMA_DE_PAGTO ( TAB_FORMA_DE_PAGTO_TIPO_RECEBIMENTO_idTIPO_RECEBIMENTO INTEGER NOT NULL, TAB_FORMA_DE_PAGTO_idTAB_FORMAPAGTO INTEGER NOT NULL, PRIMARY KEY(CLIENTE_idCLIENTE), INDEX CLIENTE_has_TAB_FORMA_DE_PAGTO_FKIndex1(CLIENTE_idCLIENTE), INDEX CLIENTE_has_TAB_FORMA_DE_PAGTO_FKIndex3(TAB_FORMA_DE_PAGTO_idTAB_FORMAPAGTO, TAB_FORMA_DE_PAGTO_TIPO_RECEBIMENTO_idTIPO_RECEBIMENTO),, FOREIGN KEY(TAB_FORMA_DE_PAGTO_idTAB_FORMAPAGTO, TAB_FORMA_DE_PAGTO_TIPO_RECEBIMENTO_idTIPO_RECEBIMENTO) REFERENCES TAB_FORMA_DE_PAGTO(idTAB_FORMAPAGTO, TIPO_RECEBIMENTO_idTIPO_RECEBIMENTO) CREATE TABLE ROTEIRIZACAO_VENDAS ( idroteirizacao INTEGER NOT NULL, SETOR_idSETOR INTEGER NOT NULL, TAB_DIAS_SEMANA_idTAB_DIAS_SEMANA INTEGER NOT NULL, ORDEM_VISITA INTEGER NULL, PRIMARY KEY(idROTEIRIZACAO), INDEX ROTEIRIZACAO_FKIndex2(SETOR_idSETOR), Página 4

5 INDEX ROTEIRIZACAO_FKIndex2(CLIENTE_idCLIENTE), INDEX ROTEIRIZACAO_FKIndex3(TAB_DIAS_SEMANA_idTAB_DIAS_SEMANA), FOREIGN KEY(SETOR_idSETOR) REFERENCES SETOR(idSETOR),, FOREIGN KEY(TAB_DIAS_SEMANA_idTAB_DIAS_SEMANA) REFERENCES TAB_DIAS_SEMANA(idTAB_DIAS_SEMANA) CREATE TABLE ESTOQUE ( idmovimentacao_estoque INTEGER NOT NULL, COMPRAS_idCOMPRAS INTEGER NOT NULL, ALMOXARIFADO_idALMOXARIFADO INTEGER NOT NULL, PRODUTO_idPRODUTO INTEGER NOT NULL, DATA_ENTRADA DATE NULL, QUANTIDADE INTEGER NULL, LOCAL_ESTOQUE VARCHAR NULL, DT_MOV_ESTOQUE DATETIME NULL, NOTA_FISCAL_ENTRADA VARCHAR NULL, COD_MOV_ESTOQUE VARCHAR NULL, PRIMARY KEY(idMOVIMENTACAO_ESTOQUE), INDEX MOVIMENTACAO_ESTOQUE_FKIndex1(PRODUTO_idPRODUTO), INDEX MOVIMENTACAO_ESTOQUE_FKIndex2(ALMOXARIFADO_idALMOXARIFADO), INDEX ESTOQUE_FKIndex3(COMPRAS_idCOMPRAS), FOREIGN KEY(PRODUTO_idPRODUTO) REFERENCES PRODUTO(idPRODUTO), FOREIGN KEY(ALMOXARIFADO_idALMOXARIFADO) REFERENCES ALMOXARIFADO(idALMOXARIFADO), FOREIGN KEY(COMPRAS_idCOMPRAS) REFERENCES COMPRAS(idCOMPRAS) CREATE TABLE TAB_CONTAS_PAGAR ( idtab_contas_pagar INTEGER NOT NULL, COMPRAS_idCOMPRAS INTEGER NOT NULL, DT_VENCIMENTO DATE NULL, VALOR_TITULO_PAGAR INTEGER NULL, PRIMARY KEY(idTAB_CONTAS_PAGAR), INDEX TAB_CONTAS_PAGAR_FKIndex1(COMPRAS_idCOMPRAS), FOREIGN KEY(COMPRAS_idCOMPRAS) REFERENCES COMPRAS(idCOMPRAS) CREATE TABLE VENDAS ( idvendas INTEGER NOT NULL, CLIENTE_has_TAB_FORMA_DE_PAGTO_ DATA_VENDA DATE NULL, PRAZO INTEGER NULL, FORMA_PAGTO INTEGER NULL, HORA_PEDIDO DATETIME NULL, PRIMARY KEY(idVENDAS, CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE), INDEX VENDAS_FKIndex1(FUNCIONARIO_MATRICULA), Página 5

6 INDEX VENDAS_FKIndex2(CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE),, FOREIGN KEY(CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE) REFERENCES CLIENTE_has_TAB_FORMA_DE_PAGTO(CLIENTE_idCLIENTE) CREATE TABLE ITENS_VENDAS ( VENDAS_idVENDAS INTEGER NOT NULL, ESTOQUE_idMOVIMENTACAO_ESTOQUE INTEGER NOT NULL, QUANTIDADE INTEGER NULL, VALOR FLOAT NULL, PRIMARY KEY(VENDAS_idVENDAS), INDEX PRODUTO_has_VENDAS_FKIndex2(VENDAS_idVENDAS), INDEX ITENS_VENDAS_FKIndex2(ESTOQUE_idMOVIMENTACAO_ESTOQUE), FOREIGN KEY(VENDAS_idVENDAS, VENDAS_CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE) REFERENCES VENDAS(idVENDAS, CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE), FOREIGN KEY(ESTOQUE_idMOVIMENTACAO_ESTOQUE) REFERENCES ESTOQUE(idMOVIMENTACAO_ESTOQUE) CREATE TABLE TAB_CONTAS_RECEBER ( idtab_contas_receber INTEGER NOT NULL, VENDAS_idVENDAS INTEGER NOT NULL, VALOR_TITULO INTEGER NULL, DT_VENCIMENTO DATE NULL, PRIMARY KEY(idTAB_CONTAS_RECEBER, VENDAS_idVENDAS), INDEX TAB_CONTAS_RECEBER_FKIndex1(VENDAS_idVENDAS), FOREIGN KEY(VENDAS_idVENDAS, VENDAS_CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE) REFERENCES VENDAS(idVENDAS, CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE) CREATE TABLE VENDAS_ROMANEIO_ENTREGA ( VENDAS_idVENDAS INTEGER NOT NULL, ROMANEIO_ENTREGA_idROMANEIO_ENTREGA INTEGER NOT NULL, PRIMARY KEY(VENDAS_idVENDAS), FULLTEXT INDEX VENDAS_has_ROMANEIO_ENTREGA_FKIndex2(VENDAS_idVENDAS), INDEX VENDAS_ROMANEIO_ENTREGA_FKIndex2(ROMANEIO_ENTREGA_idROMANEIO_ENTREGA), FOREIGN KEY(VENDAS_idVENDAS, VENDAS_CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE) REFERENCES VENDAS(idVENDAS, CLIENTE_has_TAB_FORMA_DE_PAGTO_CLIENTE_idCLIENTE), FOREIGN KEY(ROMANEIO_ENTREGA_idROMANEIO_ENTREGA) REFERENCES ROMANEIO_ENTREGA(idROMANEIO_ENTREGA) Página 6

!"# $ %& '( ! %& $ ' &)* + ! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23. mysql> select * from from clienti;

!# $ %& '( ! %& $ ' &)* + ! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23. mysql> select * from from clienti; ! "# $ %& '(! %& $ ' &)* +! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23 mysql> select * from from clienti; " "!"# $!" 1 1 5#',! INTEGER [(N)] [UNSIGNED] $ - 6$ 17 8 17 79 $ - 6: 1 79 $.;0'

More information

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

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

DDL ed SQL Compravendite Immobiliari

DDL ed SQL Compravendite Immobiliari DDL ed SQL Compravendite Immobiliari Soluzione DDL /* Database : Compravendite Immobiliari Created: 27/03/2009 Modified: 27/03/2009 Model: Oracle 10g Database: Oracle 10g */ -- Create tables section -------------------------------------------------

More information

CSCE 156H/RAIK 184H Assignment 4 - Project Phase III Database Design

CSCE 156H/RAIK 184H Assignment 4 - Project Phase III Database Design CSCE 156H/RAIK 184H Assignment 4 - Project Phase III Database Design Dr. Chris Bourke Spring 2016 1 Introduction In the previous phase of this project, you built an application framework that modeled the

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

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

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

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

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

C++ Wrapper Library for Firebird Embedded SQL

C++ Wrapper Library for Firebird Embedded SQL C++ Wrapper Library for Firebird Embedded SQL Written by: Eugene Wineblat, Software Developer of Network Security Team, ApriorIT Inc. www.apriorit.com 1. Introduction 2. Embedded Firebird 2.1. Limitations

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

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

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

SQL NULL s, Constraints, Triggers

SQL NULL s, Constraints, Triggers CS145 Lecture Notes #9 SQL NULL s, Constraints, Triggers Example schema: CREATE TABLE Student (SID INTEGER PRIMARY KEY, name CHAR(30), age INTEGER, GPA FLOAT); CREATE TABLE Take (SID INTEGER, CID CHAR(10),

More information

IT2304: Database Systems 1 (DBS 1)

IT2304: Database Systems 1 (DBS 1) : Database Systems 1 (DBS 1) (Compulsory) 1. OUTLINE OF SYLLABUS Topic Minimum number of hours Introduction to DBMS 07 Relational Data Model 03 Data manipulation using Relational Algebra 06 Data manipulation

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

IT2305 Database Systems I (Compulsory)

IT2305 Database Systems I (Compulsory) Database Systems I (Compulsory) INTRODUCTION This is one of the 4 modules designed for Semester 2 of Bachelor of Information Technology Degree program. CREDITS: 04 LEARNING OUTCOMES On completion of this

More information

EECS 647: Introduction to Database Systems

EECS 647: Introduction to Database Systems EECS 647: Introduction to Database Systems Instructor: Luke Huan Spring 2013 Administrative Take home background survey is due this coming Friday The grader of this course is Ms. Xiaoli Li and her email

More information

SQL Tables, Keys, Views, Indexes

SQL Tables, Keys, Views, Indexes CS145 Lecture Notes #8 SQL Tables, Keys, Views, Indexes Creating & Dropping Tables Basic syntax: CREATE TABLE ( DROP TABLE ;,,..., ); Types available: INT or INTEGER REAL or FLOAT CHAR( ), VARCHAR( ) DATE,

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

LiTH, Tekniska högskolan vid Linköpings universitet 1(7) IDA, Institutionen för datavetenskap Juha Takkinen 2007-05-24

LiTH, Tekniska högskolan vid Linköpings universitet 1(7) IDA, Institutionen för datavetenskap Juha Takkinen 2007-05-24 LiTH, Tekniska högskolan vid Linköpings universitet 1(7) IDA, Institutionen för datavetenskap Juha Takkinen 2007-05-24 1. A database schema is a. the state of the db b. a description of the db using a

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

CPSC 3375 Final Project ER Diagram

CPSC 3375 Final Project ER Diagram Relationship Diagram for Final Project: Name UserName Password Phone PortfolioID Portfolios 1,1) Maintain 0,M) Customers Address 0,M) Maintained by CustomerID Name QuantityTraded CostPerShare Are Contained

More information

Database Design for OCEAN Project

Database Design for OCEAN Project Database Design for OCEAN Project Instructor : Dr. Mike Frank Bongju Yu bjyu@cise.ufl.edu 1. Project Domain In this project, we try to develop a database system called the OCEAN Open computation Exchange

More information

Online shopping cart. Tarik Guelzim Graduate school of computer science at Monmouth University. CS517 Database management systems Project 2

Online shopping cart. Tarik Guelzim Graduate school of computer science at Monmouth University. CS517 Database management systems Project 2 Tarik Guelzim Graduate school of computer science at Monmouth University CS517 Database management systems Project 2 Page 1 of 9 Database Schema Page 2 of 9 Table name Indexed fields reason Page 3 of 9

More information

public class Autenticador { private static final ThreadLocal<UsuarioInterface> threadusuario = new ThreadLocal<UsuarioInterface>();

public class Autenticador { private static final ThreadLocal<UsuarioInterface> threadusuario = new ThreadLocal<UsuarioInterface>(); JBook Shadowing - Oracle Source folder: src/main/java Main package: br.com.infowaypi.jbook. Actual package: autenticacao Java file: Autenticador.java package br.com.infowaypi.jbook.autenticacao; public

More information

The Relational Model. Why Study the Relational Model? Relational Database: Definitions

The Relational Model. Why Study the Relational Model? Relational Database: Definitions The Relational Model Database Management Systems, R. Ramakrishnan and J. Gehrke 1 Why Study the Relational Model? Most widely used model. Vendors: IBM, Microsoft, Oracle, Sybase, etc. Legacy systems in

More information

not at all a manual simply a quick how-to-do guide

not at all a manual simply a quick how-to-do guide not at all a manual simply a quick how-to-do guide As a general rule, the GUI implemented by spatialite-gis is closely related to the one implemented by the companion app spatialite-gui So, if you are

More information

Report on the Train Ticketing System

Report on the Train Ticketing System Report on the Train Ticketing System Author: Zaobo He, Bing Jiang, Zhuojun Duan 1.Introduction... 2 1.1 Intentions... 2 1.2 Background... 2 2. Overview of the Tasks... 3 2.1 Modules of the system... 3

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

Customer Bank Account Management System Technical Specification Document

Customer Bank Account Management System Technical Specification Document Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6

More information

SQL 2: GETTING INFORMATION INTO A DATABASE. MIS2502 Data Analytics

SQL 2: GETTING INFORMATION INTO A DATABASE. MIS2502 Data Analytics SQL 2: GETTING INFORMATION INTO A DATABASE MIS2502 Data Analytics Our relational database A series of tables Linked together through primary/foreign key relationships To create a database We need to define

More information

Create a Database Driven Application

Create a Database Driven Application Create a Database Driven Application Prerequisites: You will need a Bluemix account and an IBM DevOps Services account to complete this project. Please review the Registration sushi card for these steps.

More information

CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ;

CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ; SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; CREATE SCHEMA IF NOT

More information

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added?

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added? DBMS Questions 1.) Which type of file is part of the Oracle database? A.) B.) C.) D.) Control file Password file Parameter files Archived log files 2.) Which statements are use to UNLOCK the user? A.)

More information

Database Design and Programming

Database Design and Programming Database Design and Programming Peter Schneider-Kamp DM 505, Spring 2012, 3 rd Quarter 1 Course Organisation Literature Database Systems: The Complete Book Evaluation Project and 1-day take-home exam,

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

Using Temporary Tables to Improve Performance for SQL Data Services

Using Temporary Tables to Improve Performance for SQL Data Services Using Temporary Tables to Improve Performance for SQL Data Services 2014- Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

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

New York University Computer Science Department Courant Institute of Mathematical Sciences

New York University Computer Science Department Courant Institute of Mathematical Sciences New York University Computer Science Department Courant Institute of Mathematical Sciences Homework #5 Solutions Course Title: Database Systems Instructor: Jean-Claude Franchitti Course Number: CSCI-GA.2433-001

More information

Database Systems. S. Adams. Dilbert. Available: http://dilbert.com. Hans-Petter Halvorsen, M.Sc.

Database Systems. S. Adams. Dilbert. Available: http://dilbert.com. Hans-Petter Halvorsen, M.Sc. Database Systems S. Adams. Dilbert. Available: http://dilbert.com Hans-Petter Halvorsen, M.Sc. Old fashion Database (Data-storage) Systems Not too long ago, this was the only data-storage device most companies

More information

Database Query 1: SQL Basics

Database Query 1: SQL Basics Database Query 1: SQL Basics CIS 3730 Designing and Managing Data J.G. Zheng Fall 2010 1 Overview Using Structured Query Language (SQL) to get the data you want from relational databases Learning basic

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

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

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

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

Structured Query Language. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics

Structured Query Language. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Structured Query Language HANS- PETTER HALVORSEN, 2014.03.03 Faculty of Technology, Postboks 203,

More information

Below is a table called raw_search_log containing details of search queries. user_id INTEGER ID of the user that made the search.

Below is a table called raw_search_log containing details of search queries. user_id INTEGER ID of the user that made the search. %load_ext sql %sql sqlite:///olap.db OLAP and Cubes Activity 1 Data and Motivation You're given a bunch of data on search queries by users. (We can pretend that these users are Google search users and

More information

Technology Foundations. Conan C. Albrecht, Ph.D.

Technology Foundations. Conan C. Albrecht, Ph.D. Technology Foundations Conan C. Albrecht, Ph.D. Overview 9. Human Analysis Reports 8. Create Reports 6. Import Data 7. Primary Analysis Data Warehouse 5. Transfer Data as CSV, TSV, or XML 1. Extract Data

More information

PassMark Software BurnInTest Management Console. Quick start guide

PassMark Software BurnInTest Management Console. Quick start guide PassMark Software BurnInTest Management Console Quick start guide Edition: 1.1 Date: 16 August 2013 BurnInTest Version: 7.1.1011+ BurnInTest is a trademark of PassMark software Overview For BurnInTest

More information

VIP Intelligent Transporta1on System Database- How to Set up a Local Populated Database. October 26, 2010

VIP Intelligent Transporta1on System Database- How to Set up a Local Populated Database. October 26, 2010 VIP Intelligent Transporta1on System Database- How to Set up a Local Populated Database October 26, 2010 How Many Fields Will We Have? Ignition Status Call Button Vehicle ID Rec. Signal Strength System

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

Supplement IV.C: Tutorial for Oracle. For Introduction to Java Programming By Y. Daniel Liang

Supplement IV.C: Tutorial for Oracle. For Introduction to Java Programming By Y. Daniel Liang Supplement IV.C: Tutorial for Oracle For Introduction to Java Programming By Y. Daniel Liang This supplement covers the following topics: Connecting and Using Oracle Creating User Accounts Accessing Oracle

More information

Challenges in database design with Microsoft Access

Challenges in database design with Microsoft Access ABSTRACT Challenges in database design with Microsoft Access Jerzy Letkowski Western New England University Design, development and explorations of databases are popular topics covered in introductory

More information

Faculty of Engineering and Architecture. Computer Engineering Department DATABASE MANAGEMENT SYSTEMS POSTLAB #3 SOLUTION

Faculty of Engineering and Architecture. Computer Engineering Department DATABASE MANAGEMENT SYSTEMS POSTLAB #3 SOLUTION Faculty of Engineering and Architecture Computer Engineering Department DATABASE MANAGEMENT SYSTEMS POSTLAB #3 SOLUTION CREATING TABLES DVD Company Table create table dvd_company ( name varchar(15) not

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

Websense SQL Queries. David Buyer June 2009 Be281@bfn.org

Websense SQL Queries. David Buyer June 2009 Be281@bfn.org Websense SQL Queries David Buyer June 2009 Be281@bfn.org Introduction The SQL queries that are listed here I have been using for a number of years now. I use them almost exclusively as an alternative to

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

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

Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA)

Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA) 13 November 2007 22:30 Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA) By: http://www.alberton.info/firebird_sql_meta_info.html The SQL 2003 Standard introduced a new schema

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

CSC 443 Fall 2011 Dr. R. M. Siegfried. Answers to Assignment #1

CSC 443 Fall 2011 Dr. R. M. Siegfried. Answers to Assignment #1 Answers to Assignment #1 1.14. Consider the Database below: If the name of the 'CS' (Computer Science) Department changes to 'CSSE' (Computer Science and Software Engineering) Department and the corresponding

More information

Introduction to SQL for Data Scientists

Introduction to SQL for Data Scientists Introduction to SQL for Data Scientists Ben O. Smith College of Business Administration University of Nebraska at Omaha Learning Objectives By the end of this document you will learn: 1. How to perform

More information

Erste Schritte mit mysql. Der Umgang mit einer relationalen Datenbank

Erste Schritte mit mysql. Der Umgang mit einer relationalen Datenbank Erste Schritte mit mysql Der Umgang mit einer relationalen Datenbank Relationale Datenbanken Prinzip: Daten sind in Tabellen gespeichert Tabellen können verknüpft sein alter Name: RDBMS - Relational Database

More information

Working with DB2 UDB objects

Working with DB2 UDB objects Working with DB2 UDB objects http://www7b.software.ibm.com/dmdd/ Table of Contents If you're viewing this document online, you can click any of the topics below to link directly to that section. 1. Introduction...

More information

Scenario: Law Office Management System / Law (Legal) Practice Management System

Scenario: Law Office Management System / Law (Legal) Practice Management System Scenario: Law Office Management System / Law (Legal) Practice Management System Software is to be developed for Law Office Management / Law Practice Management using which people can find lawyer s on the

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

Once the schema has been designed, it can be implemented in the RDBMS.

Once the schema has been designed, it can be implemented in the RDBMS. 2. Creating a database Designing the database schema... 1 Representing Classes, Attributes and Objects... 2 Data types... 5 Additional constraints... 6 Choosing the right fields... 7 Implementing a table

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

Estructura de aplicación en PHP para System i

Estructura de aplicación en PHP para System i Estructura de aplicación en PHP para System i La aplicación esta diseñada para IBM DB2 en System i, UNIX y Windows. Se trata de la gestión de una entidad deportiva. A modo de ejemplo de como está desarrollada

More information

DDL or DDS? A comparison of tools used to define data on the System i. By Robert Berendt

DDL or DDS? A comparison of tools used to define data on the System i. By Robert Berendt DDL or DDS? A comparison of tools used to define data on the System i. By Robert Berendt Data Definition Specifications UNIQUE R ITEMMASTR ITEMNBR 17A COMP(NE ' ') ITEMCLAS 2A COMP(NE ' ') PRICE 9P 2 COMP(GT

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

Eletronic Draft Manual

Eletronic Draft Manual 中 海 巴 西 桑 托 斯 分 公 司 China Shipping - Santos Branch Eletronic Draft Manual Summary Highlights... 3 How to do a New Draft... 3 1. 1 st STEP... 3 2. 2 nd Step:... 4 3. 3 th Step:... 4 4. 4 th Step:... 6 5.

More information

types, but key declarations and constraints Similar CREATE X commands for other schema ëdrop X name" deletes the created element of beer VARCHARè20è,

types, but key declarations and constraints Similar CREATE X commands for other schema ëdrop X name deletes the created element of beer VARCHARè20è, Dening a Database Schema CREATE TABLE name èlist of elementsè. Principal elements are attributes and their types, but key declarations and constraints also appear. Similar CREATE X commands for other schema

More information

www.gr8ambitionz.com

www.gr8ambitionz.com Data Base Management Systems (DBMS) Study Material (Objective Type questions with Answers) Shared by Akhil Arora Powered by www. your A to Z competitive exam guide Database Objective type questions Q.1

More information

SQL Programming. CS145 Lecture Notes #10. Motivation. Oracle PL/SQL. Basics. Example schema:

SQL Programming. CS145 Lecture Notes #10. Motivation. Oracle PL/SQL. Basics. Example schema: CS145 Lecture Notes #10 SQL Programming Example schema: CREATE TABLE Student (SID INTEGER PRIMARY KEY, name CHAR(30), age INTEGER, GPA FLOAT); CREATE TABLE Take (SID INTEGER, CID CHAR(10), PRIMARY KEY(SID,

More information

In-Memory Database: Query Optimisation. S S Kausik (110050003) Aamod Kore (110050004) Mehul Goyal (110050017) Nisheeth Lahoti (110050027)

In-Memory Database: Query Optimisation. S S Kausik (110050003) Aamod Kore (110050004) Mehul Goyal (110050017) Nisheeth Lahoti (110050027) In-Memory Database: Query Optimisation S S Kausik (110050003) Aamod Kore (110050004) Mehul Goyal (110050017) Nisheeth Lahoti (110050027) Introduction Basic Idea Database Design Data Types Indexing Query

More information

Doing database design with MySQL

Doing database design with MySQL Doing database design with MySQL Jerzy Letkowski Western New England University ABSTRACT Most of the database textbooks, targeting database design and implementation for information systems curricula support

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

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

Midterm Exam SOLUTION

Midterm Exam SOLUTION CS 461, Database Systems Name: Midterm Exam SOLUTION Drexel email: 1 25 2 25 3 30 Total 80 I certify that this exam is entirely my own work. Signature Date Instructions: This is an open book, open notes

More information

By Dina Y. Venezky and Christopher G. Newhall. Open File Report 2007 1117. U.S. Department of the Interior U.S. Geological Survey

By Dina Y. Venezky and Christopher G. Newhall. Open File Report 2007 1117. U.S. Department of the Interior U.S. Geological Survey WOVOdat Design Document: The Schema, Table Descriptions, and Create Table Statements for the Database of Worldwide Volcanic Unrest (WOVOdat Version 1.0) By Dina Y. Venezky and Christopher G. Newhall 2007

More information

SoftwarePlanner Active Directory Authentication

SoftwarePlanner Active Directory Authentication User s Guide SoftwarePlanner Active Directory Authentication This document provides an explanation of using Active Directory with SoftwarePlanner. 1 Narrative In some situations, it may be preferable to

More information

Agenda. ! Strengths of PostgreSQL. ! Strengths of Hadoop. ! Hadoop Community. ! Use Cases

Agenda. ! Strengths of PostgreSQL. ! Strengths of Hadoop. ! Hadoop Community. ! Use Cases Postgres & Hadoop Agenda! Strengths of PostgreSQL! Strengths of Hadoop! Hadoop Community! Use Cases Best of Both World Postgres Hadoop World s most advanced open source database solution Enterprise class

More information

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";! SET time_zone = "+00:00";!

SET SQL_MODE = NO_AUTO_VALUE_ON_ZERO;! SET time_zone = +00:00;! -- phpmyadmin SQL Dump -- version 4.1.3 -- http://www.phpmyadmin.net -- -- Client : localhost -- Généré le : Lun 19 Mai 2014 à 15:06 -- Version du serveur : 5.6.15 -- Version de PHP : 5.4.24 SET SQL_MODE

More information

Student attendance Management

Student attendance Management Student attendance Management Mrs.Dhanashree Amit Gupta Teerthanker Mahaveer University NH-24, Bagarpur, Delhi Road Moradabad-244001(U.P.) India Table of Contents 1. Synopsis 2. Feasibility Study 3. Working

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

Mozambique Visitor visa Application

Mozambique Visitor visa Application Mozambique Visitor visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Mozambique visitor visa checklist

More information

Introduction to SQL (3.1-3.4)

Introduction to SQL (3.1-3.4) CSL 451 Introduction to Database Systems Introduction to SQL (3.1-3.4) Department of Computer Science and Engineering Indian Institute of Technology Ropar Narayanan (CK) Chatapuram Krishnan! Summary Parts

More information

Dancer and DBIx::Class

Dancer and DBIx::Class Stefan Hornburg (Racke) @linuxia.de March 25, 2014 ecommerce Software Database Administration ecommerce Software Magento Interchange6 ecommerce Software Database Administration Database Administration

More information

CSC 370 Database Systems Summer 2004 Assignment No. 2

CSC 370 Database Systems Summer 2004 Assignment No. 2 CSC 370 Database Systems Summer 2004 Assignment No. 2 Note 1 This assignment is to be done in teams of two people. Note 2 Except as indicated, working with other teams is strictly prohibited. Due date:

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

A basic create statement for a simple student table would look like the following.

A basic create statement for a simple student table would look like the following. Creating Tables A basic create statement for a simple student table would look like the following. create table Student (SID varchar(10), FirstName varchar(30), LastName varchar(30), EmailAddress varchar(30));

More information

Advance DBMS. Structured Query Language (SQL)

Advance DBMS. Structured Query Language (SQL) Structured Query Language (SQL) Introduction Commercial database systems use more user friendly language to specify the queries. SQL is the most influential commercially marketed product language. Other

More information

FreeRADIUS server. Defining clients Access Points and RADIUS servers

FreeRADIUS server. Defining clients Access Points and RADIUS servers FreeRADIUS server Freeradius (http://www.freeradius.org) is a very powerfull/configurable and freely available opensource RADIUS server. ARNES recommends it for the organisations that connect to ARNES

More information

Database Management Systems Comparative Study: Performances of Microsoft SQL Server Versus Oracle

Database Management Systems Comparative Study: Performances of Microsoft SQL Server Versus Oracle Database Management Systems Comparative Study: Performances of Microsoft SQL Server Versus Oracle Cătălin Tudose*, Carmen Odubăşteanu** * - ITC Networks, Bucharest, Romania, e-mail: catalin_tudose@yahoo.com

More information

User's Guide and Software Design of. Job Tracking System for the NTC s Machine Shop 2006-01-05. Version 2.0

User's Guide and Software Design of. Job Tracking System for the NTC s Machine Shop 2006-01-05. Version 2.0 User's Guide and Software Design of Job Tracking System for the NTC s Machine Shop 2006-01-05 Version 2.0 File: \\CVFILER\cv-cdl-sis\MeasSys\Tasks\ShopTrackSys2.doc Page i Printed: 2006-01-05 12:54:59

More information

Introduction to Relational Databases and SQL

Introduction to Relational Databases and SQL 1 Introduction to Relational Databases and SQL Chapter Overview This chapter defines the basic terms of relational databases and the various kinds of datatypes available in popular database-management

More information