Windows Azure Solutions with Microsoft Visual Studio 2010

Tamanho: px
Começar a partir da página:

Download "Windows Azure Solutions with Microsoft Visual Studio 2010"

Transcrição

1 Course 50466B: Windows Azure Solutions with Microsoft Visual Studio 2010 Length: 3 Days Published: July 27, 2011 Language(s): Audience(s): English Developers Level: 300 Technology: Type: Delivery Method: Windows Azure Course Instructor-led (classroom) Overview About this Course This class is an introduction to cloud computing and specifically Microsoft's public cloud offering in Windows Azure. Windows Azure has been described by Microsoft as an operating system for "the cloud". In this class, you explore this cloud operating system and learn how to write, deploy and monitor.net applications in Azure. Audience Profile This class is designed for.net developers with Web application experience that are exploring developing new applications or porting existing applications to Windows Azure. At Course Completion After completing this course, students will be able to: Understand cloud computing in its various forms and how Windows Azure fits in the cloud computing space. Learn why organizations want to run applications in the Azure cloud. Understand the architecture of Azure. Explore the Azure SDK and development environment (Compute and Storage Emulators). See how to develop applications for Azure and how that varies from normal.net application development. Write and deploy an ASP.NET Web application (Web Role) to Azure. Learn how to create and deploy background computational applications (Worker Role) in Azure.

2 Explore Azure Storage capability to include table, queue and blob storage. Examine SQL Azure, the relational database in the cloud. Study how SQL Azure differs from Azure Storage. Course Details Course OutlineModule 1: Cloud Computing Cloud computing has been labeled the next big thing in the computing industry. What exactly is cloud computing? What are the benefits of cloud computing? Why would my organization and I want to explore cloud computing? Will it help us solve some of our IT problems? Of what potential issues should we be aware? This introductory module addresses the what s and why s of cloud computing. It also introduces Microsoft s Windows Azure cloud computing product. How does the Microsoft solution compare to other cloud computing platforms? What exactly is Windows Azure? Define cloud computing. Learn the benefits of cloud computing. Understand the different types of cloud computing services. Explore where computing clouds might exist. Hear about potential concerns with cloud computing. Learn where cloud computing can and cannot be applied. Place Windows Azure in light of general cloud computing. Know how Windows Azure compares to other cloud environments. Lab : Windows Azure Account Setup (Optional) Understand how to create a Windows Azure account. Explore the types of Windows Azure accounts. Learn how to access and use the Windows Azure Developer Portal. Examine the Windows Azure Developer Portal. Understand the different types of cloud computing offerings. Explain how Windows Azure fits into the cloud computing landscape. Set up a Windows Azure account. Module 2: Windows Azure Architecture Several components and technologies make up the Windows Azure Platform. In this module, you get a glimpse of a Windows Azure. You also explore the components that make up the Windows Azure Platform. Specifically, you look at the Microsoft data centers and the hardware and software that host Windows Azure applications and data. You also look at the development environment. What does it take to produce Windows Azure applications? Finally, you explore the various parts of the Windows Azure platform to include Windows Azure, SQL Azure and the App Fabric. See a simple Windows Azure application. Learn about the Microsoft data centers. Explore the hardware, servers and virtualization (the Fabric) that host cloud applications and data. Understand the role of the Fabric Controller in managing the Windows Azure cloud. Know the general architecture and components of the Windows Azure Platform. Understand the tools used to create and deploy Windows Azure services and data stores.

3 Understand the different types of roles in Windows Azure (Web, worker, VM). Understand the types of storages provided by the Windows Azure Platform (Azure Storage, SQL Azure, etc.) Lab : Introduction to Windows Azure Explore your first Windows Azure project in Visual Studio. See how to test a cloud application in Visual Studio. Learn how to publish a cloud application. Examine the process of deploying an application via the Developer Portal. Learn how to remove a service from the cloud. Understand the pieces of the Windows Azure platform. Explore the Windows Azure Developer Portal. Setup a cloud project in Visual Studio. Understand the difference between the Compute and Storage Emulators and Windows Azure. Module 3: Windows Azure Web Roles In this module you explore the details of Web roles introduced in the last module. Web roles are essentially Web sites or HTTP services running in the cloud. As part of your exploration of Web roles, you learn some of the Windows Azure API you can use in roles and about how to configure roles. While Web roles run in Microsoft data centers, you test and debug them in your local machine using the Compute Emulator. So, in this module, you also explore details about the Compute Emulator and how to explore what s going on in the Compute Emulator as your code executes. Explore the purpose of Windows Azure Web roles. Understand how to create Web roles in a cloud service project. See how to configure a Web role. Learn how to test Web roles run in the Compute Emulator. Start exploring the Windows Azure API. Examine how to build Web roles with multiple Web sites. Lab : Building a Web Role Create a Cloud Application using Windows Azure Tools for Visual Studio. Explore the Web role project. Configure a Web role project. See a multi-instance role running in the Compute Emulator. Modify the application to use a custom configuration setting. Optionally, see a Web role cloud project deployed to Windows Azure. Explore migrating ASP.NET applications to Windows Azure. Build a simple Windows Azure cloud application. Dynamically configure a Windows Azure cloud application through the Developer Portal. Determine the costs of running an application in Windows Azure. Module 4: Local Storage Most applications use files from the server s file system for something. Cache, simple reference data, logging, etc. are all possible uses of files and file space in a normal.net application. Windows Azure computing instances (Web or worker roles) run on a VM, but share the physical server s resources. So

4 how does a Windows Azure application use and access a file system? This chapter covers Windows Azure local storage. That is how applications can access, to some extent, files in the cloud. This chapter also covers a number of limitations of using local storage as well as the good and bad uses of local storage. Additionally, you learn about alternatives to local storage; most notably a product called Windows Azure Drive. Examine Windows Azure local storage. See how local storage differs from normal server file systems. Learn how to configure local storage. Understand the limitations of local storage and where/when to use it. Explore the API to access local storage. Learn about Windows Azure Drive (formerly X-Drive). Lab : Using Local Storage Configure a Web Role to have local storage. Alter the Web role code to read and write to local storage. Explore the relationship of local storage to roles and role instances. Explore how to clean local storage on role instance recycling. Optionally, deploy the local storage using cloud project to the Windows Azure cloud. Create local storage for use by a Windows Azure application. See Windows Azure scalability through multiple role instances. Design applications use of the file system using local storage or Azure Drive. Module 5: Windows Azure Administration There are multiple administrator roles in Windows Azure. Some administrators are responsible for paying for the services used in Windows Azure. Other administrators deploy applications and data. Still other administrators need to manage and maintain the applications and data put in the cloud. This chapter covers a number of miscellaneous administration tasks and items with regard to Windows Azure. In addition, this chapter addresses some additional administrative capabilities that don t always apply to the development of an Azure application, but may be helpful in the care and management of Azure applications in general. Explore the various Windows Azure subscription administrators. Understand Windows Azure OS Families and Guest OS Versions. See how to Remote Desktop to a Windows Azure virtual machine. Learn how to define a startup task for a role. Lab : Configuring and Using Remote Desktop Learn how to create a new hosted service without deploying code. See how to create and add a PFX certificate to a hosted service. Publish and deploy a Windows Azure project configured for Remote Desktop connections. Optionally learn how to configure remote access through the Portal. Optionally setup a co-administrator for your subscription. Better manage Windows Azure administrative accounts. Know how to deploy an application to the cloud directly from Visual Studio. Configure applications for Remote Desktop access.

5 Explore a virtual server running Azure applications using Remote Desktop. Module 6: Windows Azure Storage and Queues Windows Azure Storage provides highly scalable and available data storage to both cloud and onpremise services. It is not relational database storage. In fact, some types of Windows Azure Storage are quite different from relational or structured storage. In this module, you explore what Windows Azure Storage is, why you want to use, and how to access it. Once you have a general understanding of Windows Azure Storage, you explore in detail the first of three types of Windows Azure Storage; namely queue storage. Queues provide interoperable message communication between services and are not unlike what you might have seen if you have used MSMQ or IBM s MQ Series. Understand the purpose of Windows Azure Storage. Learn how to create a Windows Azure Storage account. Explore Windows Azure Storage costs. Understand the Storage Emulator, how to use it, and how it is different from Windows Azure Storage. See how to access Windows Azure Storage using both the REST API and the Storage Client Library. Examine Windows Azure Storage Queues. Learn how to get messages in and out of Windows Azure Queues. Lab : Learning Windows Azure Storage and Queues Use a Web role to create a queue and add messages to the queue. Learn how to add another Web role to your cloud service project. Use a Web role to read and display messages in the queue. Observe the difference between getting and peeking at messages in a queue. Optionally, see how to create a Storage Account service. Optionally, examine how to create an Affinity Group. Optionally, learn where to find storage account URLs and access keys. Optionally, deploy the cloud service project to the Windows Azure cloud. Explore Windows Azure Storage with external utilities. Setup Windows Azure message queue. Create a Windows Azure Storage Account. Use the Windows Azure Client library to access Windows Azure storage Deploy applications to Windows Azure that use Windows Azure Storage. Understand the difference between the Storage Emulator and Windows Azure Storage. Explore Windows Azure Storage with external tools. Module 7: Blob Storage In this module, you learn about the second of three Windows Azure Storage data storage facilities called blob storage. Blob storage provides a place to store any type of data (MP3 file, PDF document, flat text, etc). All instances of the application share this common storage. In fact, the storage can even be accessed by applications outside of the cloud. Understand the rationale for using blob storage.learn about the different types of blobs: block and page blobs.

6 Examine blob storage containers and how they are used to organize and control access to blobs. Explore how to access blob storage with both the Storage Client and REST API. Lab : Using Blob Storage Use a Web role to create a blob container and set permissions on the container. Learn how to upload blobs into a container. Use a Web role to retrieve a blob by its name (reference). Work with blob metadata. Explore the REST API used to access blob storage. Access blob data from Windows Azure or on-premise applications. Use the Windows Azure Client library or REST to access blob storage. Module 8: Table Storage Table storage is the last of Windows Azure Storage data services explored in this class. Table storage provides structured storage similar, but not the same, as a traditional database may offer. In many ways, table storage is simpler and more scalable than a traditional database. It also costs less to put data in table storage than a relational database in the cloud. In this module, you learn how to use Windows Azure table storage. You also learn how it differs from SQL Azure. You also learn how to use table storage to implement sessions used by multiple roles. Explore Windows Azure Storage s structural data service. Understand the reason for table storage. Examine the differences between table storage and traditional relational databases (as exhibited by SQL Azure). Learn how to access table storage with both the Storage Client and REST API. Understand entities as they relate to table storage. Examine how to save and retrieve entities in table storage. Lab : Using Table Storage Define an entity class. Build a TableServiceContext object to negotiate data in and out of table storage. Learn how to save entity data to table storage. Explore queries to fetch entity data from table storage. Design applications that need structured tabular data. Create and use tables in Windows Azure. Design entities that are stored in table storage. Module 9: Worker Roles Web roles exist to serve HTTP content. Worker roles, on the other hand, are processing work horses that can do just about anything you would like them to do. Generally speaking, worker roles serve as backend processors. By default, worker roles don t even have an interface with which to communicate with them. The standard and accepted means to communicate with worker roles is to have them react to messages deposited into a Windows Azure Storage queue. In this module, you explore worker roles: their purpose, how to create and configure them, and how to communicate with them.

7 Explore the purpose of Windows Azure worker roles. Understand how to create worker roles in a cloud service project. See how to configure a worker role. Learn how to test worker roles run in the Compute Emulator. Learn how to use Windows Azure Storage queues and messages to communicate with worker roles. Explore how to setup worker role endpoints. Learn how to communicate with worker role internal and input endpoints. Lab : Building a Worker Role Create a worker role and add it to your cloud project. Explore the contents of a worker role project. Configure a worker role to monitor a queue for messages. Re-explore the use of queue storage in role-to-role communications. Re-explore table storage. Build backend processors in Windows Azure. Design and build complete end-to-end applications for Windows Azure. Better use queue and table storage. Create role to role communications in Windows Azure. Module 10: SQL Azure Introduction In this module you learn about SQL Azure. SQL Azure is a relational database in the cloud. Use SQL Azure to support applications in the cloud or on-premise. Use SQL Azure as a backup storage facility. Use SQL Azure as an easily and quickly provisioned database for prototyping, rapid development, and testing. SQL Azure is a highly scalable, available relational database maintained and operated by Microsoft yet familiar to SQL Server users. Learn what SQL Azure is and why you want to use it. Understand SQL Azure in comparison to SQL Server and Windows Azure table storage. Learn how to provision a SQL Azure server and databases. Examine costs associated with SQL Azure. See how to use familiar tools and APIs to work in SQL Azure. Explore how to create and manage database objects in SQL Azure. Know how to limit SQL Azure access. Understand options for performing database backups. See how to migrate data to SQL Azure. Lab : Introduction to SQL Azure Add a SQL Azure subscription to your current Windows Azure account subscription Create a SQL Azure server and administrator. Create a database in SQL Azure. Add a table to the SQL Azure database. Explore Database Manager for accessing and managing SQL Azure databases and tables. Make design decisions between table storage and SQL Azure. Determine the cost of storing data in Windows Azure. Setup SQL Azure databases through the Developer Portal.

8 Migrate data from on-premise SQL Server databases to SQL Azure. Module 11: Diagnostics Most developers are accustomed to debugging applications. Debugging in the cloud is a bit more complex. Most developers are also familiar with the process of collecting various logs to analyze problems that occur in hardware and software systems. Windows Azure has log files. Unfortunately, since the hardware and file system of the Windows Azure data center systems are not directly at your disposal, getting data from the log files requires a little more work. In this optional module, you learn about the Windows Azure Diagnostic Service. The API provided through this service grants you access to collect all the log data you would normally desire from your Windows system. The diagnostic service also provides the means to move that data to Windows Azure Storage so it may be externally accessed. Learn how to accomplish debugging and logging in Windows Azure. Examine Windows Azure Diagnostic Service. Understand the role of the Diagnostic Agent process in the diagnostic service. Learn how to configure the diagnostic service. See how to transfer diagnostic data to Windows Azure Storage. Lab : Diagnostics See how Visual Studio cloud templates provide default diagnostic monitoring setup. Add trace statements to cloud code. Learn how to schedule diagnostic data to be transferred to Windows Azure Storage. Learn how to perform an on-demand transfer of diagnostic data to storage. Design and build logging and debugging needs into their applications. Use Windows Azure Diagnostic Services to capture log/diagnostic data. Transfer data from Windows Azure to specified storage. Prerequisites Before attending this course, students must have: Experience with Visual Studio 2010 or better is required. Knowledge and experience in a.net language (C# or VB) is required. Knowledge of ASP.NET is required. Community Have Questions? For advice about training and certification, connect with peers: Visit the training and certification forum For questions about a specific certification, chat with a Microsoft Certified Professional (MCP): Visit our MCP newsgroups To find out about recommended blogs, Web sites, and upcoming Live Meetings on popular topics, visit our community site: Visit the Microsoft Learning community

9 VERSÃO EM PORTUGUÊS Curso de 50466B: Windows azuis soluções com o Microsoft Visual Studio 2010 Comprimento: 3 Dias Publicado: 27 De julho de 2011 Idioma (s): Público-alvo: Inglês Desenvolvedores Nível: 300 Tecnologia: Tipo: Método de entrega: Windows Azure Curso Ministrado por instrutor (sala de aula) Visão geral Sobre este curso Essa classe é uma introdução à computação em nuvem e especificamente da Microsoft nuvem pública oferecendo no Windows Azure. Windows Azure foi descrito pela Microsoft como um sistema operacional para a "nuvem".nesta classe, você pode explorar esse sistema operacional de nuvem e aprender a escrever, implantar e monitorar aplicativos.net no Azure. Perfil de audiência Essa classe destina-se a desenvolvedores.net com experiência de aplicativo da Web que estão explorando o desenvolvimento de novas aplicações ou portar aplicativos existentes para o Windows Azure. A conclusão do curso Depois de concluir este curso, os alunos será capazes de: Compreenda em suas várias formas e como o Windows Azure se encaixa na espaço de computação em nuvem de computação em nuvem. Saiba por que organizações querem executar aplicativos em nuvem Azure. Compreende a arquitetura do Azure. Explore o ambiente Azure SDK e desenvolvimento (computação e armazenamento emuladores). Veja como desenvolver aplicativos para o Azure e como que varia de "normal" desenvolvimento de aplicativos.net. Escrever e implantar um aplicativo da Web do ASP.NET (função de Web) para o Azure. Aprenda a criar e implantar aplicações computacionais de fundo (papel de trabalhador) no Azure. Explore a capacidade de armazenamento do Azure para incluir armazenamento de tabela, fila e blob.

10 Examine o SQL Azure, o banco de dados relacional na nuvem. Estude como SQL Azure difere do Azure Storage. Detalhes do curso Estrutura de tópicos do cursomódulo 1: A computação em nuvem Computação tem sido rotulado como a próxima grande coisa na indústria da computação em nuvem. O que exatamente é cloud computing? Quais são os benefícios da nuvem de computação? Por que minha organização e eu quer explorar cloud computing? Ele vai nos ajudar a resolver alguns dos nossos problemas de TI? De questões que potencial devemos estar cientes? Este módulo introdutório aborda o que tem e o porquê da nuvem de computação. Ele também introduz o produto de computação em nuvem Windows Azure da Microsoft. Como a solução Microsoft compara a outra plataformas de computação em nuvem? O que é exatamente o Windows Azure? Lições Definir nuvem de computação. Saiba os benefícios da nuvem de computação. Entenda os diferentes tipos de serviços de computação em nuvem. Explore onde a computação em nuvens pode existir. Ouvir sobre problemas potenciais com cloud computing. Saiba onde a nuvem de computação pode e não pode ser aplicado. Computação em nuvem Windows Azure de lugar à luz geral. Sabe como se compara a outros ambientes de nuvem Windows Azure. Laboratório: Windows Azure conta configuração (opcional) Entenda como criar uma conta do Windows Azure. Explore os tipos de contas do Windows Azure. Saiba como acessar e usar o Portal do desenvolvedor do Windows Azure. Examine o Windows Azure Developer Portal. Depois de concluir este módulo, os alunos será capazes de: Entenda os diferentes tipos de ofertas de computação em nuvem. Explica como o Windows Azure encaixa a paisagem de computação em nuvem. Configurar uma conta do Windows Azure. Módulo 2: Windows Azure arquitetura Vários componentes e tecnologias compõem a plataforma Windows Azure. Neste módulo, você pode obter um vislumbre de um Windows Azure. Você também explorar os componentes que compõem a plataforma Windows Azure. Especificamente, você olhar para os dados de Microsoft centros e o hardware e software que hospedam aplicativos do Windows Azure e dados. Você também olhar para o ambiente de desenvolvimento. O que é preciso para produzir aplicativos Windows Azure? Finalmente, você explorar as várias partes da plataforma Windows Azure para incluir o Windows Azure, Azure SQL e a tela do App. Lições Ver um aplicativo simples do Windows Azure. Saiba mais sobre os centros de dados da Microsoft. Explore o hardware, servidores e virtualização (tecido) que dados e aplicativos de nuvem de host. Entenda o papel do Fabric Controller na gestão a nuvem Windows Azure. Conhece a arquitetura geral e componentes da plataforma Windows Azure. Compreenda as ferramentas usadas para criar e implantar os armazenamentos de dados e serviços do Windows Azure.

11 Entenda os diferentes tipos de funções no Windows Azure (Web, trabalhador, VM). Compreender os tipos de armazenamentos fornecidos pela plataforma Windows Azure (armazenamento de Azure, SQL Azure, etc.) Laboratório: Introdução ao Windows Azure Explore seu primeiro projeto do Windows Azure no Visual Studio. Veja como testar um aplicativo de nuvem no Visual Studio. Aprenda como publicar um aplicativo de nuvem. Examine o processo de implantação de um aplicativo através do Portal do desenvolvedor. Saiba como remover um serviço de nuvem. Depois de concluir este módulo, os alunos será capazes de: Entenda as partes da plataforma Windows Azure. Explore o Windows Azure Developer Portal. Configuração de um projeto de cloud no Visual Studio. Entenda a diferença entre a computação e armazenamento emuladores e Windows Azure. Módulo 3: Windows Azure Web papéis Neste módulo você explorar os detalhes das funções de Web introduzidos no último módulo. Funções da Web são essencialmente Web sites ou serviços HTTP executados na nuvem. Como parte da sua exploração de funções da Web, você aprende algumas do Windows Azure API, você pode usar nos papéis e sobre como configurar funções. Enquanto funções Web executados em data centers da Microsoft, você testar e depurá-los em sua máquina local usando o emulador de computação. Assim, neste módulo, você também explorar detalhes sobre o emulador de computação e como explorar o que está acontecendo no emulador de computação como seu código é executado. Lições Explore a finalidade dos papéis de Web do Windows Azure. Entenda como criar funções da Web em um projeto de serviço de nuvem. Consulte como configurar uma função de Web. Saiba como testar funções Web executadas no emulador de computação. Comece a explorar a API do Windows Azure. Examine como Construir funções de Web com vários sites. Laboratório: Criando uma função Web Crie um aplicativo de nuvem usando o Windows Azure Tools para Visual Studio. Explore o projeto de função Web. Configure um projeto de função Web. Ver uma função de várias instâncias em execução no emulador de computação. Modifica o aplicativo para usar uma definição de configuração personalizada. Opcionalmente, ver um projeto de nuvem de função Web implantado no Windows Azure. Depois de concluir este módulo, os alunos será capazes de: Explore a migração de aplicativos ASP.NET no Windows Azure. Construa um aplicativo simples de nuvem Windows Azure. Dinamicamente configure um aplicativo de nuvem Windows Azure através do Portal do desenvolvedor. Determine os custos de um aplicativo em execução no Windows Azure. Módulo 4: Armazenamento Local A maioria dos aplicativos usam arquivos de sistema de arquivos do servidor para algo. Cache, dados

12 de referência simples, log, etc. são todos os possíveis usos de arquivos e espaço de arquivo em um aplicativo do.net "normal". Instâncias de computação do Windows Azure (funções de Web ou trabalhador) executado em uma máquina virtual, mas compartilham recursos do servidor físico. Então, como um aplicativo do Windows Azure usar e acessar um sistema de arquivos? Este capítulo aborda o armazenamento local do Windows Azure. Que é como aplicativos podem acessar, em certa medida, arquivos na nuvem. Este capítulo também abrange uma série de limitações do uso de armazenamento local, bem como os bons e maus usos de armazenamento local. Além disso, você aprende sobre alternativas para armazenamento local; mais notavelmente, um produto chamado Windows Azure Drive. Lições Examine o armazenamento local do Windows Azure. Ver como local de armazenamento é diferente de sistemas de arquivos do servidor normal. Aprenda a configurar o armazenamento local. Compreende as limitações de armazenamento local e onde e quando usá-lo. Explore a API para acessar o armazenamento local. Saiba mais sobre o Windows Azure Drive (anteriormente X-Drive). Laboratório: Usando o armazenamento Local Configure uma função de Web para que o armazenamento local. Altere o código de função de Web para ler e escrever para armazenamento local. Explore a relação de armazenamento local de funções e instâncias de função. Explore como limpar armazenamento local no papel reciclagem de instância. Opcionalmente, implante o armazenamento local usando o projeto de nuvem para nuvem Windows Azure. Depois de concluir este módulo, os alunos será capazes de: Crie local de armazenamento para uso por um aplicativo do Windows Azure. Consulte Windows Azure escalabilidade através de várias instâncias de papel. Uso de aplicativos de design de sistema de arquivos usando o armazenamento local ou unidade do Azure. Módulo 5: Windows Azure administração Existem várias funções de administrador no Windows Azure. Alguns administradores são responsáveis pelo pagamento dos serviços utilizados no Windows Azure. Outros administradores implantam aplicativos e dados.ainda outros administradores precisam gerenciar e manter os aplicativos e dados colocados na nuvem. Este capítulo abrange uma série de tarefas de administração de diversos e artigos sobre Windows Azure. Além disso, este capítulo aborda algumas capacidades administrativas adicionais que sempre não se aplicam ao desenvolvimento de uma aplicação Azure, mas podem ser útil para o cuidado e a gestão de aplicações azuis em geral. Lições Explore os vários administradores de assinatura do Windows Azure. Entenda o Windows Azure OS famílias e versões de sistema operacional convidado. Veja como a área de trabalho remota a uma máquina virtual de Windows Azure. Saiba como definir uma tarefa de inicialização para um papel. Laboratório: Configurando e utilizando a área de trabalho remota Aprenda a criar um novo serviço hospedado sem implantar código. Veja como criar e adicionar um certificado PFX para um serviço hospedado. Publicar e implantar um projeto do Windows Azure configurado para conexões de área de trabalho remota. Opcionalmente, Aprenda como configurar acesso remoto através do Portal. Opcionalmente, configure um coadministrador para sua assinatura.

13 Depois de concluir este módulo, os alunos será capazes de: Melhor gerencie contas administrativas do Windows Azure. Saiba como implantar um aplicativo em nuvem diretamente do Visual Studio. Configure aplicativos para acesso a área de trabalho remota. Explore um servidor virtual a executar aplicações azuis usando a área de trabalho remota. Módulo 6: Windows Azure Storage e filas Windows Azure Storage fornece armazenamento de dados altamente escalável e disponível para serviços de nuvem e no local. Não é armazenamento de banco de dados relacional. Na verdade, alguns tipos de armazenamento do Windows Azure são bem diferentes do armazenamento estruturado ou relacional. Neste módulo, você pode explorar o que é o Windows Azure Storage, por que você quer usar e como acessá-lo.depois de ter uma compreensão geral do Windows Azure Storage, você explorar detalhadamente o primeiro dos três tipos de armazenamento do Windows Azure; ou seja o armazenamento de fila. Filas de mensagens interoperáveis comunicação entre serviços e não são ao contrário do que você pode ter visto se você tiver usado o MSMQ ou IBM MQ Series. Lições Compreende a finalidade do Windows Azure Storage. Saiba como criar uma conta do Windows Azure Storage. Explore os custos de armazenamento do Windows Azure. Compreenda o emulador de armazenamento e como usá-lo como ele é diferente do Windows Azure Storage. Veja como acessar o Windows Azure Storage usando a API REST e a biblioteca de cliente de armazenamento. Examine o Windows Azure Storage filas. Saiba como obter mensagens dentro e fora do Windows Azure filas. Laboratório: Aprendendo Windows Azure Storage e filas Use uma função de Web para criar uma fila e adicionar mensagens à fila. Saiba como adicionar outra função da Web ao seu projeto de serviço de nuvem. Use uma função Web para ler e exibir mensagens na fila. Observe a diferença entre ficar e inspecionar mensagens em uma fila. Opcionalmente, consulte como criar um serviço de armazenamento de conta. Opcionalmente, examine como criar um grupo de afinidade. Opcionalmente, saiba onde encontrar armazenamento conta URLs e teclas de acesso. Opcionalmente, implante o projeto de serviço de nuvem em nuvem Windows Azure. Explore o Windows Azure Storage com utilitários externos. Depois de concluir este módulo, os alunos será capazes de: Fila de mensagens do Windows Azure de instalação. Crie uma conta do Windows Azure Storage. Usar a biblioteca de cliente do Windows Azure para acessar o Windows Azure storage Implante aplicativos para o Windows Azure que usam o Windows Azure Storage. Entenda a diferença entre o emulador de armazenamento e armazenamento do Windows Azure. Explore o Windows Azure Storage com ferramentas externas.

14 Módulo 7: Armazenamento de Blob Este módulo, você aprenderá sobre o segundo de três instalações de armazenamento de dados de armazenamento do Windows Azure chamado armazenamento de blob. Armazenamento de blob fornece um local para armazenar qualquer tipo de dados (arquivo MP3, documentos PDF, texto liso, etc). Todas as instâncias do aplicativo compartilham este armazenamento comum. Na verdade, o armazenamento ainda pode ser acessado por aplicativos fora da nuvem. Lições Compreenda a lógica para usar o armazenamento de blob.saiba mais sobre os diferentes tipos de blobs: blobs de bloco e página. Examine os recipientes de armazenamento de blob e como eles são usados para organizar e controlar o acesso a blobs. Explore como acessar o armazenamento de blob com o cliente de armazenamento e a API REST. Laboratório: Usando armazenamento de Blob Use um papel de Web para criar um recipiente de blob e definir permissões no contêiner. Aprenda como fazer upload de bolhas em um recipiente. Use uma função Web para recuperar um blob por seu nome (referência). Trabalhar com metadados de blob. Explore o REST API usada para acessar o armazenamento de blob. Depois de concluir este módulo, os alunos será capazes de: Dados de acesso blob do Windows Azure ou aplicativos on-premise. Use a biblioteca de cliente do Windows Azure ou descanso para acessar o armazenamento de blob. Módulo 8: Tabela de armazenamento Tabela de armazenamento é o último dos serviços de dados do Windows Azure Storage explorado nesta classe.armazenamento de tabela fornece armazenamento estruturado semelhante, mas não é o mesmo, como um banco de dados tradicional pode oferecer. Em muitos aspectos, armazenamento de tabela é mais simples e mais escalável do que um banco de dados tradicional. Também custa menos para colocar dados no armazenamento de tabela de um banco de dados relacional na nuvem. Neste módulo, você aprender a usar o Windows Azure armazenamento de tabela. Você também aprenderá como ela difere do SQL Azure. Você também aprender a usar o armazenamento de tabela para implementar sessões usados por várias funções. Lições Explore o serviço de dados estruturais do Windows Azure Storage. Compreende a razão para o armazenamento de tabela. Analisar as diferenças entre o armazenamento de mesa e bancos de dados relacionais tradicionais (como exibido pelo SQL Azure). Saiba como acessar o armazenamento de tabela com o cliente de armazenamento e a API REST. Understand entities as they relate to table storage. Examine how to save and retrieve entities in table storage. Lab : Using Table Storage Define an entity class. Build a TableServiceContext object to negotiate data in and out of table storage. Learn how to save entity data to table storage. Explore queries to fetch entity data from table storage. Design applications that need structured tabular data.

15 Create and use tables in Windows Azure. Design entities that are stored in table storage. Module 9: Worker Roles Web roles exist to serve HTTP content. Worker roles, on the other hand, are processing work horses that can do just about anything you would like them to do. Generally speaking, worker roles serve as backend processors. By default, worker roles don t even have an interface with which to communicate with them. The standard and accepted means to communicate with worker roles is to have them react to messages deposited into a Windows Azure Storage queue. In this module, you explore worker roles: their purpose, how to create and configure them, and how to communicate with them. Explore the purpose of Windows Azure worker roles. Understand how to create worker roles in a cloud service project. See how to configure a worker role. Learn how to test worker roles run in the Compute Emulator. Learn how to use Windows Azure Storage queues and messages to communicate with worker roles. Explore how to setup worker role endpoints. Learn how to communicate with worker role internal and input endpoints. Lab : Building a Worker Role Create a worker role and add it to your cloud project. Explore the contents of a worker role project. Configure a worker role to monitor a queue for messages. Re-explore the use of queue storage in role-to-role communications. Re-explore table storage. Build backend processors in Windows Azure. Design and build complete end-to-end applications for Windows Azure. Better use queue and table storage. Create role to role communications in Windows Azure. Module 10: SQL Azure Introduction In this module you learn about SQL Azure. SQL Azure is a relational database in the cloud. Use SQL Azure to support applications in the cloud or on-premise. Use SQL Azure as a backup storage facility. Use SQL Azure as an easily and quickly provisioned database for prototyping, rapid development, and testing. SQL Azure is a highly scalable, available relational database maintained and operated by Microsoft yet familiar to SQL Server users. Learn what SQL Azure is and why you want to use it. Understand SQL Azure in comparison to SQL Server and Windows Azure table storage. Learn how to provision a SQL Azure server and databases. Examine costs associated with SQL Azure. See how to use familiar tools and APIs to work in SQL Azure. Explore how to create and manage database objects in SQL Azure. Know how to limit SQL Azure access. Understand options for performing database backups.

16 See how to migrate data to SQL Azure. Lab : Introduction to SQL Azure Add a SQL Azure subscription to your current Windows Azure account subscription Create a SQL Azure server and administrator. Create a database in SQL Azure. Add a table to the SQL Azure database. Explore Database Manager for accessing and managing SQL Azure databases and tables. Make design decisions between table storage and SQL Azure. Determine the cost of storing data in Windows Azure. Setup SQL Azure databases through the Developer Portal. Migrate data from on-premise SQL Server databases to SQL Azure. Module 11: Diagnostics Most developers are accustomed to debugging applications. Debugging in the cloud is a bit more complex. Most developers are also familiar with the process of collecting various logs to analyze problems that occur in hardware and software systems. Windows Azure has log files. Unfortunately, since the hardware and file system of the Windows Azure data center systems are not directly at your disposal, getting data from the log files requires a little more work. In this optional module, you learn about the Windows Azure Diagnostic Service. The API provided through this service grants you access to collect all the log data you would normally desire from your Windows system. The diagnostic service also provides the means to move that data to Windows Azure Storage so it may be externally accessed. Learn how to accomplish debugging and logging in Windows Azure. Examine Windows Azure Diagnostic Service. Understand the role of the Diagnostic Agent process in the diagnostic service. Learn how to configure the diagnostic service. See how to transfer diagnostic data to Windows Azure Storage. Lab : Diagnostics See how Visual Studio cloud templates provide default diagnostic monitoring setup. Add trace statements to cloud code. Learn how to schedule diagnostic data to be transferred to Windows Azure Storage. Learn how to perform an on-demand transfer of diagnostic data to storage. Design and build logging and debugging needs into their applications. Use Windows Azure Diagnostic Services to capture log/diagnostic data. Transfer data from Windows Azure to specified storage. Prerequisites Before attending this course, students must have: Experience with Visual Studio 2010 or better is required. Knowledge and experience in a.net language (C# or VB) is required.

17 Knowledge of ASP.NET is required. Community Have Questions?For advice about training and certification, connect with peers: Visit the training and certification forum For questions about a specific certification, chat with a Microsoft Certified Professional (MCP): Visit our MCP newsgroups To find out about recommended blogs, Web sites, and upcoming Live Meetings on popular topics, visit our community site: Visit the Microsoft Learning community

Developing Microsoft Azure Solutions (20532)

Developing Microsoft Azure Solutions (20532) Developing Microsoft Azure Solutions (20532) Formato do curso: Presencial Com certificação: MCSD: Azure Solutions Architect Preço: 1350 Nível: Intermédio Duração: 24 horas Este curso está preparado para

Leia mais

Developing Microsoft Azure Solutions (20532)

Developing Microsoft Azure Solutions (20532) Developing Microsoft Azure Solutions (20532) Formato do curso: Presencial Localidade: Porto Com certificação: MCSD: Azure Solutions Architect Data: 03 Jul. 2017 a 06 Jul. 2017 Preço: 1350 Horário: Laboral

Leia mais

Microsoft Azure Fundamentals (10979)

Microsoft Azure Fundamentals (10979) Microsoft Azure Fundamentals (10979) Formato do curso: Presencial Localidade: Lisboa Data: 03 Abr. 2017 a 06 Abr. 2017 Preço: 850 Horário: Pós-laboral - das 18:30 às 21:30 Nível: Iniciado Duração: 12 horas

Leia mais

Implementing Microsoft Azure Infrastructure Solutions (20533)

Implementing Microsoft Azure Infrastructure Solutions (20533) Implementing Microsoft Azure Infrastructure Solutions (20533) Formato do curso: Presencial Localidade: Porto Com certificação: MCSD: Azure Solutions Architect Data: 18 Set. 2017 a 22 Set. 2017 Preço: 1590

Leia mais

Transcript name: 1. Introduction to DB2 Express-C

Transcript name: 1. Introduction to DB2 Express-C Transcript name: 1. Introduction to DB2 Express-C Transcript name: 1. Introduction to DB2 Express-C Welcome to the presentation Introduction to DB2 Express-C. In this presentation we answer 3 questions:

Leia mais

Software Testing with Visual Studio 2013 (20497)

Software Testing with Visual Studio 2013 (20497) Software Testing with Visual Studio 2013 (20497) Formato do curso: Presencial Preço: 800 Nível: Intermédio Duração: 12 horas Este curso, mostra a Programadores e Testers como utilizar as ferramentas do

Leia mais

Deploying and Managing Windows 10 Using Enterprise Services ( )

Deploying and Managing Windows 10 Using Enterprise Services ( ) Deploying and Managing Windows 10 Using Enterprise Services (20697-2) Formato do curso: Presencial Com certificação: Microsoft Certified Solutions Associate (MCSA) Preço: 1590 Nível: Intermédio Duração:

Leia mais

Planning for and Managing Devices in the Enterprise: Enterprise Management Suite (EMS) & On-Premises Tools (20398)

Planning for and Managing Devices in the Enterprise: Enterprise Management Suite (EMS) & On-Premises Tools (20398) Planning for and Managing Devices in the Enterprise: Enterprise Management Suite (EMS) & On-Premises Tools (20398) Formato do curso: Presencial Localidade: Lisboa Data: 18 Dez. 2017 a 22 Dez. 2017 Preço:

Leia mais

Installation, Storage, and Compute with Windows Server 2016 (20740)

Installation, Storage, and Compute with Windows Server 2016 (20740) Installation, Storage, and Compute with Windows Server 2016 (20740) Formato do curso: Presencial Localidade: Lisboa Data: 18 Mar. 2019 a 22 Mar. 2019 Preço: 1630 Horário: Laboral - das 09h30 às 17h30 Nível:

Leia mais

Designing Solutions for Microsoft SQL Server 2014 (20465)

Designing Solutions for Microsoft SQL Server 2014 (20465) Designing Solutions for Microsoft SQL Server 2014 (20465) Formato do curso: Presencial Com certificação: MCSE: Data Platform Preço: 1090 Nível: Avançado Duração: 18 horas Este curso de 3 dias, destina-se

Leia mais

Enabling and Managing Office 365 (20347)

Enabling and Managing Office 365 (20347) Enabling and Managing Office 365 (20347) Formato do curso: Presencial Localidade: Lisboa Data: 21 Jan. 2019 a 25 Jan. 2019 Preço: 1670 Promoção: -10% Horário: Laboral - das 09h30 às 17h30 Nível: Iniciado

Leia mais

20740: Installation, Storage, and Compute with Windows Server 2016

20740: Installation, Storage, and Compute with Windows Server 2016 20740: Installation, Storage, and Compute with Windows Server 2016 Microsoft - Servidores Nível: Intermédio Duração: 35h Sobre o curso Este curso permite aos formandos adquirir conhecimentos na instalação

Leia mais

VMware vsphere: Install, Configure, Manage [v6.5] (VWVSICM6.5)

VMware vsphere: Install, Configure, Manage [v6.5] (VWVSICM6.5) VMware vsphere: Install, Configure, Manage [v6.5] (VWVSICM6.5) Formato do curso: Presencial Localidade: Porto Com certificação: VMware Certified Professional 6 Data Center Virtualization (VCP6-DCV) Data:

Leia mais

Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463)

Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463) Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463) Formato do curso: Presencial Localidade: Porto Com certificação: MCSA: SQL Server Data: 16 Jan. 2017 a 20 Jan. 2017 Preço: 1550 Horário:

Leia mais

Basic SharePoint Server 2013 Branding (55081)

Basic SharePoint Server 2013 Branding (55081) Basic SharePoint Server 2013 Branding (55081) Formato do curso: Presencial Preço: 850 Nível: Avançado Duração: 12 horas Este curso de 2 dias, destina-se a todos os interessados em customizar o aspecto

Leia mais

Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463)

Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463) Implementing a Data Warehouse with Microsoft SQL Server 2014 (20463) Formato do curso: Presencial e Live Training Com certificação: MCSA: SQL Server Preço: 1630 Nível: Avançado Duração: 35 horas Este curso

Leia mais

Installation, Storage, and Compute with Windows Server 2016 (20740)

Installation, Storage, and Compute with Windows Server 2016 (20740) Installation, Storage, and Compute with Windows Server 2016 (20740) Formato do curso: Presencial Preço: Nível: Iniciado Duração: 30 horas Este curso permite aos formandos adquirir conhecimentos na instalação

Leia mais

50592A: Advanced SQL Azure

50592A: Advanced SQL Azure 50592A: Advanced SQL Azure Length: 4 Days Published: March 21, 2012 Language(s): Audience(s): English IT Professionals Level: 300 Technology: Type: Delivery Method: Microsoft SQL Azure Database Course

Leia mais

Supporting and Troubleshooting Windows 10 (10982)

Supporting and Troubleshooting Windows 10 (10982) Supporting and Troubleshooting Windows 10 (10982) Formato do curso: Presencial Localidade: Porto Data: 20 Nov. 2017 a 30 Nov. 2017 Preço: 1590 Horário: Pós-laboral - das 18:30 às 21:30 Nível: Intermédio

Leia mais

Comportamento Organizacional: O Comportamento Humano no Trabalho (Portuguese Edition)

Comportamento Organizacional: O Comportamento Humano no Trabalho (Portuguese Edition) Comportamento Organizacional: O Comportamento Humano no Trabalho (Portuguese Edition) John W. Newstrom Click here if your download doesn"t start automatically Comportamento Organizacional: O Comportamento

Leia mais

Implementing Data Models and Reports with SQL Server 2014 (20466)

Implementing Data Models and Reports with SQL Server 2014 (20466) Implementing Data Models and Reports with SQL Server 2014 (20466) Formato do curso: Presencial Localidade: Lisboa Com certificação: MCSE: Business Intelligence Data: 11 Set. 2017 a 22 Set. 2017 Preço:

Leia mais

Core Solutions of Microsoft Skype for Business 2015 (20334)

Core Solutions of Microsoft Skype for Business 2015 (20334) Core Solutions of Microsoft Skype for Business 2015 (20334) Formato do curso: Presencial Preço: 1670 Nível: Intermédio Duração: 35 horas Este curso fornece aos alunos o conhecimento e as habilidades necessárias

Leia mais

Administering Microsoft Exchange Server 2016 ( )

Administering Microsoft Exchange Server 2016 ( ) Administering Microsoft Exchange Server 2016 (20345-1) Formato do curso: Presencial Localidade: Porto Data: 13 Nov. 2017 a 17 Nov. 2017 Preço: 1520 Horário: Laboral - das 09:30 às 17:00 Nível: Intermédio

Leia mais

Como Mudar a Senha do Roteador Pelo IP o.1.1. Configure e Altere a Senha do seu Roteador acessando o IP Acesse o Site e Confira!

Como Mudar a Senha do Roteador Pelo IP o.1.1. Configure e Altere a Senha do seu Roteador acessando o IP Acesse o Site e Confira! Como Mudar a Senha do Roteador Pelo IP 192.168.o.1.1. Configure e Altere a Senha do seu Roteador acessando o IP 192.168.1.1. Acesse o Site e Confira! If you are using the IP address 192.168.0.1.1, take

Leia mais

Farmacologia na Pratica de Enfermagem (Em Portuguese do Brasil)

Farmacologia na Pratica de Enfermagem (Em Portuguese do Brasil) Farmacologia na Pratica de Enfermagem (Em Portuguese do Brasil) Click here if your download doesn"t start automatically Farmacologia na Pratica de Enfermagem (Em Portuguese do Brasil) Farmacologia na Pratica

Leia mais

Installing and Configuring Windows Server 2012 (20410)

Installing and Configuring Windows Server 2012 (20410) Installing and Configuring Windows Server 2012 (20410) Formato do curso: Presencial Localidade: Porto Com certificação: Microsoft Certified Solutions Associate (MCSA) Data: 23 Jan. 2017 a 27 Jan. 2017

Leia mais

Installing and Configuring Windows Server 2012 (20410)

Installing and Configuring Windows Server 2012 (20410) Installing and Configuring Windows Server 2012 (20410) Formato do curso: Presencial Localidade: Lisboa Com certificação: Microsoft Certified Solutions Associate (MCSA) Data: 06 Jan. 2017 a 17 Mar. 2017

Leia mais

20480 Programming in HTML5 with JavaScript and CSS3

20480 Programming in HTML5 with JavaScript and CSS3 20480 Programming in HTML5 with JavaScript and CSS3 Microsoft Nível: Intermédio Duração: 35h Sobre o curso Este curso fornece uma introdução ao HTML5, CSS3 e JavaScript. Este curso ajuda os formandos a

Leia mais

Developing Windows Azure and Web Services (20487)

Developing Windows Azure and Web Services (20487) Developing Windows Azure and Web Services (20487) Formato do curso: Presencial Localidade: Lisboa Com certificação: Microsoft Certified Solutions Developer (MCSD) Data: 22 Mai. 2017 a 26 Mai. 2017 Preço:

Leia mais

VGM. VGM information. ALIANÇA VGM WEB PORTAL USER GUIDE June 2016

VGM. VGM information. ALIANÇA VGM WEB PORTAL USER GUIDE June 2016 Overview The Aliança VGM Web portal is an application that enables you to submit VGM information directly to Aliança via our e-portal Web page. You can choose to enter VGM information directly, or to download

Leia mais

Como testar componentes eletrônicos - volume 1 (Portuguese Edition)

Como testar componentes eletrônicos - volume 1 (Portuguese Edition) Como testar componentes eletrônicos - volume 1 (Portuguese Edition) Renato Paiotti Newton C. Braga Click here if your download doesn"t start automatically Como testar componentes eletrônicos - volume 1

Leia mais

Administering Microsoft SQL Server 2014 Databases (20462)

Administering Microsoft SQL Server 2014 Databases (20462) Administering Microsoft SQL Server 2014 Databases (20462) Formato do curso: Presencial Localidade: Lisboa Com certificação: MCSA: SQL Server Data: 13 Fev. 2017 a 24 Fev. 2017 Preço: 1550 Horário: Pós-laboral

Leia mais

O PRíNCIPE FELIZ E OUTRAS HISTóRIAS (EDIçãO BILíNGUE) (PORTUGUESE EDITION) BY OSCAR WILDE

O PRíNCIPE FELIZ E OUTRAS HISTóRIAS (EDIçãO BILíNGUE) (PORTUGUESE EDITION) BY OSCAR WILDE Read Online and Download Ebook O PRíNCIPE FELIZ E OUTRAS HISTóRIAS (EDIçãO BILíNGUE) (PORTUGUESE EDITION) BY OSCAR WILDE DOWNLOAD EBOOK : O PRíNCIPE FELIZ E OUTRAS HISTóRIAS (EDIçãO Click link bellow and

Leia mais

Implementing Data Models and Reports with SQL Server 2014 (20466)

Implementing Data Models and Reports with SQL Server 2014 (20466) Implementing Data Models and Reports with SQL Server 2014 (20466) Formato do curso: Presencial e Live Training Localidade: Lisboa Com certificação: MCSE: Business Intelligence Data: 23 Jan. 2017 a 03 Fev.

Leia mais

Developing Microsoft SQL Server 2014 Databases (20464)

Developing Microsoft SQL Server 2014 Databases (20464) Developing Microsoft SQL Server 2014 Databases (20464) Formato do curso: Presencial Localidade: Porto Com certificação: MCSE: Data Platform Data: 25 Set. 2017 a 29 Set. 2017 Preço: 1550 Horário: Laboral

Leia mais

Transformando Pessoas - Coaching, PNL e Simplicidade no processo de mudancas (Portuguese Edition)

Transformando Pessoas - Coaching, PNL e Simplicidade no processo de mudancas (Portuguese Edition) Transformando Pessoas - Coaching, PNL e Simplicidade no processo de mudancas (Portuguese Edition) Felippe / Marcelo Click here if your download doesn"t start automatically Transformando Pessoas - Coaching,

Leia mais

Conversação Para Viagem - Inglês (Michaelis Tour) (Portuguese Edition)

Conversação Para Viagem - Inglês (Michaelis Tour) (Portuguese Edition) Conversação Para Viagem - Inglês (Michaelis Tour) (Portuguese Edition) Antonio Carlos Vilela Click here if your download doesn"t start automatically Conversação Para Viagem - Inglês (Michaelis Tour) (Portuguese

Leia mais

HISTOLOGIA E BIOLOGIA CELULAR. UMA INTRODUçãO À PATOLOGIA (EM PORTUGUESE DO BRASIL) BY ABRAHAM L. KIERSZENBAUM

HISTOLOGIA E BIOLOGIA CELULAR. UMA INTRODUçãO À PATOLOGIA (EM PORTUGUESE DO BRASIL) BY ABRAHAM L. KIERSZENBAUM Read Online and Download Ebook HISTOLOGIA E BIOLOGIA CELULAR. UMA INTRODUçãO À PATOLOGIA (EM PORTUGUESE DO BRASIL) BY ABRAHAM L. KIERSZENBAUM DOWNLOAD EBOOK : HISTOLOGIA E BIOLOGIA CELULAR. UMA INTRODUçãO

Leia mais

Introdução A Delphi Com Banco De Dados Firebird (Portuguese Edition)

Introdução A Delphi Com Banco De Dados Firebird (Portuguese Edition) Introdução A Delphi Com Banco De Dados Firebird (Portuguese Edition) Ricardo De Moraes / André Luís De Souza Silva Click here if your download doesn"t start automatically Introdução A Delphi Com Banco

Leia mais

Abraçado pelo Espírito (Portuguese Edition)

Abraçado pelo Espírito (Portuguese Edition) Abraçado pelo Espírito (Portuguese Edition) Charles Swindoll Click here if your download doesn"t start automatically Abraçado pelo Espírito (Portuguese Edition) Charles Swindoll Abraçado pelo Espírito

Leia mais

Designing and Deploying Microsoft SharePoint 2010 (10231)

Designing and Deploying Microsoft SharePoint 2010 (10231) Designing and Deploying Microsoft SharePoint 2010 (10231) Formato do curso: Presencial Preço: 1650 Nível: Intermédio Duração: 30 horas Este curso foi desenvolvido para profissionais na área de IT que pretendam

Leia mais

Designing and Implementing a Server Infrastructure (20413)

Designing and Implementing a Server Infrastructure (20413) Designing and Implementing a Server Infrastructure (20413) Formato do curso: Presencial Localidade: Porto Com certificação: Microsoft Certified Solutions Expert (MCSE) Data: 23 Jan. 2017 a 03 Fev. 2017

Leia mais

As 100 melhores piadas de todos os tempos (Portuguese Edition)

As 100 melhores piadas de todos os tempos (Portuguese Edition) As 100 melhores piadas de todos os tempos (Portuguese Edition) Click here if your download doesn"t start automatically As 100 melhores piadas de todos os tempos (Portuguese Edition) As 100 melhores piadas

Leia mais

MySQL: Comece com o principal banco de dados open source do mercado (Portuguese Edition)

MySQL: Comece com o principal banco de dados open source do mercado (Portuguese Edition) MySQL: Comece com o principal banco de dados open source do mercado (Portuguese Edition) Click here if your download doesn"t start automatically MySQL: Comece com o principal banco de dados open source

Leia mais

ATLAS DE ACUPUNTURA VETERINáRIA. CãES E GATOS (EM PORTUGUESE DO BRASIL) BY CHOO HYUNG KIM

ATLAS DE ACUPUNTURA VETERINáRIA. CãES E GATOS (EM PORTUGUESE DO BRASIL) BY CHOO HYUNG KIM Read Online and Download Ebook ATLAS DE ACUPUNTURA VETERINáRIA. CãES E GATOS (EM PORTUGUESE DO BRASIL) BY CHOO HYUNG KIM DOWNLOAD EBOOK : ATLAS DE ACUPUNTURA VETERINáRIA. CãES E GATOS Click link bellow

Leia mais

Um olhar que cura: Terapia das doenças espirituais (Portuguese Edition)

Um olhar que cura: Terapia das doenças espirituais (Portuguese Edition) Um olhar que cura: Terapia das doenças espirituais (Portuguese Edition) Padre Paulo Ricardo Click here if your download doesn"t start automatically Um olhar que cura: Terapia das doenças espirituais (Portuguese

Leia mais

Os 7 Hábitos das Pessoas Altamente Eficazes (Portuguese Edition)

Os 7 Hábitos das Pessoas Altamente Eficazes (Portuguese Edition) Os 7 Hábitos das Pessoas Altamente Eficazes (Portuguese Edition) Click here if your download doesn"t start automatically Os 7 Hábitos das Pessoas Altamente Eficazes (Portuguese Edition) Os 7 Hábitos das

Leia mais

MCSA Office 365 [Ativar Portugal] Sobre o curso. Destinatários. Microsoft - Percursos

MCSA Office 365 [Ativar Portugal] Sobre o curso. Destinatários. Microsoft - Percursos MCSA Office 365 [Ativar Portugal] Microsoft - Percursos Promoção: Valor de Campanha Ativar Portugal: 850 Inclui Exame de Certificação Com certificação Localidade: Lisboa Data: 27 Jun 2016 Preço: 2300 (

Leia mais

Administering Windows Server 2012 (20411)

Administering Windows Server 2012 (20411) Administering Windows Server 2012 (20411) Formato do curso: Presencial Com certificação: Microsoft Certified Solutions Associate (MCSA) Preço: 1630 Nível: Intermédio Duração: 35 horas Este curso é o segundo

Leia mais

Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977)

Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977) Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977) Formato do curso: Presencial Localidade: Porto Data: 21 Nov. 2016 a 02 Dez. 2016 Preço: 1590 Horário: Pós-laboral - 18h30-21h30 Nível:

Leia mais

Programming in HTML5 with JavaScript and CSS3 (20480)

Programming in HTML5 with JavaScript and CSS3 (20480) Programming in HTML5 with JavaScript and CSS3 (20480) Formato do curso: Presencial Localidade: Lisboa Com certificação: Microsoft Certified Solutions Developer (MCSD) Data: 11 Set. 2017 a 15 Set. 2017

Leia mais

GERENCIAMENTO PELAS DIRETRIZES (PORTUGUESE EDITION) BY VICENTE FALCONI

GERENCIAMENTO PELAS DIRETRIZES (PORTUGUESE EDITION) BY VICENTE FALCONI Read Online and Download Ebook GERENCIAMENTO PELAS DIRETRIZES (PORTUGUESE EDITION) BY VICENTE FALCONI DOWNLOAD EBOOK : GERENCIAMENTO PELAS DIRETRIZES (PORTUGUESE Click link bellow and free register to

Leia mais

Vendors Enquiries for RFP 003/2015

Vendors Enquiries for RFP 003/2015 Date: 22/10/2015 Vendors Enquiries for RFP 003/2015 1) Question I am afraid the terms of the RFP cannot be complied by none of the companies we work with, the terms have limited the underwriters ability

Leia mais

Bíblia de Estudo Conselheira - Gênesis: Acolhimento Reflexão Graça (Portuguese Edition)

Bíblia de Estudo Conselheira - Gênesis: Acolhimento Reflexão Graça (Portuguese Edition) Bíblia de Estudo Conselheira - Gênesis: Acolhimento Reflexão Graça (Portuguese Edition) Sociedade Bíblica do Brasil Click here if your download doesn"t start automatically Download and Read Free Online

Leia mais

Programming in C# Conteúdo Programático. Área de formação Plataforma e Tecnologias de Informação

Programming in C# Conteúdo Programático. Área de formação Plataforma e Tecnologias de Informação Destinatários Programadores experientes com algum conhecimento de C, C++, JavaScript, Objective-C, Microsoft Visual Basic, ou Java e conheçam os conceitos de programação orientada por objetos. Nº mínimo

Leia mais

MCSA Office 365 [Ativar Portugal] Sobre o curso. Este curso faz parte do programa Ativar Portugal. Microsoft

MCSA Office 365 [Ativar Portugal] Sobre o curso. Este curso faz parte do programa Ativar Portugal. Microsoft MCSA Office 365 [Ativar Portugal] Microsoft Promoção: Valor de Campanha Ativar Portugal: 850 Inclui Exame de Certificação Com certificação Localidade: Porto Data: 05 Sep 2016 Preço: 2300 ( Os valores apresentados

Leia mais

GUIÃO I. Grupo: Continente e Ilha. 1º Momento. Intervenientes e Tempos. Descrição das actividades

GUIÃO I. Grupo: Continente e Ilha. 1º Momento. Intervenientes e Tempos. Descrição das actividades GUIÃO I Prova construída pelos formandos e validada pelo GAVE, 1/6 Grupo: Continente e Ilha Disciplina: Inglês, Nível de Continuação 11.º ano Domínio de Referência: Um mundo de Muitas Culturas 1º Momento

Leia mais

Developing Microsoft SharePoint Server 2013 Core Solutions (20488)

Developing Microsoft SharePoint Server 2013 Core Solutions (20488) Developing Microsoft SharePoint Server 2013 Core Solutions (20488) Formato do curso: Presencial Com certificação: MCSD: Sharepoint Applications Preço: 1650 Nível: Intermédio Duração: 30 horas Neste curso

Leia mais

GUIÃO F. Grupo: Minho. 1º Momento. Intervenientes e Tempos. Descrição das actividades

GUIÃO F. Grupo: Minho. 1º Momento. Intervenientes e Tempos. Descrição das actividades GUIÃO F Prova construída pelos formandos e validada pelo GAVE, 1/7 Grupo: Minho Disciplina: Inglês, Nível de Continuação 11.º ano Domínio de Referência: Um Mundo de Muitas Culturas 1º Momento Intervenientes

Leia mais

ATLAS DE ACUPUNTURA VETERINáRIA. CãES E GATOS (EM PORTUGUESE DO BRASIL) BY CHOO HYUNG KIM

ATLAS DE ACUPUNTURA VETERINáRIA. CãES E GATOS (EM PORTUGUESE DO BRASIL) BY CHOO HYUNG KIM Read Online and Download Ebook ATLAS DE ACUPUNTURA VETERINáRIA. CãES E GATOS (EM PORTUGUESE DO BRASIL) BY CHOO HYUNG KIM DOWNLOAD EBOOK : ATLAS DE ACUPUNTURA VETERINáRIA. CãES E GATOS Click link bellow

Leia mais

Gestão da comunicação - Epistemologia e pesquisa teórica (Portuguese Edition)

Gestão da comunicação - Epistemologia e pesquisa teórica (Portuguese Edition) Gestão da comunicação - Epistemologia e pesquisa teórica (Portuguese Edition) Maria Cristina Castilho Costa, Maria Aparecida Baccega Click here if your download doesn"t start automatically Download and

Leia mais

TEN CATE. HISTOLOGIA ORAL (EM PORTUGUESE DO BRASIL) BY ANTONIO NANCI

TEN CATE. HISTOLOGIA ORAL (EM PORTUGUESE DO BRASIL) BY ANTONIO NANCI Read Online and Download Ebook TEN CATE. HISTOLOGIA ORAL (EM PORTUGUESE DO BRASIL) BY ANTONIO NANCI DOWNLOAD EBOOK : TEN CATE. HISTOLOGIA ORAL (EM PORTUGUESE DO Click link bellow and free register to download

Leia mais

Biscuit - potes (Coleção Artesanato) (Portuguese Edition)

Biscuit - potes (Coleção Artesanato) (Portuguese Edition) Biscuit - potes (Coleção Artesanato) (Portuguese Edition) Regina Panzoldo Click here if your download doesn"t start automatically Biscuit - potes (Coleção Artesanato) (Portuguese Edition) Regina Panzoldo

Leia mais

Gerenciamento da Rotina do Trabalho do Dia-A-Dia (Em Portuguese do Brasil)

Gerenciamento da Rotina do Trabalho do Dia-A-Dia (Em Portuguese do Brasil) Gerenciamento da Rotina do Trabalho do Dia-A-Dia (Em Portuguese do Brasil) By Vicente Falconi Campos Gerenciamento da Rotina do Trabalho do Dia-A-Dia (Em Portuguese do Brasil) By Vicente Falconi Campos

Leia mais

DO SILêNCIO DO LAR AO SILêNCIO ESCOLAR: RACISMO, PRECONCEITO E DISCRIMINAçãO NA EDUCAçãO INFANTIL (

DO SILêNCIO DO LAR AO SILêNCIO ESCOLAR: RACISMO, PRECONCEITO E DISCRIMINAçãO NA EDUCAçãO INFANTIL ( DO SILêNCIO DO LAR AO SILêNCIO ESCOLAR: RACISMO, PRECONCEITO E DISCRIMINAçãO NA EDUCAçãO INFANTIL ( DOWNLOAD EBOOK : DO SILêNCIO DO LAR AO SILêNCIO ESCOLAR: RACISMO, Click link bellow and free register

Leia mais

Developing ASP.NET MVC 5 Web Applications (20486)

Developing ASP.NET MVC 5 Web Applications (20486) Developing ASP.NET MVC 5 Web Applications (20486) Formato do curso: Presencial Localidade: Lisboa Com certificação: Microsoft Certified Solutions Developer (MCSD) Data: 02 Abr. 2018 a 06 Abr. 2018 Preço:

Leia mais

Gerenciamento Pelas Diretrizes (Portuguese Edition)

Gerenciamento Pelas Diretrizes (Portuguese Edition) Gerenciamento Pelas Diretrizes (Portuguese Edition) Vicente Falconi Click here if your download doesn"t start automatically Gerenciamento Pelas Diretrizes (Portuguese Edition) Vicente Falconi Gerenciamento

Leia mais

Transtorno de Personalidade Borderline Mais de 30 segredos para retomar sua vida Ao lidar com TPB (Portuguese Edition)

Transtorno de Personalidade Borderline Mais de 30 segredos para retomar sua vida Ao lidar com TPB (Portuguese Edition) Transtorno de Personalidade Borderline Mais de 30 segredos para retomar sua vida Ao lidar com TPB (Portuguese Edition) The Blokehead Click here if your download doesn"t start automatically Transtorno de

Leia mais

Poder sem limites - o caminho do sucesso pessoal pela programação neurolinguística

Poder sem limites - o caminho do sucesso pessoal pela programação neurolinguística Poder sem limites - o caminho do sucesso pessoal pela programação neurolinguística By Anthony Robbins Poder sem limites - o caminho do sucesso pessoal pela programação neurolinguística By Anthony Robbins

Leia mais

Medicina Integrativa - A Cura pelo Equilíbrio (Portuguese Edition)

Medicina Integrativa - A Cura pelo Equilíbrio (Portuguese Edition) Medicina Integrativa - A Cura pelo Equilíbrio (Portuguese Edition) Click here if your download doesn"t start automatically Medicina Integrativa - A Cura pelo Equilíbrio (Portuguese Edition) Medicina Integrativa

Leia mais

Aspectos Multidisciplinares das Artes Marciais: 1 (Portuguese Edition)

Aspectos Multidisciplinares das Artes Marciais: 1 (Portuguese Edition) Aspectos Multidisciplinares das Artes Marciais: 1 (Portuguese Edition) Marcelo Moreira Antunes (org.) Click here if your download doesn"t start automatically Aspectos Multidisciplinares das Artes Marciais:

Leia mais

MANUAL PRATICO DO PLANO DE PROJETO: UTILIZANDO O PMBOK GUIDE BY RICARDO VIANA VARGAS

MANUAL PRATICO DO PLANO DE PROJETO: UTILIZANDO O PMBOK GUIDE BY RICARDO VIANA VARGAS Read Online and Download Ebook MANUAL PRATICO DO PLANO DE PROJETO: UTILIZANDO O PMBOK GUIDE BY RICARDO VIANA VARGAS DOWNLOAD EBOOK : MANUAL PRATICO DO PLANO DE PROJETO: UTILIZANDO Click link bellow and

Leia mais

Core Solutions of Microsoft SharePoint Server 2013 (20331)

Core Solutions of Microsoft SharePoint Server 2013 (20331) Core Solutions of Microsoft SharePoint Server 2013 (20331) Formato do curso: Presencial e Live Training Com certificação: MCSE: Productivity Preço: 1740 Nível: Intermédio Duração: 35 horas Dirigido a Administradores

Leia mais

PODER DO ESPIRITO SANTO, O BY BILLY GRAHAM DOWNLOAD EBOOK : PODER DO ESPIRITO SANTO, O BY BILLY GRAHAM PDF

PODER DO ESPIRITO SANTO, O BY BILLY GRAHAM DOWNLOAD EBOOK : PODER DO ESPIRITO SANTO, O BY BILLY GRAHAM PDF Read Online and Download Ebook PODER DO ESPIRITO SANTO, O BY BILLY GRAHAM DOWNLOAD EBOOK : PODER DO ESPIRITO SANTO, O BY BILLY GRAHAM PDF Click link bellow and free register to download ebook: PODER DO

Leia mais

Conceitos de Linguagens de Programação (Portuguese Edition)

Conceitos de Linguagens de Programação (Portuguese Edition) Conceitos de Linguagens de Programação (Portuguese Edition) Click here if your download doesn"t start automatically Conceitos de Linguagens de Programação (Portuguese Edition) Conceitos de Linguagens de

Leia mais

Ligações Entre NANDA, NOC e NIC. Diagnósticos, Resultados e Intervenções (Em Portuguese do Brasil)

Ligações Entre NANDA, NOC e NIC. Diagnósticos, Resultados e Intervenções (Em Portuguese do Brasil) Ligações Entre NANDA, NOC e NIC. Diagnósticos, Resultados e Intervenções (Em Portuguese do Brasil) Marion Johnson Click here if your download doesn"t start automatically Ligações Entre NANDA, NOC e NIC.

Leia mais

CAPLE EXAMS 2018 WHAT ARE CAPLE EXAMS?

CAPLE EXAMS 2018 WHAT ARE CAPLE EXAMS? WHAT ARE CAPLE EXAMS? CAPLE exams constitute the Evaluation and Certification System of Portuguese as a Foreign Language, which certifies the general communicative competence of young and adult speakers

Leia mais

Gestão de Sistemas Operacionais

Gestão de Sistemas Operacionais Gestão de Sistemas Operacionais Prof. Guilherme Nonino Rosa guinonino@gmail.com http://proguilherme.wordpres.com Aula 1 Como usar o Hyper-V para fazer virtualização. Pré-requisitos Sistema operacional

Leia mais

O VAZIO DA MáQUINA: NIILISMO E OUTROS ABISMOS (TRILOGIA DO NADA LIVRO 2) (PORTUGUESE EDITION) BY ANDRE CANCIAN

O VAZIO DA MáQUINA: NIILISMO E OUTROS ABISMOS (TRILOGIA DO NADA LIVRO 2) (PORTUGUESE EDITION) BY ANDRE CANCIAN Read Online and Download Ebook O VAZIO DA MáQUINA: NIILISMO E OUTROS ABISMOS (TRILOGIA DO NADA LIVRO 2) (PORTUGUESE EDITION) BY ANDRE CANCIAN DOWNLOAD EBOOK : O VAZIO DA MáQUINA: NIILISMO E OUTROS ABISMOS

Leia mais

Higiene e Vigilância Sanitária de Alimentos (Portuguese Edition)

Higiene e Vigilância Sanitária de Alimentos (Portuguese Edition) Higiene e Vigilância Sanitária de Alimentos (Portuguese Edition) Click here if your download doesn"t start automatically Higiene e Vigilância Sanitária de Alimentos (Portuguese Edition) Higiene e Vigilância

Leia mais

Alfabetizar letrando na biblioteca escolar (Coleção biblioteca básica de alfabetização e letramento) (Portuguese Edition)

Alfabetizar letrando na biblioteca escolar (Coleção biblioteca básica de alfabetização e letramento) (Portuguese Edition) Alfabetizar letrando na biblioteca escolar (Coleção biblioteca básica de alfabetização e letramento) (Portuguese Edition) Click here if your download doesn"t start automatically Alfabetizar letrando na

Leia mais

As 10 bobagens mais comuns que as pessoas inteligentes cometem (Portuguese Edition)

As 10 bobagens mais comuns que as pessoas inteligentes cometem (Portuguese Edition) As 10 bobagens mais comuns que as pessoas inteligentes cometem (Portuguese Edition) Arthur Freeman, Rose Dewolf Click here if your download doesn"t start automatically As 10 bobagens mais comuns que as

Leia mais

Meditacao da Luz: O Caminho da Simplicidade

Meditacao da Luz: O Caminho da Simplicidade Meditacao da Luz: O Caminho da Simplicidade Leonardo Boff Click here if your download doesn"t start automatically Meditacao da Luz: O Caminho da Simplicidade Leonardo Boff Meditacao da Luz: O Caminho da

Leia mais

Como escrever para o Enem: roteiro para uma redação nota (Portuguese Edition)

Como escrever para o Enem: roteiro para uma redação nota (Portuguese Edition) Como escrever para o Enem: roteiro para uma redação nota 1.000 (Portuguese Edition) Arlete Salvador Click here if your download doesn"t start automatically Como escrever para o Enem: roteiro para uma redação

Leia mais

Empreendedorismo: Dando Asas ao Espírito Empreendedor (Portuguese Edition)

Empreendedorismo: Dando Asas ao Espírito Empreendedor (Portuguese Edition) Empreendedorismo: Dando Asas ao Espírito Empreendedor (Portuguese Edition) Idalberto Chiavenato Click here if your download doesn"t start automatically Empreendedorismo: Dando Asas ao Espírito Empreendedor

Leia mais

NORMAS DE FUNCIONAMENTO DOS CURSOS DE LÍNGUAS (TURMAS REGULARES E INTENSIVAS) 2015/2016

NORMAS DE FUNCIONAMENTO DOS CURSOS DE LÍNGUAS (TURMAS REGULARES E INTENSIVAS) 2015/2016 NORMAS DE FUNCIONAMENTO DOS CURSOS DE LÍNGUAS (TURMAS REGULARES E INTENSIVAS) 2015/2016 1. Tipos de turma e duração: O CLECS oferece dois tipos de turma: regular e intensivo. Além destas turmas, o CLECS

Leia mais

Mitologia - Deuses, Heróis e Lendas (Portuguese Edition)

Mitologia - Deuses, Heróis e Lendas (Portuguese Edition) Mitologia - Deuses, Heróis e Lendas (Portuguese Edition) By Maurício Horta, José Francisco Botelho, Salvador Nogueira Mitologia - Deuses, Heróis e Lendas (Portuguese Edition) By Maurício Horta, José Francisco

Leia mais

TDD Desenvolvimento Guiado por Testes (Portuguese Edition) Kent Beck

TDD Desenvolvimento Guiado por Testes (Portuguese Edition) Kent Beck TDD Desenvolvimento Guiado por Testes (Portuguese Edition) Kent Beck TDD Desenvolvimento Guiado por Testes (Portuguese Edition) Kent Beck Este livro ilustra com exemplos práticos e reais como codificar

Leia mais

Pesquisa Qualitativa do Início ao Fim (Métodos de Pesquisa) (Portuguese Edition)

Pesquisa Qualitativa do Início ao Fim (Métodos de Pesquisa) (Portuguese Edition) Pesquisa Qualitativa do Início ao Fim (Métodos de Pesquisa) (Portuguese Edition) Robert K. Yin Click here if your download doesn"t start automatically Pesquisa Qualitativa do Início ao Fim (Métodos de

Leia mais

Como deixar seus cabelos lindos e saudáveis (Coleção Beleza) (Portuguese Edition)

Como deixar seus cabelos lindos e saudáveis (Coleção Beleza) (Portuguese Edition) Como deixar seus cabelos lindos e saudáveis (Coleção Beleza) (Portuguese Edition) Edições Lebooks Click here if your download doesn"t start automatically Como deixar seus cabelos lindos e saudáveis (Coleção

Leia mais

Introdução A Delphi Com Banco De Dados Firebird (Portuguese Edition)

Introdução A Delphi Com Banco De Dados Firebird (Portuguese Edition) Introdução A Delphi Com Banco De Dados Firebird (Portuguese Edition) Ricardo De Moraes / André Luís De Souza Silva Click here if your download doesn"t start automatically Introdução A Delphi Com Banco

Leia mais

A necessidade da oração (Escola da Oração) (Portuguese Edition)

A necessidade da oração (Escola da Oração) (Portuguese Edition) A necessidade da oração (Escola da Oração) (Portuguese Edition) Click here if your download doesn"t start automatically A necessidade da oração (Escola da Oração) (Portuguese Edition) A necessidade da

Leia mais

06/10/16 Ademir Santos EVANCE PLATAFORMA NA NUVEM

06/10/16 Ademir Santos EVANCE PLATAFORMA NA NUVEM 06/10/16 Ademir Santos EVANCE PLATAFORMA NA NUVEM O que é evance? evance Services High Level Product and Training Overview Um novo mercado Clientes potenciais para o evance: instaladores e empresas de

Leia mais

Administração nos Novos Tempos: os Novos Horizontes em Administração (Portuguese Edition)

Administração nos Novos Tempos: os Novos Horizontes em Administração (Portuguese Edition) Administração nos Novos Tempos: os Novos Horizontes em Administração (Portuguese Edition) By Idalberto Chiavenato Administração nos Novos Tempos: os Novos Horizontes em Administração (Portuguese Edition)

Leia mais