Browse by Tags

Tagged Content List
  • Wiki Page: SSAS - Discuss various backup methods & Automating cube database(s) backup with PowerShell

    Table of Contents Introduction Logical Flow Method 1 : Input text file consists of Cube DB's, Backup to local drive Method 2: Pass cube server ,database and retention period as it’s parameters Method 3: Backup all cube database to Network Share Execute PowerShell script from SSMS SQL Job Conclusion...
  • Wiki Page: PowerShell: Disk Space GUI Tool

    Table of Contents Abstract Querying Win32_Volume Querying Win32_logicalDisk About Tool Layouts Download Code Conclusion References This article won Technet GURU Gold medal. You are welcome to update and give your valuable feedback Abstract Monitoring server resources is critical...
  • Wiki Page: C++: Leggere la temperatura con Arduino Uno (it-IT)

    Table of Contents Introduzione Descrizione dei componenti Schema elettronico e anteprima del circuito su Breadboard. Creazione dello sketch di codice. Test del progetto Conclusione Introduzione In questo primo articolo dedicato alla scheda Arduino Uno, ci concentreremo sull'utilizzo di un...
  • Wiki Page: SSIS: Lineage ID

    Table of Contents What is Lineage ID? How Lineage ID helps you? Synchronous Transformations and Lineage ID See Also: This is going to be a simple article that will talk about lineage ID. Each component in the SSIS data flow task has lineage IDs depending on how many columns the data flow processes...
  • Wiki Page: Understanding the Azure App Service Editor

    Table of Contents Kudu App Service Editor Video Conclusion See Also References Azure App Service Editor is a new tool in Microsoft Azure . It is now available in preview in the Azure Portal . The App Service Editor was formerly known as Visual Studio Online (Monaco). The tool provides a web...
  • Wiki Page: Aggregations in SSAS

    Table of Contents Factors to consider during Designing Aggregations Monitoring Aggregations Why Aggregations? Can Anything and Everything be part of Aggregations? Usage Based Aggregations Anyone who is developing an SSAS solution for the first time may expect to see a lightning fast query response...
  • Wiki Page: T-SQL: Script to Find the Names of Stored Procedures that Use Dynamic SQL

    Table of Contents See Also Other Languages This script was developed to answer the question in this thread: I need query find all the SPs that used dynamic SQL We can execute dynamic SQL using sp_executesql or just with Exec / Execute . To find the names of the StoredProcedure that...
  • Wiki Page: Unit Testing with Entity Framework

    Table of Contents Introduction Unit Testing with Entity Framework Initial Migration Unit Tests Summary Introduction As part of the CQRS in Azure MSDN blog series, a unit test project was created to verify some of the functionality implemented using Entity Framework (EF). A challenge that often...
  • Wiki Page: FIM2010: Writing Advanced Attribute Flows

    Table of Contents Intro Advanced flow rules Reflection Code using reflection Example attribute flow rule References Credits Intro Once in a while you will come across very complex business requirements while implementing FIM in a large environment. These requirements often require a classic...
  • Wiki Page: Handling images using T-SQL

    Table of Contents Introduction Building the Environment for Testing Creating a sample table Browsing an image Inserting an image Reading binary data Conclusion References See Also Other Languages Introduction In some situations, to get a picture directly from a directory path in HD after consulting...
  • Wiki Page: SQL Server Performance Tuning with Indexing

    Table of Contents Introduction Performance tuning with Indexing Index Maintenance Disk Space Requirements for Index DDL Operations See Also Introduction Poor data model, poorly written queries and poor indexing strategies can result in performance degradation of an OLTP system. When it...
  • Wiki Page: TechNet Guru Feature Requests

    Table of Contents New Category Requests New Tool Features New Judge Requests Completed Requests Completed Category Requests Completed Tool Features Completed Judge Requests Expand This Article See Also TechNet Guru is a monthly competition that rewards the top articles for each category. Learn more...
  • Wiki Page: Article Index: The CodePlex Corner

    Table of Contents CodePlex Corner Introductory Articles Content Management Articles Administration Articles Development & Deployment Articles Business Productivity Articles Look & Feel Articles Social & Mobile Articles Search & Findability Articles Welcome to the CodePlex Corner series...
  • Wiki Page: SharePoint Online: An Introduction to Office Delve

    Table of Contents Introduction What is Office Delve? What is Office Graph? Using Graph Query Language with Search REST API to query Office Graph Exploring the different available Actor Types References See Also Introduction Microsoft has been talking about “codename Oslo” and Office Graph since...
  • Wiki Page: BizTalk Server 2013: Connect to Window Azure Blob Storage

    Table of Contents Introduction Windows Azure Storage Create a Windows Azure Storage Account Create a container Configuring the WCF-WebHttp Adapter BizTalk Messaging Solution Wrap up Call for action See Also Introduction BizTalk Server 2013 supports connectivity with Windows Azure through its...
  • Wiki Page: Azure File Storage - On-premises Folder Sync

    Gold Award Winner Recently I have been working on moving an e-commerce website to an Azure Web App. Most of the e-commerce functionality worked without issues in Azure except for how the site had implemented integration. This was done using a collection of XML file based jobs. There were...
  • Wiki Page: Small Basic 1.2: Installation Guide

    Gold Award Winner Table of Contents Overview Downloading Small Basic 1.2 Installing Small Basic 1.2 Credits See Also Overview Small Basic is free! And it teaches actual text/syntax-based programming to students! This is the only language+IDE built for that purpose! And it's free...
  • Wiki Page: Small Basic: How to Publish Your Program

    Bronze Award Winner Table of Contents Sharing Your Program Ready to share your code? See Also Sharing Your Program You can easily share your program with your friends or the Small Basic community! Just click Publish on the Toolbar. (You will need to be connected to the internet.) ...
  • Wiki Page: TechNet Guru Contributions - February 2015

    Table of Contents Introduction How to Enter Categories Microsoft Azure BizTalk Forefront Identity Manager SharePoint 2010 / 2013 Small Basic SQL BI & Power BI SQL Server General & Database Engine System Center Transact-SQL Visual Basic Visual C# Windows PowerShell Windows Phone and Windows Store...
  • Wiki Page: Configuring Office Web Apps Server (OWA) with certificate

    Table of Contents To Install OWA server do the following from PowerShell: To configure OWA with SharePoint using HTTPS: Notes: References: Office Web Apps Server (OWA) provides updated versions of Word Web App, Excel Web App, PowerPoint Web App, and OneNote Web App. Users can view and edit Office...
  • Wiki Page: SharePoint 2013: Checking SharePoint List Field NULL Value in Code

    Table of Contents Use a ternary condition to get the value of a list item field (or set a default value if the field is null) Write extension methods for SPListItem, so that you can call them right away Validation in Javascript to see if the field value is empty See Also As a general practice,...
  • Wiki Page: Nonki's Suggestions for TechNet Guru Iconography

    Silver Award Winner I will collect suggestion images for TechNet Guru Iconography here. Table of Contents TechNet Guru 100lines Guru TechNet Ninja Sample Banner See Also Other Resources TechNet Guru A Small Basic program NRS907-3 can draw TechNet Guru medals below. You can run this program...
  • Wiki Page: VB.Net: How to Communicate with a Microcontroller or Other Serial Device

    Table of Contents Introduction Microcontrollers (MCUs) Serial Port Pitfalls Using the SerialPort Component "SerialDevice" Code Sample Code Description Usage Example Summary See Also Introduction With today's low-cost electronics and micro-manufacturing techniques the average electronics...
  • Wiki Page: TechNet Guru Competitions - January 2017

    Table of Contents Introduction How to Enter 1. Create a new TechNet Wiki Article Steps 2. Tell us about it Categories BizTalk Forefront Identity Manager Microsoft Azure SharePoint 2010 / 2013 Small Basic SQL BI & Power BI SQL Server General & Database Engine System Center Transact-SQL Universal...
  • Wiki Page: Progress of a Task in C#

    By default, Task doesn’t report its progress as a BackgroundWorker does. But that doesn’t mean we can’t get a progress of a Task. There is a new interface which was introduced with .NET framework 4.5 which is IProgress<T> . This interface exposes a Report(T) method, which the async task calls...
Page 19 of 41 (1,005 items) «1718192021»
Can't find it? Write it!