Update a MS

Size: px
Start display at page:

Download "Update a MS2.2 20060817"

Transcription

1 Los cambios a realizar en la base de datos son los siguientes. Se ejecutarán en el phpmyadmin del servidor. A ser posible sobre una base de datos replicada, por si hay algún error. Si no se trata de una prueba, sino que vas a actualizar la tienda, pon oscommerce en mantenimiento para que o haya perdida de datos mientras actualizas. Recuerda que realizas los cambios bajo tu propia responsabilidad. No nos hacemos responsables si se produce algún error en la tienda. Antes de acutalizar la tienda en funcionamiento debes de replicar la base de datos y hacer pruebas a ver si te funciona. Haz siempre backups o copias de seguridad tanto de la base de datos como de los archivos. Update a MS ALTER TABLE whos_online MODIFY COLUMN last_page_url VARCHAR(255) NOT NULL; ALTER TABLE customers MODIFY COLUMN customers_default_address_id INTEGER; ALTER TABLE customers_basket MODIFY COLUMN final_price DECIMAL(15,4); Update a 2RC1 alter table configuration modify configuration_title varchar(255) NOT NULL; alter table configuration modify configuration_key varchar(255) NOT NULL; Update a 2RCa alter table banners add index idx_banners_group (banners_group); alter table banners_history add index idx_banners_history_banners_id (banners_id); alter table currencies add index idx_currencies_code (code); alter table customers add index idx_customers_ _address (customers_ _address); alter table customers_basket add index idx_customers_basket_customers_id (customers_id); alter table customers_basket_attributes add index idx_customers_basket_att_customers_id (customers_id); alter table orders add index idx_orders_customers_id (customers_id); alter table orders_products add index idx_orders_products_orders_id (orders_id); alter table orders_products add index idx_orders_products_products_id (products_id); alter table orders_status_history add index idx_orders_status_history_orders_id (orders_id); 1 de 5

2 alter table orders_products_attributes add index idx_orders_products_att_orders_id (orders_id); alter table orders_products_download add index idx_orders_products_download_orders_id (orders_id); alter table products add index idx_products_model (products_model); alter table products_attributes add index idx_products_attributes_products_id (products_id); alter table reviews add index idx_reviews_products_id (products_id); alter table reviews add index idx_reviews_customers_id (customers_id); alter table specials add index idx_specials_products_id (products_id); alter table zones add index idx_zones_to_geo_zones_country_id (zone_country_id); alter table orders_status add public_flag int DEFAULT '1'; alter table orders_status add downloads_flag int DEFAULT '0'; alter table orders modify payment_method varchar(255) NOT NULL; alter table whos_online modify last_page_url text NOT NULL; Y aunque en las actualizaciones oficiales no he visto que lo ponga es necesario crear la tabla administrators CREATE TABLE administrators ( user_name varchar(32) binary NOT NULL, user_password varchar(40) NOT NULL, PRIMARY KEY (id)); Update a alter table address_book modify entry_gender char(1); alter table address_book modify entry_company varchar(255); alter table address_book modify entry_firstname varchar(255) NOT NULL; alter table address_book modify entry_lastname varchar(255) NOT NULL; alter table address_book modify entry_street_address varchar(255) NOT NULL; alter table address_book modify entry_suburb varchar(255); alter table address_book modify entry_postcode varchar(255) NOT NULL; alter table address_book modify entry_city varchar(255) NOT NULL; alter table address_book modify entry_state varchar(255); alter table administrators modify user_name varchar(255) binary NOT NULL; alter table configuration modify configuration_value text NOT NULL; alter table countries modify countries_name varchar(255) NOT NULL; alter table customers modify customers_gender char(1); alter table customers modify customers_firstname varchar(255) NOT NULL; 2 de 5

3 alter table customers modify customers_lastname varchar(255) NOT NULL; alter table customers modify customers_ _address varchar(255) NOT NULL; alter table customers modify customers_telephone varchar(255) NOT NULL; alter table customers modify customers_fax varchar(255); alter table orders modify customers_name varchar(255) NOT NULL; alter table orders modify customers_company varchar(255); alter table orders modify customers_street_address varchar(255) NOT NULL; alter table orders modify customers_suburb varchar(255); alter table orders modify customers_city varchar(255) NOT NULL; alter table orders modify customers_postcode varchar(255) NOT NULL; alter table orders modify customers_state varchar(255); alter table orders modify customers_country varchar(255) NOT NULL; alter table orders modify customers_telephone varchar(255) NOT NULL; alter table orders modify customers_ _address varchar(255) NOT NULL; alter table orders modify delivery_name varchar(255) NOT NULL; alter table orders modify delivery_company varchar(255); alter table orders modify delivery_street_address varchar(255) NOT NULL; alter table orders modify delivery_suburb varchar(255); alter table orders modify delivery_city varchar(255) NOT NULL; alter table orders modify delivery_postcode varchar(255) NOT NULL; alter table orders modify delivery_state varchar(255); alter table orders modify delivery_country varchar(255) NOT NULL; alter table orders modify billing_name varchar(255) NOT NULL; alter table orders modify billing_company varchar(255); alter table orders modify billing_street_address varchar(255) NOT NULL; alter table orders modify billing_suburb varchar(255); alter table orders modify billing_city varchar(255) NOT NULL; alter table orders modify billing_postcode varchar(255) NOT NULL; alter table orders modify billing_state varchar(255); alter table orders modify billing_country varchar(255) NOT NULL; alter table orders modify cc_owner varchar(255); alter table reviews modify customers_name varchar(255) NOT NULL; alter table whos_online modify full_name varchar(255) NOT NULL; alter table zones modify zone_name varchar(255) NOT NULL; CREATE TABLE sec_directory_whitelist ( directory varchar(255) NOT NULL, PRIMARY KEY (id) ); 3 de 5

4 INSERT INTO sec_directory_whitelist values (null, 'admin/backups'); INSERT INTO sec_directory_whitelist values (null, 'admin/images/graphs'); INSERT INTO sec_directory_whitelist values (null, 'images'); INSERT INTO sec_directory_whitelist values (null, 'images/banners'); INSERT INTO sec_directory_whitelist values (null, 'images/dvd'); INSERT INTO sec_directory_whitelist values (null, 'images/gt_interactive'); INSERT INTO sec_directory_whitelist values (null, 'images/hewlett_packard'); INSERT INTO sec_directory_whitelist values (null, 'images/matrox'); INSERT INTO sec_directory_whitelist values (null, 'images/microsoft'); INSERT INTO sec_directory_whitelist values (null, 'images/sierra'); INSERT INTO sec_directory_whitelist values (null, 'includes/work'); INSERT INTO sec_directory_whitelist values (null, 'pub'); CREATE TABLE action_recorder ( module varchar(255) NOT NULL, user_id int, user_name varchar(255), identifier varchar(255) NOT NULL, success char(1), date_added datetime NOT NULL, PRIMARY KEY (id), KEY idx_action_recorder_module (module), KEY idx_action_recorder_user_id (user_id), KEY idx_action_recorder_identifier (identifier), KEY idx_action_recorder_date_added (date_added) ); configuration_group_id, sort_order, date_added) VALUES ('Installed Modules', 'MODULE_ACTION_RECORDER_INSTALLED', 'ar_admin_login.php;ar_contact_us.php;ar_tell_a_friend.php', 'List of action recorder module filenames separated by a semi-colon. This is automatically updated. No need to edit.', '6', '0', now()); configuration_group_id, sort_order, date_added) VALUES ('Minimum Minutes Per ', 'MODULE_ACTION_RECORDER_CONTACT_US_ _MINUTES', '15', 'Minimum number of minutes to allow 1 to be sent (eg, 15 for 1 every 15 minutes)', '6', '0', now()); configuration_group_id, sort_order, date_added) VALUES ('Minimum Minutes Per ', 'MODULE_ACTION_RECORDER_TELL_A_FRIEND_ _MINUTES', '15', 'Minimum number of minutes to allow 1 to be sent (eg, 15 for 1 every 15 minutes)', '6', '0', now()); 4 de 5

5 configuration_group_id, sort_order, date_added) VALUES ('Allowed Minutes', 'MODULE_ACTION_RECORDER_ADMIN_LOGIN_MINUTES', '5', 'Number of minutes to allow login attempts to occur.', '6', '0', now()); configuration_group_id, sort_order, date_added) VALUES ('Allowed Attempts', 'MODULE_ACTION_RECORDER_ADMIN_LOGIN_ATTEMPTS', '3', 'Number of login attempts to allow within the specified period.', '6', '0', now()); alter table administrators modify user_password varchar(60) NOT NULL; alter table customers modify customers_password varchar(60) NOT NULL; Update a Según la documentación oficial no hay que hacer nada, pero yo si no ejcuto la siguiente sentencia no consigo que funcione ALTER TABLE `reviews` ADD `reviews_status` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `last_modified` 5 de 5

Bucle for_in. Sintaxis: Bucles for_in con listas. def assessment(grade_list): """ Computes the average of a list of grades

Bucle for_in. Sintaxis: Bucles for_in con listas. def assessment(grade_list):  Computes the average of a list of grades Bucle for_in Sintaxis: for in : Bucles for_in con listas In [38]: def assessment(grade_list): Computes the average of a list of grades @type grades: [float]

More information

Dictionary (catálogo)

Dictionary (catálogo) Catálogo Oracle Catálogo Esquema: un conjunto de estructuras de datos lógicas (objetos del esquema), propiedad de un usuario Un esquema contiene, entre otros, los objetos siguientes: tablas vistas índices

More information

New Server Installation. Revisión: 13/10/2014

New Server Installation. Revisión: 13/10/2014 Revisión: 13/10/2014 I Contenido Parte I Introduction 1 Parte II Opening Ports 3 1 Access to the... 3 Advanced Security Firewall 2 Opening ports... 5 Parte III Create & Share Repositorio folder 8 1 Create

More information

How To Know If An Ipod Is Compatible With An Ipo Or Ipo 2.1.1 (Sanyo)

How To Know If An Ipod Is Compatible With An Ipo Or Ipo 2.1.1 (Sanyo) IntesisBox PA-RC2-xxx-1 SANYO compatibilities In this document the compatible SANYO models with the following IntesisBox RC2 interfaces are listed: / En éste documento se listan los modelos SANYO compatibles

More information

Copyright 2016-123TeachMe.com 4ea67 1

Copyright 2016-123TeachMe.com 4ea67 1 Sentence Match Quiz for Category: hacer_make_do_1 1) Nosotros hacemos todo lo posible para proporcionar un buen servicio. - A: We do our best to provide good service. - B: These chores are done each time.

More information

Curso SQL Server 2012 para Desarrolladores

Curso SQL Server 2012 para Desarrolladores Curso SQL Server 2012 para Desarrolladores Objetivos: Obtener una introducción al diseño de Bases de Datos Relacionales y a SQL Usar el Management Studio y las características de SQL Server 2012 para desarrallodores.

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

Apéndice C: Código Fuente del Programa DBConnection.java

Apéndice C: Código Fuente del Programa DBConnection.java Apéndice C: Código Fuente del Programa DBConnection.java import java.sql.*; import java.io.*; import java.*; import java.util.*; import java.net.*; public class DBConnection Connection pgsqlconn = null;

More information

Curso SQL Server 2008 for Developers

Curso SQL Server 2008 for Developers Curso SQL Server 2008 for Developers Objetivos: Aprenderás a crear joins interiores y exteriores complejos, consultas agrupadas, y subconsultas Aprenderás a manejar los diferentes tipos de datos y sabrás

More information

Description of training units (of each module

Description of training units (of each module Learning Module title: Planning a digital literacy workshop Position within the curriculum: Stage 1 (entrustment) / Category 2 (Methodological skills in working with groups of participants) Profile entrance

More information

OMEGA SOFT WF RISKEVAL

OMEGA SOFT WF RISKEVAL OMEGA SOFT WF RISKEVAL Quick Start Guide I. PROGRAM DOWNLOAD AND INSTALLATION... 2 II. CONNECTION AND PASSWORD CHANGE... 3 III. LIST OF WIND FARMS / PREVENTION TECHNICIANS... 4 IV. ADD A NEW WIND FARM...

More information

Manejo Basico del Servidor de Aplicaciones WebSphere Application Server 6.0

Manejo Basico del Servidor de Aplicaciones WebSphere Application Server 6.0 Manejo Basico del Servidor de Aplicaciones WebSphere Application Server 6.0 Ing. Juan Alfonso Salvia Arquitecto de Aplicaciones IBM Uruguay Slide 2 of 45 Slide 3 of 45 Instalacion Basica del Server La

More information

New words to remember

New words to remember Finanza Toolbox Materials What is a Bank Loan? Borrowing money from the bank is called a bank loan. People borrow money from the bank for many reasons. One reason to get a bank loan might be to buy a car.

More information

Relational Schema of Database:

Relational Schema of Database: Relational Schema of Database: DDL Commands(with an instance example used for testing the page): phpmyadmin SQL Dump version 3.4.10.1deb1 http://www.phpmyadmin.net Servidor: localhost Tiempo de generación:

More information

ECCAIRS 5 Instalación

ECCAIRS 5 Instalación ECCAIRS 5 Instalación Paso a paso Preparado por: Arturo Martínez Oficina Regional Sudamericana Uniendo a la Aviación en Seguridad Operacional Seguridad Medioambiente Instalación Paso a paso Escenario Windows

More information

Verbs + INFINITIVE (to + verb) Verb + noun/pronoun + Infinitive

Verbs + INFINITIVE (to + verb) Verb + noun/pronoun + Infinitive Verbs + INFINITIVE (to + verb) I. Advise Beg Encourage Invite Persuade Remind Volunteer Afford Care Expect Learn Plan See Wait Agree Choose Fail Manage Prepare Struggle Want Appear Claim Help Mean Pretend

More information

Schema XML_PGE.xsd. element GrupoInformes. attribute GrupoInformes/@version. XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap.

Schema XML_PGE.xsd. element GrupoInformes. attribute GrupoInformes/@version. XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap. Schema XML_PGE.xsd schema location: attribute form default: element form default: targetnamespace: XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap.es/xmlpge element GrupoInformes children Informe

More information

ATTORNEY GENERAL LAW ENFORCEMENT DIRECTIVE NO. 2001-5 APPENDIX A POTENTIAL LIABILITY WARNING - N.J.S.A. 39:4-50.22, FORM AND GUIDELINES 1

ATTORNEY GENERAL LAW ENFORCEMENT DIRECTIVE NO. 2001-5 APPENDIX A POTENTIAL LIABILITY WARNING - N.J.S.A. 39:4-50.22, FORM AND GUIDELINES 1 APPENDIX A 1 POTENTIAL LIABILITY WARNING - N.J.S.A. 39:4-50.22 FORM Pursuant to Attorney General Law Enforcement Directive No. 2001-5, P.L. 2001, c. 69, N.J.S.A. 39:4-50.22 & 39:4-50.23, the content and

More information

Propiedades del esquema del Documento XML de envío:

Propiedades del esquema del Documento XML de envío: Web Services Envio y Respuesta DIPS Courier Tipo Operación: 122-DIPS CURRIER/NORMAL 123-DIPS CURRIER/ANTICIP Los datos a considerar para el Servicio Web DIN que se encuentra en aduana son los siguientes:

More information

ATTORNEY GENERAL LAW ENFORCEMENT DIRECTIVE NO. 2004-1 APPENDIX A

ATTORNEY GENERAL LAW ENFORCEMENT DIRECTIVE NO. 2004-1 APPENDIX A APPENDIX A Pursuant to Attorney General Law Enforcement Directive No. 2004-1, and under the provisions of N.J.S.A. 39:4-50.22, the content and form, in American English, and in an official Spanish translation

More information

HPN Product Tools. Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

HPN Product Tools. Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HPN Product Tools Requerimiento: Conozco el numero de parte (3Com,H3C,Procurve) Solución : El lookup Tool 1 Permite convertir el número de parte de un equipo proveniente de 3Com, H3C o Procurve para obtener

More information

Cambridge IGCSE. www.cie.org.uk

Cambridge IGCSE. www.cie.org.uk Cambridge IGCSE About University of Cambridge International Examinations (CIE) Acerca de la Universidad de Cambridge Exámenes Internacionales. CIE examinations are taken in over 150 different countries

More information

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 Part I. Texas Department of Insurance Page 1 of 10 SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 1. INTRODUCTION. The commissioner of insurance adopts amendments

More information

90 HOURS PROGRAMME LEVEL A1

90 HOURS PROGRAMME LEVEL A1 90 HOURS PROGRAMME LEVEL A1 GENERAL AIMS On completing this course, students should be able to: be familiar with the Spanish alphabet letters and signs and relate them to the corresponding sounds. recognise

More information

ENVIRONMENT: Collaborative Learning Environment

ENVIRONMENT: Collaborative Learning Environment Guía Integrada de Actividades Contexto de la estrategia de aprendizaje a desarrollar en el curso: The activity focuses on the Task Based Language Learning (TBLL). The task is used by the student in order

More information

General Certificate of Education Advanced Level Examination June 2014

General Certificate of Education Advanced Level Examination June 2014 General Certificate of Education Advanced Level Examination June 2014 Spanish Unit 4 Speaking Test Candidate s Material To be conducted by the teacher examiner between 7 March and 15 May 2014 (SPA4T) To

More information

Entrenamiento a Embajadores Ambassador training

Entrenamiento a Embajadores Ambassador training Entrenamiento a Embajadores Ambassador training Quiénes somos? Who we are? Levanta la mano si Please raise your hand if a. b. c. d. e. f. g. h. Hablas español You speak spanish Hablas Inglés You speak

More information

Work Instruction (Instruccion de Trabajo) Wistron InfoComm (Texas) Corp.

Work Instruction (Instruccion de Trabajo) Wistron InfoComm (Texas) Corp. Effective Date: 8/1/2011 Page 1 of 6 Description: (Descripción) 1.0 Purpose (Objetivo) 2.0 Scope (Alcance) 3.0 Fixture List (Lista de Materiales) 4.0 Activities (Actividades) Prepared By: Daniel Flores

More information

Estrategias para la Reducción de Riesgos y Ciber Ataques

Estrategias para la Reducción de Riesgos y Ciber Ataques Estrategias para la Reducción de Riesgos y Ciber Ataques Luis Zamora Consultor en Tecnología 1 This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality,

More information

DEV-10: Estimating your Transformation the Reality Brenntag

DEV-10: Estimating your Transformation the Reality Brenntag Dev-10: Estimating your Transformation the Reality A case study Dr. Stuart Roberts Latin America Head of Development Agenda Overview of Modernization of IT system landscape The Transformation Project Estimating

More information

Tax Court of New Jersey

Tax Court of New Jersey Tax Court of New Jersey Real Property Tax Small Claims Case Handbook This Real Property Tax Small Claims handbook was developed as an information guide to assist you in filing an appeal with the Tax Court

More information

A. Before you read the text, answer the following question: What should a family do before starting to look for a new home?

A. Before you read the text, answer the following question: What should a family do before starting to look for a new home? UNIT 1: A PLAN FOR BUYING English for Real Estate Materials A. Before you read the text, answer the following question: What should a family do before starting to look for a new home? Read the following

More information

Spanish 8695/S Paper 3 Speaking Test Teacher s Booklet Time allowed Instructions one not not Information exactly as they are printed not 8695/S

Spanish 8695/S Paper 3 Speaking Test Teacher s Booklet Time allowed Instructions one not not Information exactly as they are printed not 8695/S AQA Level 1/2 Certificate June 2014 Spanish 8695/S Paper 3 Speaking Test Teacher s Booklet To be conducted by the teacher-examiner between 24 April and 15 May 2014 Time allowed: 11 minutes (including 2

More information

Verbos modales. In this class we look at modal verbs, which can be a tricky feature of English grammar.

Verbos modales. In this class we look at modal verbs, which can be a tricky feature of English grammar. Verbos modales In this class we look at modal verbs, which can be a tricky feature of English grammar. We use Modal verbs in English to show: Probability,Possibility, Capability, Permission, ObligaCon,

More information

Como sabemos que lo funcional y lo estético son importantes para ti, te ofrecemos diferentes acabados y colores.

Como sabemos que lo funcional y lo estético son importantes para ti, te ofrecemos diferentes acabados y colores. A En Rejiplas fabricamos y comercializamos organizadores y soluciones de espacio para el hogar. Hacemos realidad tus proyectos e ideas optimizando todos los ambientes. Nuestros herrajes y soluciones están

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

Spanish GCSE Student Guide

Spanish GCSE Student Guide Spanish GCSE Student Guide Is this the right subject for me? If you enjoy meeting and talking to people from other countries, finding out about their cultures and learning how language works, then studying

More information

An Inventory of My Traits

An Inventory of My Traits Module The Basics and Beyond: An Introduction to Heredity An Inventory of My Traits Abstract Students take an inventory of their own easilyobservable genetic traits. Working in small groups, they observe

More information

SUMMER PROGRAM APPLICATION

SUMMER PROGRAM APPLICATION www.iefl.org SUMMER PROGRAM APPLICATION LATINO STUDENT LEADERSHIP CONFERENCE July 29 August 3, 2012 ASTROCAMP IDYLLWILD, CALIFORNIA MAY BE DUPLICATED INLAND EMPIRE Dear Student: If you are an eighth- or

More information

SPANISH MOOD SELECTION: Probablemente Subjunctive, Posiblemente Indicative

SPANISH MOOD SELECTION: Probablemente Subjunctive, Posiblemente Indicative SPANISH MOOD SELECTION: Probablemente, Posiblemente Hilary Miller April 26, 2013 Spanish Mood Selection According to Spanish textbooks: = doubt, indicative = reality/certainty Es probable que/es posible

More information

DIPLOMADO DE JAVA - OCA

DIPLOMADO DE JAVA - OCA DIPLOMADO DE JAVA - OCA TABLA DE CONTENIDO INTRODUCCION... 3 ESTRUCTURA DEL DIPLOMADO... 4 Nivel I:... 4 Fundamentals of the Java Programming Language Java SE 7... 4 Introducing the Java Technology...

More information

Sub OPT() j = 1 k = 1 m = 1 n = 1 o = 1 g = 1 h = 1

Sub OPT() j = 1 k = 1 m = 1 n = 1 o = 1 g = 1 h = 1 Module1-1 j = 1 k = 1 m = 1 n = 1 o = 1 g = 1 h = 1 Sub OPT() Dim minpc As Integer Dim max(100) As Double Dim row_max, fday, lday As Integer Dim aux, aux2 As String Dim frow(1000) As Double Dim lrow(1000)

More information

learning science through inquiry in primary classroom Overview of workshop

learning science through inquiry in primary classroom Overview of workshop Indicators of teaching and learning science through inquiry in primary classroom Wynne Harlen UK Overview of workshop Part 1: Why IBSE? What do we want to achieve through it? Part 2: Thinking about how

More information

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 Part I. Texas Department of Insurance Page 1 of 11 SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 1. INTRODUCTION. The Texas Department of Insurance proposes

More information

Ask your child what he or she is learning to say in Spanish at school. Encourage your child to act as if he or she is your teacher.

Ask your child what he or she is learning to say in Spanish at school. Encourage your child to act as if he or she is your teacher. Welcome to Descubre el español con Santillana! This year, your child will be learning Spanish by exploring the culture of eight Spanish-speaking countries. Please join us as we travel through each of the

More information

FTPS - FTPSE. Objetivo:

FTPS - FTPSE. Objetivo: FTPS - FTPSE Objetivo: Iniciamos Filezilla Server, y nos vamos a la pestaña SSL/TLS settings, una vez dentro damos a generate new certificate (generar certificado nuevo): Rellenamos el certificado con

More information

Resumen de Entrevista: Asociación de Agentes de Aduana del Puerto de Manzanillo

Resumen de Entrevista: Asociación de Agentes de Aduana del Puerto de Manzanillo Resumen de Entrevista: Asociación de Agentes de Aduana del Puerto de Manzanillo 1. To your knowledge, to what extent do customs brokers run into operative inconveniences when it comes to collecting payment

More information

TEACHER GUIDE STRATEGIES ACHIEVE READING SUCCESS. CURRICULUM ASSOCIATES, Inc. STARS SERIES E SPANISH EDITION

TEACHER GUIDE STRATEGIES ACHIEVE READING SUCCESS. CURRICULUM ASSOCIATES, Inc. STARS SERIES E SPANISH EDITION TEACHER GUIDE STARS SERIES E SPANISH EDITION STRATEGIES TO ACHIEVE READING SUCCESS PROPORCIONA ACTIVIDADES DE ENSEÑANZA PARA 12 ESTRATEGIAS DE LECTURA USA UN SISTEMA DE VARIOS PASOS PARA LOGRAR ÉXITO EN

More information

Por qué ExecuTrain? Por qué ExecuTrain? Modalidad de servicio

Por qué ExecuTrain? Por qué ExecuTrain? Modalidad de servicio Por qué ExecuTrain? ExecuTrain es un proveedor de entrenamiento corporativo a nivel internacional y líder mundial en la capacitación empresarial. Contamos con 22 años y más de 62 mil personas capacitadas

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

LINIO COLOMBIA. Starting-Up & Leading E-Commerce. www.linio.com.co. Luca Ranaldi, CEO. Pedro Freire, VP Marketing and Business Development

LINIO COLOMBIA. Starting-Up & Leading E-Commerce. www.linio.com.co. Luca Ranaldi, CEO. Pedro Freire, VP Marketing and Business Development LINIO COLOMBIA Starting-Up & Leading E-Commerce Luca Ranaldi, CEO Pedro Freire, VP Marketing and Business Development 22 de Agosto 2013 www.linio.com.co QUÉ ES LINIO? Linio es la tienda online #1 en Colombia

More information

INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009

INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009 Commonwealth of Puerto Rico Department of the Treasury PUBLICATION 09-05 INTERFACE TECHNICAL MANUAL FOR ELECTRONIC TAX INFORMATION EXCHANGE (E-TIE) FOR TAX YEAR 2009 Table of Contents 1. Introduction and

More information

Potential for Mobile Money Services in Peru. October, 2014

Potential for Mobile Money Services in Peru. October, 2014 Potential for Mobile Money Services in Peru October, 2014 About The GSMA s Mobile Money for the Unbanked unit commissioned InterMedia to conduct a qualitative study that identifies the key pain points

More information

Exemplar for Internal Achievement Standard. Spanish Level 1

Exemplar for Internal Achievement Standard. Spanish Level 1 Exemplar for Internal Achievement Standard Spanish Level 1 This exemplar supports assessment against: Achievement Standard 90910 Interact using spoken Spanish to communicate personal information, ideas

More information

Level 2 Spanish, 2012

Level 2 Spanish, 2012 91148 911480 2SUPERVISOR S Level 2 Spanish, 2012 91148 Demonstrate understanding of a variety of spoken Spanish texts on familiar matters 2.00 pm Tuesday 20 November 2012 Credits: Five Achievement Achievement

More information

Práctica 1: PL 1a: Entorno de programación MathWorks: Simulink

Práctica 1: PL 1a: Entorno de programación MathWorks: Simulink Práctica 1: PL 1a: Entorno de programación MathWorks: Simulink 1 Objetivo... 3 Introducción Simulink... 3 Open the Simulink Library Browser... 3 Create a New Simulink Model... 4 Simulink Examples... 4

More information

How To Write A Report On A Drug Company

How To Write A Report On A Drug Company Regulatory Quality Forum October 3 and 10, 2014 Four Points Hotel and Casino, Caguas PR Coming to America: Regulatory Opportunities Business Excellence Consulting, Inc. Phone: 787.705.7272 www.calidadpr.com

More information

Copyright 2016-123TeachMe.com 242ea 1

Copyright 2016-123TeachMe.com 242ea 1 Sentence Match Quiz for Category: por_vs_para_1 1) Son las habitaciones accesibles para discapacitados? - A: Are the rooms handicapped accessible? - B: You must fill out this form in order to get work

More information

PWB Management Corporation 3092 Hull Avenue, Bronx, NY 10467 Tel:(718) 519-6900 Fax: (718) 519-6904

PWB Management Corporation 3092 Hull Avenue, Bronx, NY 10467 Tel:(718) 519-6900 Fax: (718) 519-6904 PWB Management Corporation 3092 Hull Avenue, Bronx, NY 10467 Tel:(718) 519-6900 Fax: (718) 519-6904 Dear Applicant, Enclosed is our apartment application which must be totally completed prior to submission.

More information

Sales Management Main Features

Sales Management Main Features Sales Management Main Features Optional Subject (4 th Businesss Administration) Second Semester 4,5 ECTS Language: English Professor: Noelia Sánchez Casado e-mail: noelia.sanchez@upct.es Objectives Description

More information

demonstrates competence in

demonstrates competence in AP SPANISH LANGUAGE 2012 INTERPERSONAL WRITING SCORING GUIDELINES SCORE DESCRIPTION TASK COMPLETION/TOPIC DEVELOPMENT LANGUAGE USE 5 excellence 4 command 3 competence 2 Suggests lack of competence 1 lack

More information

New words to remember

New words to remember Finanza Toolbox Materials Credit Cards, Debit Cards and ATM Cards New words to remember charging minimum payment credit limit interest PIN check register What is a Credit Card? A credit card is a thin

More information

Update of the NOTAM Contingency Plan. (Presented by the Secretariat) Summary

Update of the NOTAM Contingency Plan. (Presented by the Secretariat) Summary International Civil Aviation Organization SAM/AIM/3-WP/06 South American Regional Office 29/02/12 Third Multilateral Meeting of the SAM Region for the Transition of AIS to AIM (SAM/AIM/3) Lima, Peru, 12

More information

Benedictine College Financial Aid

Benedictine College Financial Aid 2015 2016 Institutional Verification Document V4 Dependent Your 2015 2016 Free Application for Federal Student Aid (FAFSA) was selected for review in a process called verification. The law says that before

More information

OFFICE OF COMMON INTEREST COMMUNITY OMBUDSMAN CIC#: DEPARTMENT OF JUSTICE

OFFICE OF COMMON INTEREST COMMUNITY OMBUDSMAN CIC#: DEPARTMENT OF JUSTICE RETURN THIS FORM TO: FOR OFFICIAL USE: (Devuelva Este Formulario a): (Para Uso Oficial) OFFICE OF COMMON INTEREST COMMUNITY OMBUDSMAN CIC#: DEPARTMENT OF JUSTICE (Caso No) STATE OF DELAWARE Investigator:

More information

Monitoreo de Bases de Datos

Monitoreo de Bases de Datos Monitoreo de Bases de Datos Monitoreo de Bases de Datos Las bases de datos son pieza fundamental de una Infraestructura, es de vital importancia su correcto monitoreo de métricas para efectos de lograr

More information

SPAN 100, Sections 7, 8, and 10 PLAN DEL CURSO PRIMAVERA 2012

SPAN 100, Sections 7, 8, and 10 PLAN DEL CURSO PRIMAVERA 2012 SPAN 100, Sections 7, 8, and 10 PLAN DEL CURSO PRIMAVERA 2012 Instructor: Mr. Gutiérrez. Email: bxg207@psu.edu. Office: 40 Burrowes Building, C. 11. Office Hours: MWF 4-5 or by appointment. Office Phone:

More information

D755M CONTROL CARD FOR TWO SINGLE-PHASE MOTORS 220/230 VAC TARJETA DE MANDO PARA DOS MOTORES MONOFÁSICOS 220/230 VAC INSTALLATION GUIDE

D755M CONTROL CARD FOR TWO SINGLE-PHASE MOTORS 220/230 VAC TARJETA DE MANDO PARA DOS MOTORES MONOFÁSICOS 220/230 VAC INSTALLATION GUIDE Distributed by: AFW Access Systems Phone: 305-691-7711 Fax: 305-693-1386 E-mail: sales@anchormiami.com D755M CONTROL CARD FOR TWO SINGLE-PHASE MOTORS 220/230 VAC TARJETA DE MANDO PARA DOS MOTORES MONOFÁSICOS

More information

FOR TEACHERS ONLY The University of the State of New York

FOR TEACHERS ONLY The University of the State of New York FOR TEACHERS ONLY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION S COMPREHENSIVE EXAMINATION IN SPANISH Wednesday, January 24, 2007 9:15 a.m. to 12:15 p.m., only SCORING KEY Updated

More information

FISD Field Study Guidelines and Procedures

FISD Field Study Guidelines and Procedures 600 South Bois d Arc * Forney, Texas 75126 * 972-564-4055 * Fax: 972-564-7007 * www.forneyisd.net FISD Field Study Guidelines and Procedures Note: FISD Field Study Request Forms must be submitted to the

More information

INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE

INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE INFORMATION DOSSIER WORK EXPERIENCE EUROPEAN SCHOOL ALICANTE YEAR 2015-2016 INDEX 1. GENERAL 2. INTRODUCTORY LETTER 3. GUIDE FOR BUSINESSES / GUÍA PARA LAS EMPRESAS. 4. CONFIRMATION FORM / CARTA DE CONFIRMACIÓN.

More information

Application for World Wide Views on Climate and Energy Phoenix, AZ

Application for World Wide Views on Climate and Energy Phoenix, AZ Application for World Wide Views on Climate and Energy Phoenix, AZ Thank you for applying to be part of the Arizona deliberations for World Wide Views on Climate and Energy. To learn more about the global

More information

Response Area 3 - Community Meeting

Response Area 3 - Community Meeting September 2010 Greetings, Welcome to the Independence Division, Response Area 3 monthly community letter. Please check the Independence Division Response Area map at www.cmpd.org/patrol to see which area

More information

1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS

1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS 1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS 1.1 Solicitud certificado:

More information

Lotus Foundations Despreocupese de sus problemas de TI, enfoquese en su Negocio Network en una Caja

Lotus Foundations Despreocupese de sus problemas de TI, enfoquese en su Negocio Network en una Caja March 10, 2009 IBM Industry Forum Mexico City, Mexico Lotus Foundations Despreocupese de sus problemas de TI, enfoquese en su Negocio Network en una Caja Dan Kempf Business Development Executive, Latin

More information

VaughanTown. Newsletter 5:...Last Words. Last Words and Recommendations Last Reminder Meeting point map. www.vaughantown.com

VaughanTown. Newsletter 5:...Last Words. Last Words and Recommendations Last Reminder Meeting point map. www.vaughantown.com VaughanTown Newsletter 5:...Last Words Last Words and Recommendations Last Reminder Meeting point map www.vaughantown.com 00 / 01 Años / VaughanTown Escolares en el Extranjero E.S.O & Bachillerato Last

More information

Memorial Health Care System Catholic Health Initiatives Financial Assistance Application Form

Memorial Health Care System Catholic Health Initiatives Financial Assistance Application Form B Please note - Memorial Hospital may access external validation resources to assist in determining whether a full application for assistance is required. Financial Assistance Application 1) Patient Name

More information

CONSENT OF THE GOVERNED EL CONSENTIMIENTO DE LOS GOBERNADOS EXTENDING. Founding Principles for English Language Learners

CONSENT OF THE GOVERNED EL CONSENTIMIENTO DE LOS GOBERNADOS EXTENDING. Founding Principles for English Language Learners CONSENT OF THE GOVERNED The power of government comes from the people. EL CONSENTIMIENTO DE LOS GOBERNADOS El poder del gobierno viene del pueblo. poder: gobierno: power: government: 1. Why is it important

More information

Oracle 11g Administration

Oracle 11g Administration Oracle 11g Administration Duración: 40 horas Descripción: En este curso, los alumnos realizarán las tareas administrativas clave en Oracle Database 11g, como la creación y control de bases de datos, administración

More information

Tema 7 GOING TO. Subject+ to be + ( going to ) + (verb) + (object )+ ( place ) + ( time ) Pronoun

Tema 7 GOING TO. Subject+ to be + ( going to ) + (verb) + (object )+ ( place ) + ( time ) Pronoun Tema 7 GOING TO Going to se usa para expresar planes a futuro. La fórmula para construir oraciones afirmativas usando going to en forma afirmativa es como sigue: Subject+ to be + ( going to ) + (verb)

More information

Section 1. Background

Section 1. Background Harvest of the Month Guidelines: Modifying, Translating, and Developing Complementary Materials Criteria, Logo Usage, and Acknowledgement Statements Section 1. Background (page 1) Section 2. Modifications

More information

Ranking de Universidades de Grupo of Eight (Go8)

Ranking de Universidades de Grupo of Eight (Go8) En consecuencia con el objetivo del programa Becas Chile el cual busca a través de la excelencia de las instituciones y programas académicos de destino cerciorar que los becarios estudien en las mejores

More information

Synology Disk Station Series

Synology Disk Station Series Synology Disk Station Series DS107+ DS107 DS107e Installation Guide Guía de instalación Connecting Your Digital Content Synology LIMITED WARRANTY AND LIABILITY Synology provides a limited warranty for

More information

A mysterious meeting. (Un encuentro misterioso) Spanish. List of characters. (Personajes) Khalid, the birthday boy (Khalid, el cumpleañero)

A mysterious meeting. (Un encuentro misterioso) Spanish. List of characters. (Personajes) Khalid, the birthday boy (Khalid, el cumpleañero) (Un encuentro misterioso) List of characters (Personajes) Khalid, the birthday boy (Khalid, el cumpleañero) Leila, the mysterious girl and phone voice (Leila, la joven misteriosa y la voz telefónica) Lift

More information

Varieties of Governance: Effective Public Service Delivery Workshop September, 2011 Paris, France. Cecilia Llambi...

Varieties of Governance: Effective Public Service Delivery Workshop September, 2011 Paris, France. Cecilia Llambi... Varieties of Governance: Effective Public Service Delivery Workshop September, 2011 Paris, France Cecilia Llambi... Outline of presentation Main objectives and hypothesis of the research Educational governance

More information

Chapter 1: Chapter 2: Chapter 3: Chapter 4: Chapter 6:

Chapter 1: Chapter 2: Chapter 3: Chapter 4: Chapter 6: Spanish for Children Cantos Chapter 1: Hablar (to speak) Present-Tense Forms 1 st person hablo: I speak hablamos: we speak 2 nd person hablas: you speak habláis: you all speak 1 3 rd person habla: he/she/it

More information

Stages of Family Recovery

Stages of Family Recovery Stages of Family Recovery FACILITATOR S GUIDE To the Facilitator Before showing either the DVD or the video, take time to review this guide, which provides background information on the topic of families

More information

Problem 1 (2.5 points)

Problem 1 (2.5 points) Duration: 90 minutes University Carlos III of Madrid Instructions for the exam: Books and notes are not allowed. Please write your name, surname, NIA and group on all pages. Problem 1 (2.5 points) Context:

More information

Project AGUA Survey Results

Project AGUA Survey Results Project AGUA Survey Results Project AGUA (Arid Garden Underground Aquifer) This survey was conducted after the AGUA Presentation on August 6, 2015 at the Santa Ana Public Library to analyze the public

More information

March 30, 2015. Dear Potential Exhibitors:

March 30, 2015. Dear Potential Exhibitors: March 30, 2015 Dear Potential Exhibitors: We are proud to invite you to become an exhibitor at the first Missing in Harris County Day event to be held Saturday, April 25, 2015, from 10:00 a.m. to 3:00

More information

I M M I G R A N T WORKERS HEALTH & SAFETY

I M M I G R A N T WORKERS HEALTH & SAFETY I M M I G R A N T WORKERS HEALTH & SAFETY 1-HOUR HAZARD IDENTIFICATION TRAINING GOAL: This training is designed for a one-hour session with immigrant workers from a variety of industries and from multiple

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

Frog Street Pre-K Curriculum/Themes at a Glance Curriculum Frog Street de Pre-K/Temas a un año de vistazo

Frog Street Pre-K Curriculum/Themes at a Glance Curriculum Frog Street de Pre-K/Temas a un año de vistazo Frog Street Pre-K Curriculum/Themes at a Glance Curriculum Frog Street de Pre-K/Temas a un año de vistazo Theme Tema 1 My School and Me This Way to PreK! Physical Me My Senses I Think, I feel Mi escuela

More information

240EO031 - Supply Chain Design

240EO031 - Supply Chain Design Coordinating unit: 240 - ETSEIB - Barcelona School of Industrial Engineering Teaching unit: 732 - OE - Department of Management Academic year: Degree: 2015 MASTER'S DEGREE IN MANAGEMENT ENGINEERING (Syllabus

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

Management effectiveness evaluation: for the CBD and for better parks Principles for MEE Methodologies

Management effectiveness evaluation: for the CBD and for better parks Principles for MEE Methodologies Management effectiveness evaluation: for the CBD and for better parks Principles for MEE Methodologies Key question: How will the evaluation help management? Before choosing a methodology or undertaking

More information

GENERAL OVERVIEW STATEMENT OF THE PROBLEM LITERATURE REVIEW METHODOLOGY FINDINGS RESEARCH AND PEDAGOGICAL IMPLICATIONS LIMITATIONS CONCLUSIONS

GENERAL OVERVIEW STATEMENT OF THE PROBLEM LITERATURE REVIEW METHODOLOGY FINDINGS RESEARCH AND PEDAGOGICAL IMPLICATIONS LIMITATIONS CONCLUSIONS GENERAL OVERVIEW STATEMENT OF THE PROBLEM 1 LITERATURE REVIEW 2 METHODOLOGY 3 FINDINGS 4 RESEARCH AND PEDAGOGICAL IMPLICATIONS 5 LIMITATIONS 6 CONCLUSIONS 7 STATEMENT OF THE PROBLEM United Nations Development

More information

Module Title: Spanish 2.2

Module Title: Spanish 2.2 CORK INSTITUTE OF TECHNOLOGY INSTITIÚID TEICNEOLAÍOCHTA CHORCAÍ Autumn Examinations 2011 Module Title: Spanish 2.2 Module Code: LANG 6030 School: Business & Humanities Programme Title(s): Bachelor of Business

More information

PROCEDIMIENTOPARALAGENERACIÓNDEMODELOS3DPARAMÉTRICOSA PARTIRDEMALLASOBTENIDASPORRELEVAMIENTOCONLÁSERESCÁNER

PROCEDIMIENTOPARALAGENERACIÓNDEMODELOS3DPARAMÉTRICOSA PARTIRDEMALLASOBTENIDASPORRELEVAMIENTOCONLÁSERESCÁNER PROCEDIMIENTOPARALAGENERACIÓNDEMODELOS3DPARAMÉTRICOSA PARTIRDEMALLASOBTENIDASPORRELEVAMIENTOCONLÁSERESCÁNER Lopresti,LauraA.;Lara, Marianela;Gavino,Sergio;Fuertes,LauraL.;Defranco,GabrielH. UnidaddeInvestigación,DesaroloyTransferencia-GrupodeIngenieríaGráficaAplicada

More information

Military Scholarship & Employment Program (MSEP)

Military Scholarship & Employment Program (MSEP) MSEP Military Scholarship & Employment Program (MSEP) INCLUDES: Army Spouse Employment Partnership (ASEP); Army/Air National Guard; Air Force; Marine Corps; Navy; Coast Guard CONTENTS SUMMARY:...3 WHO

More information