Programming Microsofr SQL Server 2005

Size: px
Start display at page:

Download "Programming Microsofr SQL Server 2005"

Transcription

1 Microsoft Programming Microsofr SQL Server 2005 Andrew 1 Brust Stephen Forte

2 Table o Acknowledgements Introduction Who This Book Is For How This Books is Organized System Requirements Using the Samples Support for This Book Questions and Comments xix xxiii xxiv xxv xxvi xxvii xxix xxix Part i Design Func nd Core Technologies 1 Overview 3 A Tough Act to Follow 3 The Software Industry and Disruptive Change 3 Industry Trends, SQL Server Features, and a Book to Show You the Way 4 Programming the Server 4 Application Code and SQL Server: Extending Your Database's Reach 5 It's the Strategy, Stupid 7 A Collaborative Effort for, and by, Developers 9 2 Exploring the T-SQL Enhancements in SQL Server Introducing SQL Server Management Studio 12 Common Table Expressions 13 Recursive Queries with CTEs 16 The PIVOT and UNPIVOT Operators 20 Using UNPIVOT 21 Dynamically Pivoting Columns 22 The APPLY Operator 24 TOP Enhancements 25 Ranking Functions 26 ROW_NUMBER() 26 RANKO 30 DENSE_RANK() and NTILE(n) 32 Using All the Ranking Functions Together 34 Ranking over Groups: PARTITION BY 35 think of this boote' Microsoft is interested in hearing your feedback about this publication so we can i uiant tri riparfrnm' \/ni d conti nually improve our books and learning resources for you. To participate in a brief. Wallt LU Imal f ryitl ymu online survey, please Visit: vii

3 viii Table of Contents Exception Handling in Transactions 38 New Data Types 40 varchar(max) Data Type 40 xml Data Type 40 The WAITFOR Command 41 DDL Triggers and Notifications 42 SNAPSHOT Isolation 43 Statement-Level Recompile 44 Summary 44 3 An Overview of SQL CLR 45 Getting Started: Enabling CLR Integration 46 Visual Studio/SQL Server Integration 48 SQL Server Projects in Visual Studio 49 Automated Deployment 51 SQL CLR Code Attributes 52 Your First SQL CLR Stored Procedure 53 CLR Stored Procedures and Server-Side Data Access 55 Piping Data with SqlDataRecord and SqlMetaData 57 Deployment 59 Deploying Your Assembly 59 Deploying Your Stored Procedures 61 Testing Your Stored Procedures 63 CLR Functions 65 CLR Triggers 69 CLR Aggregates 74 CLR Types 78 Security 84 Examining and Managing CLR Types in a Database 85 Best Practices for SQL CLR Usage 91 Summary 92 4 XML and the Relational Database 93 XML in SQL Server The XML Data Type 96 Working with the XML Data Type as a Variable 96 Working with XML in Tables 98 XML Schemas 99 XML Indexes 102 FOR XML Commands 105 FOR XML RAW 106 FOR XML AUTO 106 FOR XML EXPLICIT 108

4 ix OPENXML Enhancements in SQL Server XML Bulk Load 121 Querying XML Data Using XQuery 122 XQuery Defined 122 SQL Server 2005 XQuery in Action 125 XML DML 134 Converting a Column to XML 135 Summary Introducing SQL Server Management Studio 139 The New Management Studio Interface 140 Overview of New Features 140 Window Types 141 Positioning a Docking Window 142 Window Customization Options 143 Connecting to a Database Server 144 Using Object Explorer 145 Object Explorer Filters 146 Management Studio Solutions, Projects, and Files 149 Code and Text Editor 150 Track Changes Indicator 152 Bookmarks 153 Creating Objects 154 Creating Tables 154 Creating Table-Related Objects 156 Creating Indexes 156 Setting Properties for New Users 157 Generating Scripts from Objects 158 Creating Queries 158 Executing Queries 160 Using Templates 161 Maintenance Features 163 Using a Maintenance Plan 164 Performance Tools 166 SQL Server Profiler 166 Database Engine Tuning Advisor 167 Summary Using SQL Server Management Objects (SMO) 169 What Is SMO? 170 What About SQL-DMO? 170 New Features in SMO 174 Working with SMO in Visual Studio 174

5 x Table of Contents Iterating Through Available Servers 177 Retrieving Server Settings 178 Creating Backup-and-Restore Applications 182 Performing Programmatic DBCC Commands with SMO 188 Summary SQL Server 2005 Security 191 Four Themes of the Security Framework 192 Secure by Design 192 Secure by Default 192 Secure by Deployment 192 Communications 192 SQL Server 2005 Security Overview 193 SQL Server Logins 194 Database Users 194 The Guest User Account 195 Authentication and Authorization 196 How Clients Establish a Connection 196 Password Policies 197 User-Schema Separation 199 Execution Context 201 Encryption Support in SQL Server Encrypting Data on the Move 205 Encrypting Data at Rest 206 Protecting SQL Server Reducing the Surface Area for Attack 211 How Hackers Attack SQL Server 213 Direct Connection to the Internet 213 Weak SA Passwords 213 SQL Server Browser Service 213 SQL Injection 214 Intelligent Observation 214 Summary 215 Part ii Applications Pewelopment and Reach Technologies 8 ADO.NET 2.0, Typed DataSet Objects, and.net Data Binding 219 A Brief History of Data Access Object Models 220 DAO: A Golden Oldie 220 RDO: A Thin API Wrapper 220 Enter OLE DB and ADO "Classic" 220 ADO +.NET = ADO.NET 221 What's New in ADO.NET 2.0? 221

6 xi New Typed DataSet Members 222 Other Enhancements 222 Typed DataSet Enhancements 223 DataTable Objects in the Typed DataSet Designer 225 TableAdapter Objects 226 Connection String Management 226 Using the TableAdapter Configuration Wizard 228 More on Queries and Parameters 230 Adding Query Objects 231 DBDirect Methods and Connected Use of Typed DataSet Objects 232 Standalone DataTable Objects 233 "Pure" ADO.NET: Working in Code 233 Querying Keeping Data Up to Date 235 Responsive Uls: Executing Queries Asynchronously 237 Not for Servers Only: Client-Side Bulk Copy 242 It's Not Just Text: Processing XML Columns with ADO.NET and the System.Xml Namespace 244 Nothing but.net: Consuming SQL CLR UDT Data as Native.NET Objects 245 Back to the Drawing Board 246 Embedding SQL CLR Objects in Typed DataSet Objects 247 Adding a CLR Stored Procedure to a Typed DataSet 247 TVFs: Easy Living 249 Aggregates and UDTs 250 Windows Forms Data Binding 251 DataGridView Binding 252 Details View Binding 253 Smart Defaults 253 Binding to Stored Procedures and Views 254 SQL CLR Binding 254 Master-Detail and Lookup Binding 254 Parameterized Query Data Binding 257 Data Binding on the Web 258 Typed DataSet Objects and the Web.config File 258 The Data Source Configuration Wizard, the ObjectDataSource Control, and the New Data-Bound Controls 259 Summary Debugging 261 About the Sample Code 262 Ad Hoc Debugging 264 Creating Database Connections 264

7 T-SQL "Step Into" Debugging 267 Application Debugging 276 Entering Debugging Mode 279 Debugging SQL CLR Code 280 Breakpoints and Context Switching 283 Mixing SQL CLR and T-SQL Code 284 Test Script Debugging 289 Debugging Queries External to Visual Studio 289 Remote Debugging 292 Server Configuration 292 Server Firewall Considerations 294 Back to the Client 295 Client Firewall Configuration 295 Attaching to a Remote Process 297 Summary 299 SQL Server 2005 Native XML Web Services 301 Understanding Native XML Web Services 302 Comparing Native XML Web Services and SQLXML 302 Exposing SQL Programmability as Web Services 303 Stored Procedures and User-Defined Functions 303 SQL Batch 303 Reserving URLs with Http.sys 303 Creating and Managing Endpoints 304 Granting Endpoint Permissions 309 Calling Native XML Web Service Endpoints from Client Applications 310 Example Native XML Web Services Project 312 Creating the SQL Server Functionality 312 Registering the URL with Http.sys 316 Exposing the Endpoints 316 Granting Security Access to the Endpoints 317 Creating the Client Application 319 Best Practices for Using Native XML Web Services 324 Advantages of Native XML Web Services 325 Limitations of Native XML Web Services 325 Security Recommendations 326 Performance Recommendations 326 When to Avoid Native XML Web Services 326 When to Use Native XML Web Services 327 Summary 328

8 xiii Transactions 329 What Is a Transaction? 330 Understanding the ACID Properties 330 Local Transactions Support in SQL Server Autocommit Transaction Mode 333 Explicit Transaction Mode 333 Implicit Transaction Mode 336 Batch-Scoped Transaction Mode 337 Using Local Transactions in ADO.NET 338 Transaction Terminology 340 Isolation Levels 341 Isolation Levels in SQL Server Isolation Levels in ADO.NET 346 Distributed Transactions 347 Distributed Transaction Terminology 348 Rules and Methods of Enlistment 349 Distributed Transactions in SQL Server Distributed Transactions in the.net Framework 352 Using a Resource Manager in a SuccessfuI Transaction 360 Transactions in SQL CLR (CLR Integration) 364 Putting It All Together 368 Summary 369 SQL Server Service Broker: The New Middleware 371 What Is Middleware? 371 What Is SQL Server Service Broker? 372 Comparing Service Broker and MSMQ 372 What Is a SQL Server Service Broker Application? 373 Service Broker Architecture 374 Integrated Management and Operation 377 Routing and Load Balancing 377 Service Broker Programming in T-SQL 379 A Word About Programming Languages 380 Enabling Service Broker 380 Defining Service Broker Objects 380 The Sending Service Program 382 The Receiving Service Program 383 Running the Application 385 A More Robust, Real-World Application 386 Service Broker and Query Notification 387 Service Broker's Place in the Middleware World 391 Summary 392

9 XIV Table of Contents 13 Using SQL Server 2005 Notification Services 393 What Is a Notification Application? 393 Notification Services Components 394 Notification Services Deployment Strategies 396 Working with Notification Services 397 Creating Notification Applications 398 A Sample Notification Application 400 Flight Price Notification Sample Application 400 Summary Developing Desktop Applications with SQL Server Express Edition 427 What Is SQL Server Express Edition? 427 Licensing 429 Feature Review 429 SQL Server 2005 Express Edition with Advanced Services 431 Configuration 435 Working with SQL Server Express Edition 437 SQLCMD Command-Line Tool 442 User Instances 446 SSEUTIL 449 Installing SQL Server Express Edition 451 Using the Setup Wizard to Manually Instali Express Edition 452 Installing via Command-Line Parameters or a Configuration File 456 Deploying Express Edition Applications Using a Wrapper 460 Deploying Express Edition Applications Using ClickOnce 471 Updating ClickOnce Deployments That Use Express Edition 475 Summary Developing Applications with SQL Server 2005 Everywhere Edition and SQL Server Merge Replication 487 SQL Everywhere Integration with SQL Server Working with SQL Everywhere Databases in Management Studio 489 Working with SQL Everywhere Data in Management Studio 493 Creating a SQL Everywhere Application with SQL Server Replication and Visual Studio Creating a Publication 498 Installing and Configuring SQL Everywhere Server Components for IIS 505 Creating a Subscription Using Management Studio 508 Creating a Mobile Application Using Visual Studio Summary 520

10 xv Part in Spotting and Business Intelligence 16 Using SQL Server 2005 Integration Services 523 History of Data Transfer in SQL Server 523 DTS Packages 524 Working with Integration Services Packages 524 Control Flow 524 Data Flow 526 Using Integration Services Packages 532 Creating Packages Using the Import And Export Wizard 532 Creating Packages Using Bl Development Studio 533 Managing Packages Using Management Studio 533 Using the Command Line to Execute and Manage Packages 533 Scheduling Packages Using SQL Server Agent 534 Configuring and Deploying Packages 535 Overview of Programming Package Extension 536 Security 537 Dealing with Sensitive Information and Assets 537 Considerations for Working on a Single Development Machine 538 Considerations for Workgroups 538 Programming Integration Services 539 Programming in Visual Studio 539 Loading and Executing Packages in Applications 539 Creating Packages Programmatically 540 Extensibility 554 Script Tasks 554 Custom Tasks 555 Custom Components 556 Script Components 566 Custom Connection Managers 571 Log Providers 572 Foreach Enumerator 572 Summary Basic OLAP 573 Wherefore Bl? 573 OLAP OLAP Vocabulary 576 Dimensions, Axes, Stars, and Snowflakes 576 Building Your First Cube 578 Preparing Star Schema Objects 579 A Tool by Any Other Name 579

11 Creating the Project 581 Adding a Data Source View 582 Creating a Cube with the Cube Wizard 586 Using the Cube Designer 589 Using the Dimension Wizard 591 Using the Dimension Designer 594 Working with the Properties Window and Solution Explorer 596 Processing the Cube 597 Running Queries 597 Summary 599 Advanced OLAP 601 What Well Cover in This Chapter 602 MDX in Context 602 And Now a Word from Our Sponsor 603 Advanced Dimensions and Measures 603 Keys and Names 604 Changing the All Member 606 Adding a Named Query to a Data Source View 607 Parent-Child Dimensions 609 Member Grouping 614 Server Time Dimensions 615 Fact Dimensions 617 Role-Playing Dimensions 620 Advanced Measures 621 Calculations 622 Calculated Members 623 Named Sets 629 More on Script View 629 Key Performance Indicators 633 KPI Visualization: Status and Trend 634 A Concrete KPI 635 Testing KPIs in Browser View 637 KPI Queries in Management Studio 639 Other Bl Tricks in Management Studio 643 Actions 645 Actions Simply Defined 645 Designing Actions 645 Testing Actions 647 Partitions, Aggregation Design, Storage Settings, and Proactive Caching 648 Editing and Creating Partitions 649 Aggregation Design 651 Partition Storage Options 652

12 xvii Proactive Caching 652 Additional Features and Tips 654 Perspectives 654 Translations 657 Roles 662 Summary 665 OLAP Application Development 667 Using Excel 668 Working Within Excel 669 Using PivotTables and Charts in Applications and Web Pages 676 Beyond OWC: Full-On OLAP Development 691 MDX and Analysis Services APIs 691 Moving to MDX 692 Management Studio as an MDX Client 692 OLAP Development with ADO MD.NET 706 XMLA at Your (Analysis) Service 718 Analysis Services CLR Support: Server-Side ADO MD.NET 729 Summary 739 Extending Your Database System with Data Mining 741 Why Mine Your Data? 742 Getting Started 745 Preparing Your Source Data 745 Creating Training and Test Samples 747 Adding an SSAS Project 752 Using the Data Mining Wizard and Data Mining Designer 752 Creating a Mining Structure 755 Creating a Mining Model 755 Editing and Adding Mining Models 758 Deploying and Processing Data Mining Objects 763 Viewing Mining Models 765 Validating and Comparing Mining Models 773 Nested Tables 776 Using Data Mining Extensions 782 Data Mining Modeling Using DMX 782 Data Mining Predictions Using DMX 792 DMX Templates 799 Data Mining Applied 800 Data Mining and API Programming 801 Using the WinForms Model Content Browser Controls 801 Executing Prediction Queries with ADO MD.NET 804

13 xviii Table of Contents Model Content Queries 804 ADO MD.NET and ASP.NET 805 Using the Data Mining Web Controls 805 Developing Managed Stored Procedures 806 XMLA and Data Mining 808 Data Mining and Reporting Services 810 Summary Reporting Services 819 Report Definition and Design 820 Data Sources 820 Report Layouts 822 Report Designer 826 Report Builder 838 Report Definition Language 843 Report Management 843 Publishing 843 Report Manager 844 SQL Server Management Studio 851 Command-Line Utilities 852 Programming: Management Web Services 852 Report Access and Delivery 852 Delivery on Demand 852 Subscriptions 855 Presentation Formats 857 Programming: Rendering 859 Report Server Architecture 862 Deployment Modes 865 Extensibility 865 Report Integration 867 Summary 867 Index 869 What do you think of this book? We want to hear from you! Microsoft is interested in hearing your feedback about this publication so we can continually improve our books and Iearning resources for you. To participate in a brief online survey, please Visit:

SAMPLE. Preface xi 1 Introducting Microsoft Analysis Services 1

SAMPLE. Preface xi 1 Introducting Microsoft Analysis Services 1 contents Preface xi 1 Introducting Microsoft Analysis Services 1 1.1 What is Analysis Services 2005? 1 Introducing OLAP 2 Introducing Data Mining 4 Overview of SSAS 5 SSAS and Microsoft Business Intelligence

More information

Chapter 1: Introducing SQL Server

Chapter 1: Introducing SQL Server Leiter ftoc.tex V3-03/25/2009 1:31pm Page xv Introduction xxvii Chapter 1: Introducing SQL Server 2008 1 A Condensed History of SQL Server 1 In the Beginning 1 The Evolution of a Database 1 Microsoft Goes

More information

MSBI (SSIS, SSRS, SSAS) Course Content

MSBI (SSIS, SSRS, SSAS) Course Content SQL / TSQL Development 1. Basic database and design 2. What is DDL, DML 3. Data Types 4. What are Constraints & types 1. Unique 2. Check 3. NULL 4. Primary Key 5. Foreign Key 5. Default 1. Joins 2. Where

More information

6 SSIS Expressions SSIS Parameters Usage Control Flow Breakpoints Data Flow Data Viewers

6 SSIS Expressions SSIS Parameters Usage Control Flow Breakpoints Data Flow Data Viewers MSBI Training Program [SSIS SSAS SSRS] Duration : 60 Hrs SSIS 1 Introduction to SSIS SSIS Components Architecture & Installation SSIS Tools and DTS 2 SSIS Architecture Control Flow Tasks Data Flow Tasks

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Welcome to SQL Server Integration Services 1. Chapter 2: The SSIS Tools 21 Introduction xxix Chapter 1: Welcome to SQL Server Integration Services 1 SQL Server SSIS Historical Overview 2 What s New in SSIS 2 Getting Started 3 Import and Export Wizard 3 The Business Intelligence

More information

CHAKRA IT SOLUTIONS TO LEARN ABOUT OUR UNIQUE TRAINING PROCESS:

CHAKRA IT SOLUTIONS TO LEARN ABOUT OUR UNIQUE TRAINING PROCESS: chakraitsolutions.com http://chakraitsolutions.com/msbi-online-training/ MSBI ONLINE TRAINING CHAKRA IT SOLUTIONS TO LEARN ABOUT OUR UNIQUE TRAINING PROCESS: Title Duration Timing Method Software Study

More information

MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours

MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours MSBI( SSAS, SSIS, SSRS) Course Content:35-40hours Course Outline SQL Server Analysis Services Course Content SSAS: What Is Microsoft BI? Core concept BI is the cube or UDM Example cube as seen using Excel

More information

Foundations of SQL Server 2008 R2 Business. Intelligence. Second Edition. Guy Fouche. Lynn Lang it. Apress*

Foundations of SQL Server 2008 R2 Business. Intelligence. Second Edition. Guy Fouche. Lynn Lang it. Apress* Foundations of SQL Server 2008 R2 Business Intelligence Second Edition Guy Fouche Lynn Lang it Apress* Contents at a Glance About the Authors About the Technical Reviewer Acknowledgments iv xiii xiv xv

More information

MICROSOFT BUSINESS INTELLIGENCE

MICROSOFT BUSINESS INTELLIGENCE SSIS MICROSOFT BUSINESS INTELLIGENCE 1) Introduction to Integration Services Defining sql server integration services Exploring the need for migrating diverse Data the role of business intelligence (bi)

More information

POWER BI COURSE CONTENT

POWER BI COURSE CONTENT POWER BI COURSE CONTENT Why Power BI Training? Power BI is one of the newest additions to Office 365. In this course you will learn Power BI from beginner to advance. Power BI Course enables you to perform

More information

Introduction... xxxi Chapter 1: Introducing SQL Server In Depth... 2

Introduction... xxxi Chapter 1: Introducing SQL Server In Depth... 2 Introduction... xxxi Chapter 1: Introducing SQL Server 2012... 1 In Depth... 2 Why Use SQL Server?... 2 Features Introduced in SQL Server 2008 R2... 3 Master Data Services... 3 StreamInsight... 3 Multi-Server

More information

About the Authors Introduction p. 1 Exploring Application Architectures p. 9 Introduction p. 9 Choosing the "Right" Architecture p.

About the Authors Introduction p. 1 Exploring Application Architectures p. 9 Introduction p. 9 Choosing the Right Architecture p. Foreword p. xxi Acknowledgments p. xxiii About the Authors p. xxv Introduction p. 1 Exploring Application Architectures p. 9 Introduction p. 9 Choosing the "Right" Architecture p. 10 Understanding Your

More information

MSBI Online Training (SSIS & SSRS & SSAS)

MSBI Online Training (SSIS & SSRS & SSAS) MSBI Online Training (SSIS & SSRS & SSAS) Course Content: SQL Server Integration Services Introduction Introduction of MSBI and its tools MSBI Services and finding their statuses Relation between SQL Server

More information

6234A - Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services

6234A - Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services 6234A - Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services Course Number: 6234A Course Length: 3 Days Course Overview This instructor-led course teaches students how to implement

More information

Beginning ASP.NET. 4.5 in C# Matthew MacDonald

Beginning ASP.NET. 4.5 in C# Matthew MacDonald Beginning ASP.NET 4.5 in C# Matthew MacDonald Contents About the Author About the Technical Reviewers Acknowledgments Introduction xxvii xxix xxxi xxxiii UPart 1: Introducing.NET. 1 & Chapter 1: The Big

More information

10778A: Implementing Data Models and Reports with Microsoft SQL Server 2012

10778A: Implementing Data Models and Reports with Microsoft SQL Server 2012 10778A: Implementing Data Models and Reports with Microsoft SQL Server 2012 Course Overview This course provides students with the knowledge and skills to empower information workers through self-service

More information

Microsoft SQL Server Training Course Catalogue. Learning Solutions

Microsoft SQL Server Training Course Catalogue. Learning Solutions Training Course Catalogue Learning Solutions Querying SQL Server 2000 with Transact-SQL Course No: MS2071 Two days Instructor-led-Classroom 2000 The goal of this course is to provide students with the

More information

SQL Server Interview Questions

SQL Server Interview Questions This Download is from www.downloadmela.com. The main motto of this website is to provide free download links of ebooks,video tutorials,magazines,previous papers,interview related content. To download more

More information

"Charting the Course... SharePoint 2007 Hands-On Labs Course Summary

Charting the Course... SharePoint 2007 Hands-On Labs Course Summary Course Summary Description This series of 33 hands-on labs allows students to explore the new features of Microsoft SharePoint Server, Microsoft Windows, Microsoft Office, including Microsoft Office Groove,

More information

1. SQL Server Integration Services. What Is Microsoft BI? Core concept BI Introduction to SQL Server Integration Services

1. SQL Server Integration Services. What Is Microsoft BI? Core concept BI Introduction to SQL Server Integration Services 1. SQL Server Integration Services What Is Microsoft BI? Core concept BI Introduction to SQL Server Integration Services Product History SSIS Package Architecture Overview Development and Management Tools

More information

Implementing Data Models and Reports with Microsoft SQL Server (466)

Implementing Data Models and Reports with Microsoft SQL Server (466) Implementing Data Models and Reports with Microsoft SQL Server (466) Build an analysis services multidimensional database Design dimensions and measures Given a requirement, identify the dimension/measure

More information

Many-to-Many One-to-One Limiting Values Summary

Many-to-Many One-to-One Limiting Values Summary page 1 Meet the expert: Andy Baron is a nationally recognized industry expert specializing in Visual Basic, Visual C#, ASP.NET, ADO.NET, SQL Server, and SQL Server Business Intelligence. He is an experienced

More information

MOC 6232A: Implementing a Microsoft SQL Server 2008 Database

MOC 6232A: Implementing a Microsoft SQL Server 2008 Database MOC 6232A: Implementing a Microsoft SQL Server 2008 Database Course Number: 6232A Course Length: 5 Days Course Overview This course provides students with the knowledge and skills to implement a Microsoft

More information

Deccansoft Software Services Microsoft Silver Learning Partner. SSAS Syllabus

Deccansoft Software Services Microsoft Silver Learning Partner. SSAS Syllabus Overview: Analysis Services enables you to analyze large quantities of data. With it, you can design, create, and manage multidimensional structures that contain detail and aggregated data from multiple

More information

MICROSOFT BUSINESS INTELLIGENCE (MSBI: SSIS, SSRS and SSAS)

MICROSOFT BUSINESS INTELLIGENCE (MSBI: SSIS, SSRS and SSAS) MICROSOFT BUSINESS INTELLIGENCE (MSBI: SSIS, SSRS and SSAS) Microsoft's Business Intelligence (MSBI) Training with in-depth Practical approach towards SQL Server Integration Services, Reporting Services

More information

Data Mining with Microsoft

Data Mining with Microsoft Data Mining with Microsoft Jamie MacLennan ZhaoHui Tang Bogdan Crivat WILEY Wiley Publishing, Inc. Contents at a Glance Foreword Introduction Chapter 1 Chapter 2 Chapter 3 Chapter 4 Chapter 5 Chapter 6

More information

Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p.

Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p. Acknowledgments p. xxiii Introduction p. xxv Mastering Transact-SQL An Overview of SQL Server 2000 p. 3 SQL Server's Networked Architecture p. 4 SQL Server's Basic Components p. 8 Transact-SQL p. 9 SQL

More information

Introduction. Part I: Introduction to SQL Server 2005 XML 1. Chapter 1: What s New in Version 2.0 of the.net Framework for XML 3

Introduction. Part I: Introduction to SQL Server 2005 XML 1. Chapter 1: What s New in Version 2.0 of the.net Framework for XML 3 Introduction Part I: Introduction to SQL Server 2005 XML 1 Chapter 1: What s New in Version 2.0 of the.net Framework for XML 3 System.xml Version 2.0 Enhancements and New Features 4 Performance 5 XMLTextWriter

More information

Pro ODP.NET for Oracle. Database 11 g. Edmund Zehoo. Apress

Pro ODP.NET for Oracle. Database 11 g. Edmund Zehoo. Apress Pro ODP.NET for Oracle Database 11 g Edmund Zehoo Apress Contents Contents at a Glance iv Contents....v About the Author About the Technical Reviewer Acknowledgments xvii xviii xix Chapter 1: Introduction

More information

70-466: Implementing Data Models and Reports with Microsoft SQL Server

70-466: Implementing Data Models and Reports with Microsoft SQL Server 70-466: Implementing Data Models and Reports with Microsoft SQL Server The following tables show where changes to exam 70-466 have been made to include updates that relate to SQL Server 2014 tasks. These

More information

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow

Integration Services. Creating an ETL Solution with SSIS. Module Overview. Introduction to ETL with SSIS Implementing Data Flow Pipeline Integration Services Creating an ETL Solution with SSIS Module Overview Introduction to ETL with SSIS Implementing Data Flow Lesson 1: Introduction to ETL with SSIS What Is SSIS? SSIS Projects

More information

Building robust solutions, DFT (cant.) OLE DB destination, queries, source file, 563 TextFieldParser class, transformation tas

Building robust solutions, DFT (cant.) OLE DB destination, queries, source file, 563 TextFieldParser class, transformation tas Index ADO.NET connection manager editor, 90 description, 90.NET provider, 91 SqlClient connection manager editor, 92 source and destination adapters, 226 Analysis Services connection manager, 98-99 Analysis

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing T-SQL and Data Management Systems 1. Chapter 2: SQL Server Fundamentals 23.

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing T-SQL and Data Management Systems 1. Chapter 2: SQL Server Fundamentals 23. Introduction Chapter 1: Introducing T-SQL and Data Management Systems 1 T-SQL Language 1 Programming Language or Query Language? 2 What s New in SQL Server 2008 3 Database Management Systems 4 SQL Server

More information

Microsoft Exchange Server 2007 Implementation and Maintenance

Microsoft Exchange Server 2007 Implementation and Maintenance Microsoft Exchange Server 2007 Implementation and Maintenance Chapter 1 Exchange Server 2007 Deployment 1.1 Overview, Hardware & Editions 1.2 Exchange Server, Windows & Active Directory 1.3 Administration

More information

Venezuela: Teléfonos: / Colombia: Teléfonos:

Venezuela: Teléfonos: / Colombia: Teléfonos: CONTENIDO PROGRAMÁTICO Moc 20761: Querying Data with Transact SQL Module 1: Introduction to Microsoft SQL Server This module introduces SQL Server, the versions of SQL Server, including cloud versions,

More information

MSBI. Business Intelligence Contents. Data warehousing Fundamentals

MSBI. Business Intelligence Contents. Data warehousing Fundamentals MSBI CAC Noida is an ISO 9001:2015 certified training center with professional experience that dates back to 2005. The vision is to provide professional education merging corporate culture globally to

More information

After completing this course, participants will be able to:

After completing this course, participants will be able to: Designing a Business Intelligence Solution by Using Microsoft SQL Server 2008 T h i s f i v e - d a y i n s t r u c t o r - l e d c o u r s e p r o v i d e s i n - d e p t h k n o w l e d g e o n d e s

More information

IN PRACTICE. Daniele Bochicchio Stefano Mostarda Marco De Sanctis. Includes 106 practical techniques MANNING

IN PRACTICE. Daniele Bochicchio Stefano Mostarda Marco De Sanctis. Includes 106 practical techniques MANNING IN PRACTICE Daniele Bochicchio Stefano Mostarda Marco De Sanctis Includes 106 practical techniques MANNING contents preface xv acknowledgments xvii about this book xix about the authors xxiii about the

More information

Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions

Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions 70-466 Implementing Data Models and Reports with Microsoft SQL Server Exam Summary Syllabus Questions Table of Contents Introduction to 70-466 Exam on Implementing Data Models and Reports with Microsoft

More information

resources, 56 sample questions, 3 Business Intelligence Development Studio. See BIDS

resources, 56 sample questions, 3 Business Intelligence Development Studio. See BIDS Index A Access Services, 178 86 actual metrics, 314, 350, 355 Ad-Hoc Reporting, 155 aggregate transformation, 33 Allow External Data Using REST, 253 Analytic Chart reports, 318, 368, 371 74 Analytic Grid

More information

Acknowledgments Introduction to Database Systems p. 1 Objectives p. 1 Functions of a Database p. 1 Database Management System p.

Acknowledgments Introduction to Database Systems p. 1 Objectives p. 1 Functions of a Database p. 1 Database Management System p. Preface p. xvii Acknowledgments p. xxv Introduction to Database Systems p. 1 Objectives p. 1 Functions of a Database p. 1 Database Management System p. 2 Database Components p. 8 Database Development Process

More information

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3 74029ftoc.qxd:WroxPro 9/27/07 1:40 PM Page xiii Acknowledgments Introduction x xxv Part I: Programming Access Applications 1 Chapter 1: Overview of Programming for Access 3 Writing Code for Access 3 The

More information

object/relational persistence What is persistence? 5

object/relational persistence What is persistence? 5 contents foreword to the revised edition xix foreword to the first edition xxi preface to the revised edition xxiii preface to the first edition xxv acknowledgments xxviii about this book xxix about the

More information

This course is suitable for delegates working with all versions of SQL Server from SQL Server 2008 through to SQL Server 2016.

This course is suitable for delegates working with all versions of SQL Server from SQL Server 2008 through to SQL Server 2016. (SSIS) SQL Server Integration Services Course Description: Delegates attending this course will have requirements to implement SQL Server Integration Services (SSIS) to export and import data between mixed

More information

SQL Server Integration Services

SQL Server Integration Services www.logicalimagination.com 800.657.1494 SQL Server Integration Services Course #: SS-103 Duration: 3 days Prerequisites This course assumes no prior knowledge of SQL Server Integration Services. This course

More information

SQL Server and MSBI Course Content SIDDHARTH PATRA

SQL Server and MSBI Course Content SIDDHARTH PATRA SQL Server and MSBI Course Content BY SIDDHARTH PATRA 0 Introduction to MSBI and Data warehouse concepts 1. Definition of Data Warehouse 2. Why Data Warehouse 3. DWH Architecture 4. Star and Snowflake

More information

Microsoft End to End Business Intelligence Boot Camp

Microsoft End to End Business Intelligence Boot Camp Microsoft End to End Business Intelligence Boot Camp 55045; 5 Days, Instructor-led Course Description This course is a complete high-level tour of the Microsoft Business Intelligence stack. It introduces

More information

Index. Symbol function, 391

Index. Symbol function, 391 Index Symbol @@error function, 391 A ABP. See adjacent broker protocol (ABP) ACID (Atomicity, Consistency, Isolation, and Durability), 361 adjacent broker protocol (ABP) certificate authentication, 453

More information

MS-55045: Microsoft End to End Business Intelligence Boot Camp

MS-55045: Microsoft End to End Business Intelligence Boot Camp MS-55045: Microsoft End to End Business Intelligence Boot Camp Description This five-day instructor-led course is a complete high-level tour of the Microsoft Business Intelligence stack. It introduces

More information

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio Introduction XXV Part I: C# Fundamentals 1 Chapter 1: The.NET Framework 3 What s the.net Framework? 3 Common Language Runtime 3.NET Framework Class Library 4 Assemblies and the Microsoft Intermediate Language

More information

"Charting the Course... MOC A Introduction to Web Development with Microsoft Visual Studio Course Summary

Charting the Course... MOC A Introduction to Web Development with Microsoft Visual Studio Course Summary Description Course Summary This course provides knowledge and skills on developing Web applications by using Microsoft Visual. Objectives At the end of this course, students will be Explore ASP.NET Web

More information

CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1

CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1 FOREWORD INTRODUCTION xxv xxvii CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1 Microsoft Visual Web Developer 2 Getting Visual Web Developer 3 Installing Visual Web Developer Express 3 Creating Your First

More information

SQL Server Reporting Services

SQL Server Reporting Services www.logicalimagination.com 800.657.1494 SQL Server Reporting Services Course #: SS-104 Duration: 3 days Prerequisites This course assumes no prior knowledge of SQL Server Reporting Services. This course

More information

$99.95 per user. SQL Server 2008 Integration Services CourseId: 158 Skill level: Run Time: 42+ hours (210 videos)

$99.95 per user. SQL Server 2008 Integration Services CourseId: 158 Skill level: Run Time: 42+ hours (210 videos) Course Description Our is a comprehensive A-Z course that covers exactly what you want in an SSIS course: data flow, data flow, and more data flow. You will learn about transformations, common design patterns

More information

Installing and Administering a Satellite Environment

Installing and Administering a Satellite Environment IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00 IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00

More information

ADO.NET Using Visual Basic 2005 Table of Contents

ADO.NET Using Visual Basic 2005 Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 The Chapter Files...INTRO-3 About the Authors...INTRO-4 ACCESSING

More information

Index. Special Characters $ format button, (expansion symbol), 121 " " (double quotes), 307 ' ' (single quotes), 307

Index. Special Characters $ format button, (expansion symbol), 121   (double quotes), 307 ' ' (single quotes), 307 Index Special Characters $ format button, 292 + (expansion symbol), 121 " " (double quotes), 307 ' ' (single quotes), 307 Numerics 0 BizSystemFlag value, 397 200 BizSystemFlag value, 397 300 BizSystemFlag

More information

Developing SQL Data Models(768)

Developing SQL Data Models(768) Developing SQL Data Models(768) Design a multidimensional business intelligence (BI) semantic model Create a multidimensional database by using Microsoft SQL Server Analysis Services (SSAS) Design, develop,

More information

CHAPTER 1: INTRODUCING C# 3

CHAPTER 1: INTRODUCING C# 3 INTRODUCTION xix PART I: THE OOP LANGUAGE CHAPTER 1: INTRODUCING C# 3 What Is the.net Framework? 4 What s in the.net Framework? 4 Writing Applications Using the.net Framework 5 What Is C#? 8 Applications

More information

Inside Microsoft* SQL Server 2008: T-SQL Querying

Inside Microsoft* SQL Server 2008: T-SQL Querying Microsoft Inside Microsoft* SQL Server 2008: T-SQL Querying Itzik Ben-Gan Lubor Kollor Dejan Sarka Steve Kass Table of Contents Foreword Acknowledgments Introduction xiii xv xix 1 Logical Query Processing

More information

CHAPTER 1: WHAT S NEW IN SHAREPOINT

CHAPTER 1: WHAT S NEW IN SHAREPOINT INTRODUCTION xxix CHAPTER 1: WHAT S NEW IN SHAREPOINT 2013 1 Installation Changes 2 System Requirements 2 The Installation Process 2 Upgrading from SharePoint 2010 3 Patching 3 Central Administration 4

More information

COURSE 20466D: IMPLEMENTING DATA MODELS AND REPORTS WITH MICROSOFT SQL SERVER

COURSE 20466D: IMPLEMENTING DATA MODELS AND REPORTS WITH MICROSOFT SQL SERVER ABOUT THIS COURSE The focus of this five-day instructor-led course is on creating managed enterprise BI solutions. It describes how to implement multidimensional and tabular data models, deliver reports

More information

SQL Server Analysis Services

SQL Server Analysis Services DataBase and Data Mining Group of DataBase and Data Mining Group of Database and data mining group, SQL Server 2005 Analysis Services SQL Server 2005 Analysis Services - 1 Analysis Services Database and

More information

"Charting the Course... MOC A Developing Microsoft SQL Server 2012 Databases. Course Summary

Charting the Course... MOC A Developing Microsoft SQL Server 2012 Databases. Course Summary Course Summary Description This 5-day instructor-led course introduces SQL Server 2012 and describes logical table design, indexing and query plans. It also focuses on the creation of database objects

More information

SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM ( )

SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM ( ) SECURED PROGRAMMING IN.NET DETAILED TRAINING CONTENT INDUSTRIAL TRAINING PROGRAM (2013-2014) MODULE: C# PROGRAMMING CHAPTER 1: INTRODUCING.NET AND C# 1.1 INTRODUCTION TO LANGUAGES C++ C# DIFFERENCES BETWEEN

More information

MCSA SQL Server 2012/2014. A Success Guide to Prepare- Querying Microsoft SQL Server 2012/2014. edusum.com

MCSA SQL Server 2012/2014. A Success Guide to Prepare- Querying Microsoft SQL Server 2012/2014. edusum.com 70-461 MCSA SQL Server 2012/2014 A Success Guide to Prepare- Querying Microsoft SQL Server 2012/2014 edusum.com Table of Contents Introduction to 70-461 Exam on Querying Microsoft SQL Server 2012/2014...

More information

6232B: Implementing a Microsoft SQL Server 2008 R2 Database

6232B: Implementing a Microsoft SQL Server 2008 R2 Database 6232B: Implementing a Microsoft SQL Server 2008 R2 Database Course Overview This instructor-led course is intended for Microsoft SQL Server database developers who are responsible for implementing a database

More information

Contents. Microsoft is a registered trademark of Microsoft Corporation. TRAVERSE is a registered trademark of Open Systems Holdings Corp.

Contents. Microsoft is a registered trademark of Microsoft Corporation. TRAVERSE is a registered trademark of Open Systems Holdings Corp. TPLWPT Contents Summary... 1 General Information... 1 Technology... 2 Server Technology... 2 Business Layer... 4 Client Technology... 4 Structure... 4 Ultra-Thin Client Considerations... 7 Internet and

More information

"Charting the Course... Agile Database Design Techniques Course Summary

Charting the Course... Agile Database Design Techniques Course Summary Course Summary Description This course provides students with the skills necessary to design databases using Agile design techniques. It is based on the Scott Ambler book Agile Database Techniques: Effective

More information

Pro Business Applications with Silverlight 4

Pro Business Applications with Silverlight 4 Pro Business Applications with Silverlight 4 Chris Anderson Apress* Contents at a Glance Contents About the Author Acknowledgments iv v xix xx a Chapter 1: Introduction 1 Who This Book Is For 1 About This

More information

6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI.

6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI. SUMMARY OF EXPERIENCE 6+ years of experience in IT Industry, in analysis, design & development of data warehouses using traditional BI and self-service BI. 1.6 Years of experience in Self-Service BI using

More information

SQL Server T-SQL Recipes. Andy Roberts Wayne Sheffield. A Problem-Solution Approach. Jonathan Gennick. Jason Brimhall David Dye

SQL Server T-SQL Recipes. Andy Roberts Wayne Sheffield. A Problem-Solution Approach. Jonathan Gennick. Jason Brimhall David Dye SQL Server 2012 T-SQL Recipes A Problem- Approach v? Jason Brimhall David Dye Jonathan Gennick Andy Roberts Wayne Sheffield Contents About the Authors About the Technical Reviewers Acknowledgments Introduction

More information

Introduction to Windchill PDMLink 10.2 for the Implementation Team

Introduction to Windchill PDMLink 10.2 for the Implementation Team Introduction to Windchill PDMLink 10.2 for the Implementation Team Overview Course Code Course Length TRN-4262-T 2 Days In this course, you will learn how to complete basic Windchill PDMLink functions.

More information

Pro ASP.NET MVC 2 Framework

Pro ASP.NET MVC 2 Framework Pro ASP.NET MVC 2 Framework Second Edition Steven Sanderson Apress TIB/UB Hannover 89 133 297 713 Contents at a Glance Contents About the Author About the Technical Reviewers Acknowledgments Introduction

More information

2779 : Implementing a Microsoft SQL Server 2005 Database

2779 : Implementing a Microsoft SQL Server 2005 Database 2779 : Implementing a Microsoft SQL Server 2005 Database Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge and skills

More information

"Charting the Course... MOC C: Developing SQL Databases. Course Summary

Charting the Course... MOC C: Developing SQL Databases. Course Summary Course Summary Description This five-day instructor-led course provides students with the knowledge and skills to develop a Microsoft SQL database. The course focuses on teaching individuals how to use

More information

Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services

Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services Course 6234A: Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services Course Details Course Outline Module 1: Introduction to Microsoft SQL Server Analysis Services This module introduces

More information

.NET FRAMEWORK. Visual C#.Net

.NET FRAMEWORK. Visual C#.Net .NET FRAMEWORK Intro to.net Platform for the.net Drawbacks of Current Trend Advantages/Disadvantages of Before.Net Features of.net.net Framework Net Framework BCL & CLR, CTS, MSIL, & Other Tools Security

More information

<Insert Picture Here> What's New for.net Developers for Oracle Database

<Insert Picture Here> What's New for.net Developers for Oracle Database 1 What's New for.net Developers for Oracle Database Alex Keh Principal Product Manager, Oracle Program Agenda Currently available Visual Studio 2010 and.net Framework 4 ODAC 11.2

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights Getting Started with Oracle and.net Christian Shay Principal Product Manager, Oracle 2 Copyright 2011, Oracle and/or its affiliates. All rights

More information

"Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary

Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary Course Summary Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students requiring the knowledge

More information

The Definitive Guide to. NetBeans Platform 7. Heiko Bock. Apress*

The Definitive Guide to. NetBeans Platform 7. Heiko Bock. Apress* The Definitive Guide to NetBeans Platform 7 Heiko Bock Apress* Contents About the Author About the Translator About the Technical Reviewers Acknowledgments Introduction xiv xiv xv xvi xvii * Part 1: Basics

More information

MCSA SQL SERVER 2012

MCSA SQL SERVER 2012 MCSA SQL SERVER 2012 1. Course 10774A: Querying Microsoft SQL Server 2012 Course Outline Module 1: Introduction to Microsoft SQL Server 2012 Introducing Microsoft SQL Server 2012 Getting Started with SQL

More information

Microsoft SQL Server" 2008 ADMINISTRATION. for ORACLE9 DBAs

Microsoft SQL Server 2008 ADMINISTRATION. for ORACLE9 DBAs Microsoft SQL Server" 2008 ADMINISTRATION for ORACLE9 DBAs Contents Acknowledgments *v Introduction xvii Chapter 1 Introduction to the SQL Server Platform 1 SQLServer Editions 2 Premium Editions 3 Core

More information

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration contents foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration xix xxxii PART 1 GETTING STARTED WITH ORM...1 1 2 Understanding object/relational

More information

CHAPTER 1: INTRODUCTION TO THE IDE 3

CHAPTER 1: INTRODUCTION TO THE IDE 3 INTRODUCTION xxvii PART I: IDE CHAPTER 1: INTRODUCTION TO THE IDE 3 Introducing the IDE 3 Different IDE Appearances 4 IDE Configurations 5 Projects and Solutions 6 Starting the IDE 6 Creating a Project

More information

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents Workshop Name Duration Objective Participants Entry Profile Training Methodology Setup Requirements Hardware and Software Requirements Training Lab Requirements Synergetics-Standard-SQL Server 2012-DBA-7

More information

Accurate study guides, High passing rate! Testhorse provides update free of charge in one year!

Accurate study guides, High passing rate! Testhorse provides update free of charge in one year! Accurate study guides, High passing rate! Testhorse provides update free of charge in one year! http://www.testhorse.com Exam : 70-467 Title : Designing Business Intelligence Solutions with Microsoft SQL

More information

SQL SERVER DBA TRAINING IN BANGALORE

SQL SERVER DBA TRAINING IN BANGALORE SQL SERVER DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Sql Server DBA Training Syllabus

More information

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 Course Overview This instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database OVERVIEW About this Course Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the

More information

DOT NET Syllabus (6 Months)

DOT NET Syllabus (6 Months) DOT NET Syllabus (6 Months) THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In- Time Compilation and CLS Disassembling.Net Application to IL

More information

ASP.NET 2.0 p. 1.NET Framework 2.0 p. 2 ASP.NET 2.0 p. 4 New Features p. 5 Special Folders Make Integration Easier p. 5 Security p.

ASP.NET 2.0 p. 1.NET Framework 2.0 p. 2 ASP.NET 2.0 p. 4 New Features p. 5 Special Folders Make Integration Easier p. 5 Security p. Preface p. xix ASP.NET 2.0 p. 1.NET Framework 2.0 p. 2 ASP.NET 2.0 p. 4 New Features p. 5 Special Folders Make Integration Easier p. 5 Security p. 6 Personalization p. 6 Master Pages p. 6 Navigation p.

More information

Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks)

Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks) Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks) Introduction of.net Framework CLR (Common Language Run

More information

COPYRIGHTED MATERIAL. Contents. Part One: Team Architect 1. Chapter 1: Introducing the Visual Designers 3

COPYRIGHTED MATERIAL. Contents. Part One: Team Architect 1. Chapter 1: Introducing the Visual Designers 3 About the Authors Acknowledgments Introduction Part One: Team Architect 1 Chapter 1: Introducing the Visual Designers 3 Why Design Visually? 4 Microsoft s Modeling Strategy 5 Model-driven development 5

More information

SSAS Multidimensional vs. SSAS Tabular Which one do I choose?

SSAS Multidimensional vs. SSAS Tabular Which one do I choose? SSAS Multidimensional vs. SSAS Tabular Which one do I choose? About Alan Sr BI Consultant Community Speaker Blogs at FalconTekSolutionsCentral.com SSAS Maestro Will work for cupcakes Generally speaks on

More information

Querying Microsoft SQL Server (461)

Querying Microsoft SQL Server (461) Querying Microsoft SQL Server 2012-2014 (461) Create database objects Create and alter tables using T-SQL syntax (simple statements) Create tables without using the built in tools; ALTER; DROP; ALTER COLUMN;

More information

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database

Course 6231A: Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Maintaining a Microsoft SQL Server 2008 Database About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008

More information

<Insert Picture Here> Getting Started with Oracle and.net

<Insert Picture Here> Getting Started with Oracle and.net 1 Getting Started with Oracle and.net Alex Keh Principal Product Manager, Oracle Program Agenda Oracle and Microsoft partnership Oracle and.net getting started Latest features and

More information

10267 Introduction to Web Development with Microsoft Visual Studio 2010

10267 Introduction to Web Development with Microsoft Visual Studio 2010 10267 Introduction to Web Development with Microsoft Visual Studio 2010 Course Number: 10267A Category: Visual Studio 2010 Duration: 5 days Course Description This five-day instructor-led course provides

More information