Top Banner
This document has been prepared for limited distribution within Microsoft. This document contains materials and information that Microsoft considers confidential, proprietary, and significant for the protection of its business. The distribution of this document is limited to those solely involved with the program described within. Confidential and Proprietary © 2011 Microsoft Last Updated: 6/11/22 SQL SERVER 2012 MEJORAS EN ADMINISTRACIÓN Alberto De Rossi Microsoft Certified Professional Microsoft Certified Trainer
26

Charla sql server 2012 cibertec

Jun 08, 2015

Download

Technology

dbLearner

Mejoras en Administración de SQL Server 2012. Presentada por Alberto De Rossi en charla organizada por Cibertec el 19 de abril de 2012
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Charla sql server 2012 cibertec

This document has been prepared for limited distribution within Microsoft. This document contains materials and information that Microsoft considers confidential, proprietary, and significant for the protection of its business. The distribution of this document is limited to those solely involved with the program described within.

Confidential and Proprietary © 2011 MicrosoftLast Updated: Thursday, April 13, 2023

SQL SERVER 2012MEJORAS EN ADMINISTRACIÓNAlberto De RossiMicrosoft Certified ProfessionalMicrosoft Certified Trainer

Page 2: Charla sql server 2012 cibertec

MEJORAS EN SQL SERVER 2012

Escalabilidad y Desempeño

4

SQL Server 2012

1Alta Disponibilidad

3En la Nube

2

Administración e Implementación

5

Page 3: Charla sql server 2012 cibertec

1. SQL SERVER 2012

Page 4: Charla sql server 2012 cibertec

RETOS

… Producción

Marketing Finanzas …

habilidad para usar los datos correctos en el momento correcto

ser competitivo en base a la información del negocio

cumplir con las restricciones de presupuesto

Page 5: Charla sql server 2012 cibertec

BIG DATA

Page 6: Charla sql server 2012 cibertec

BIG DATA

Page 7: Charla sql server 2012 cibertec

SQL SERVER 2012

• Plataforma de información lista para la nube (cloud-ready)

• De manera eficiente protege, libera y escala el poder de los datos a través de equipos de escritorio, móviles, centros de cómputo; en nubes privadas o públicas.

• Plataforma de base de datos confiable, económica y escalable que ofrece confianza y buen desempeño para aplicaciones de misión crítica, instalaciones flexibles basadas en la nube y alta disponibilidad.

• Profundidad en la perspectiva del negocio a través del análisis de datos a través de toda la organización

• Soluciones Hibridas

Page 8: Charla sql server 2012 cibertec
Page 10: Charla sql server 2012 cibertec

SQL AZURE

• Nuevo paradigma de computación basada en internet

• Servicio tipo “commodity”: solo pago lo que consumo

• Fácil de integrar• No hay hardware que mantener• El proveedor se ocupa de actualizaciones, parches, mantenimiento, disponibilidad

• Ubicuidad: Acceso universal por internet

• Algunas Preguntas:• Donde están mis datos?• Que tal los tiempos de respuesta?• Y si se cae el internet?

SQL Azure no es SQL ServerNo es un hosting

Page 11: Charla sql server 2012 cibertec

DEMO

SQL Azure

Page 12: Charla sql server 2012 cibertec

3. ALTA DISPONIBILIDAD

Page 13: Charla sql server 2012 cibertec

ALTA DISPONIBILIDAD

• AlwaysOn Availability Groups.- Protege la base de datos permitiendo múltiples bases de datos como copias de seguridad o replicas. Combinación de tecnologías (Mirroring, Log Shiping, Peer To Peer replica)

• AlwaysOn Failover Cluster Instances.-Provee protección superior a nivel de instancia usando Windows Server Failover Clustering y almacenamiento compartido.

• Soporte para Windows Server Core.- Edición básica del sistema operativo Windows Server. Requieres aproximadamente entre 50 y 60 porciento menos reinicios cuando se aplican parches al servidor.

• Recovery Advisor.- Línea de tiempo visual integrada a SQL Server Management Studio para simplificar el proceso de restauración.

Page 14: Charla sql server 2012 cibertec

4. ESCALABILIDAD Y DESEMPEÑO

Page 15: Charla sql server 2012 cibertec

ESCALABILIDAD Y DESEMPEÑO

• Índices Columnstore.- Mayor eficiencia en almacenamiento comprimido, Menor I/O y menor uso de memoria. Junto con Advanced Query-Processing provee desempeño muy veloz en la ejecución de consultas de grandes volúmenes de datos

• Mayor soporte para partición.- Hasta 15,000 particiones. Antes limitado a 1,000 particiones por defecto

• Creación, reconstrucción y eliminación de índices en línea.-Aplicaciones de misión crítica usan indexado en línea para evitar paradas durante los mantenimientos de rutina.

• Máxima escalabilidad con Windows Server 2008 R2.- 256 procesadores lógicos y 2 terabytes de memoria en una instancia del sistema operativo

Page 16: Charla sql server 2012 cibertec

5. ADMINISTRACIÓN E IMPLEMENTACIÓN

Page 17: Charla sql server 2012 cibertec

ADMINISTRACIÓN E IMPLEMENTACIÓN

• Bases de Datos Contenidas.- Usuarios son autenticados directamente en una base de datos de usuario sin la dependencia de inicios de sesión en el motor de bases de datos.

• Integración con SQL Azure.- SQL Server Management Studio incluye herramientas para despliegue y administración de SQL Azure.

• Opciones de Arranque Reubicadas.- En SQL Server Configuration Manager, incluye una nueva ficha de Parámetros de Arranque para mejor administración de los parámetros requeridos para el inicio del servicio.

Page 18: Charla sql server 2012 cibertec

ADMINISTRACIÓN E IMPLEMENTACIÓN

• FileTable.- Basado en Filestream. Permite integrar información no estructurada (Archivos, Documentos, Hojas de Cálculo, Presentaciones). Full Text Search opera sobre datos no estructurados.

• Generador de Secuencias.- Objetos independientes para generación de secuencias numéricas.

• Paginación de Consultas.- Resultado del query mostrado por páginas definidas por número de líneas a mostrar.

• Nuevas Funciones Escalares.- Introducción de nuevas funciones del sistema.

Page 19: Charla sql server 2012 cibertec

NUEVAS CAPACIDADES DE T-SQL

• Secuencias• SEQUENCE DDL• NEXT VALUE FOR• sp_sequence_get_range• sys.sequences

• Paginación de Query• OFFSET• FETCH NEXT

CREATE SEQUENCE seq1 AS INT START WITH 10000 INCREMENT BY 1;GO

INSERT INTO HR.Employees (EmployeeId, Name) VALUES (NEXT VALUE FOR seq1, 'Jane');INSERT INTO HR.Managers (ManagerId, Name) VALUES (NEXT VALUE FOR seq1, 'John');

SELECT Name FROM HR.EmployeesORDER BY HireDate, EmployeeIdOFFSET 10 ROWS FETCH NEXT 10 ROWS ONLY

Page 20: Charla sql server 2012 cibertec

NUEVAS FUNCIONES

• Funciones de conversión:• TRY_CONVERT(data_type[(length)], [,style])• TRY_CAST(expression AS data_type[(length)])

• Funciones de conversion para cadenas:• FORMAT(value, format [,culture])• PARSE(string_value AS data_type [USING culture])

• TRY_PARSE(string_value AS data_type [,USING culture])

• Otras Funciones:• IIF(boolean expr, true_value, false_value)• CHOOSE(index,val1,val2 [,valN])• CONCAT(val1, val2…[,valn])

Page 21: Charla sql server 2012 cibertec

DEMO

Mejoras en el lenguaje Transact-SQL

Page 22: Charla sql server 2012 cibertec

FURTHER. FORWARD. FASTER.

•Aprenda MásVisite Microsoft Virtual Academyhttp://www.microsoftvirtualacademy.com

•Obtenga MásDescargue la versión de pruebahttp://www.microsoft.com/sql

•Haga MásParticipe en el lanzamiento virtualhttp://www.sqlserverlaunch.com

Page 23: Charla sql server 2012 cibertec

© 2011 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.

The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after

the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

GRACIAS!!!

http://dblearner.com/foros

facebook.com/dblearner

@dblearner

Page 24: Charla sql server 2012 cibertec

GRAFICOS

Page 25: Charla sql server 2012 cibertec

ALWAYS ON

Page 26: Charla sql server 2012 cibertec

RECOVERY ADVISOR