Browse by Tags

Tagged Content List
  • Wiki Page: User Page: Santhakumar Munuswamy

    Note This is a " User Page " (click for a list of all user pages on TechNet Wiki). User pages on TechNet Wiki exist for the following reasons: To link to these pages from various online profiles, blog posts, etc. To allow collaboration on filling out such information....
  • Wiki Page: Entity Framework : Customized Join Table in a Many to Many Relationship

    By default, Entity Framework will create a join table when it sees a many-to-many relationship. For example, let’s take the following example. Let’s say we have two entities named Person and Hobby . A person can have many hobbies. A single hobby can be used by many persons. If we model that scenario...
  • Wiki Page: SCOM 2012: Create Alert / Monitor Based on Windows event (Administrator login alert)

    Today, our customer asked us how we can know when the Administrator has a login via terminal server on Windows Server on their Domain. The answer is with SCOM, using the event alert feature. When you do a login in Windows 2008 or higher and the audit is running an event with id 4624, it's...
  • Wiki Page: TechNet Guru Competitions - March 2017

    Table of Contents Introduction How to Enter 1. Create a new TechNet Wiki Article Steps 2. Tell us about it Categories (in alphabetical order) BizTalk Forefront Identity Manager Microsoft Azure SharePoint 2010 / 2013 Small Basic SQL BI & Power BI SQL Server General & Database Engine System Center...
  • Wiki Page: Visual Studio Team Services: Connecting a BitBucket Repository

    This wiki is a walk-through of how to connect an existing BitBucket repository to Visual Studio Team Services. Table of Contents Step 1: Create a build definition Step 2: Connect the BitBucket Repository Step 1: Create a build definition In the project inside VSTS, navigate to the Build...
  • Wiki Page: SharePoint 2013: Capacity Management

    Table of Contents Capacity Management What to Monitor How to Monitor References: Thresholds and Actions: Tips for Performance: Capacity Management Capacity management is an ongoing process. You need to plan for growth and change so that your environment can continue to deliver a robust business...
  • Wiki Page: C#: Manage Analog Sensor With Raspberry Pi 2

    Table of Contents Introduction Hardware required A brief mention on the chip MCP3008. Electrical / electronic circuit Temperature Sensor TMP36 Create the test project with Visual Studio 2015 Creating Classes MCP3008 and TMP36 Creation of the graphical interface and code in MainPage class Test the application...
  • Wiki Page: TechNet Guru Competitions - August 2016

    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 Universal Windows Apps Visual Basic Visual C# Windows PowerShell Windows...
  • Wiki Page: C#: Using 2 Interfaces with Same Method Signature in 1 Class

    Let's give you a brief description about a common scenario. Let’s say you have two interfaces Interface1, Interface2, and both interfaces are having a method addNumber() with the same signature. Now let’s say you have to implement both interfaces in one class (e.g. Class1: Interface1, Interface2...
  • Wiki Page: TechNet Guru Competitions - November 2016

    Table of Contents Introduction How to Enter 1. Create a new TechNet Wiki Article Steps 2. Tell us about it 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 Universal...
  • Wiki Page: TechNet Guru Competitions - February 2017

    Table of Contents Introduction How to Enter 1. Create a new TechNet Wiki Article Steps 2. Tell us about it Categories (in alphabetical order) BizTalk Forefront Identity Manager Microsoft Azure SharePoint 2010 / 2013 Small Basic SQL BI & Power BI SQL Server General & Database Engine System Center...
  • Wiki Page: Visual C#: Thread.Sleep vs. Task.Delay

    We can use both Thread.Sleep() and Task.Delay() to suspend the execution of a program (thread) for a given timespan. But are we actually suspending the execution? What is the difference between these two? How do you abort from a sleeping thread or an awaited task? Those are some of the questions I...
  • Wiki Page: T-SQL: How to Compare Two Tables Definition / Metadata in Different SQL Databases

    This article is about the example on T-SQL Scripts to compare two tables definition / metadata in different databases. The T-SQL Script [used to compare two tables definition / metadata in different databases] in this article can be used from SQL Server 2012 and above versions because the function...
  • Wiki Page: SSRS: How to Repeat Headers for Each Group

    This article is going to share the information on: how to repeat headers for each group how to overcome this error: "An error occurred during local report processing . The definition of the report '/Report ' is invalid . The tablix 'Tablix' has a detailed member...
  • Wiki Page: How to Check the Syntax of Dynamic SQL Before Execution

    This article is about the system function sys.dm_exec_describe_first_result_set that can be used to check the syntax of dynamic SQL before execution. This system function, sys.dm_exec_describe_first_result_set, was introduced in SQL Server 2012. Create sample table and insert sample data: ...
  • Wiki Page: SSRS: How to set Column Visibility Property for Many Columns Based on Parameter's Value

    This article is about setting the Column Visibility property for many columns based on parameter value. We can set the Column Visibility property for Tablix/Matrix columns by selecting the column and then right-clicking Column Visibility - > Show or hide based on expression and then entering...
  • Wiki Page: SSRS: Multiple Ways to Split a String into Multiple Lines

    This post is about how to split a string inside text box or field into multiple lines. Below are the options to split a string into multiple lines: i.) using VBCRLF ii.) using chr(10) iii.) using <br> HTML tag Consider for example there is a string "Microsoft Reporting...
  • Wiki Page: SSRS: Multi Font Color / Multi Font Size within a Single Field / Textbox

    This article explains how to format the characters within a single Field or Textbox with varying font size and font color in SSRS. Consider the below code sample as the requisite dataset query: DECLARE @UnitsOfMeasurement TABLE (Measurement VARCHAR (50),Units VARCHAR (20)) ...
  • Wiki Page: T-SQL: Display Horizontal Rows Vertically

    This article is an outcome of my answer to this question on MSDN forum. Consider this scenario: Table 1: DEPARTMENT EMPID ENAME SALARY A/C 1 TEST1 2000 SALES 2 TEST2 3000 ...
  • Wiki Page: IIS: Modifying Web.Config file vs IIS Reset

    When you say IIS RESET do you know IIS Reset stops and restarts the entire web server? Let's take a look at IIS. In IIS you can create multiple websites and application pools. You can run multiple applications under one application pool. Now in your IIS you have so many applications...
  • Wiki Page: Create self-signed SSL certificates for SharePoint 2013

    A self-signed certificate is an identity certificate that is signed by the same entity whose identity it certifies. This term has nothing to do with the identity of the person or organization that actually performed the signing procedure. In technical terms, a self-signed certificate is one signed...
  • Wiki Page: Alternate Access Mapping(AAM) and SharePoint 2013 SSL web applications

    In an environment exposing the web applications to the Internet, there is a need to have certificates installed either on SharePoint servers or through a load balancer. Once certificates are installed some URLs are not translated as required which causes misbehaviour for SharePoint web applications...
  • Wiki Page: SharePoint 2013: Host Named Site Collection (HNSC) Overview

    SharePoint 2013 introduced a type of Site Collection called Host Named Site Collection (HNSC) which is suitable for models dependent on DNS host names in multi- tenant environments. This article draws on several sources including personal experience about HNSC . In SharePoint 2013, you can...
  • Wiki Page: Entity Framework Code First - Defining Foreign Keys using Data Annotations and Fluent API

    When using Entity Framework Code First approach, there are actually three ways to define foreign keys. In this wiki let’s explore these different ways with some examples (please note, here we are not going to cover the basics of EF, assuming you have some knowledge in Entity Framework.) . Before starting...
  • Wiki Page: Windows Clustering: Identify “Shared” and “Non-Shared” disks on cluster nodes

    Table of Contents Applicable to: Scenario: Steps to identify Non-Shared disk for failover clusters: Results by Category Diskpart Applicable to: Windows servers 2008, 2012, and R2 versions failover clusters, Scenario: If you are building a failover cluster and there will be a mix of shared...
Page 20 of 41 (1,005 items) «1819202122»
Can't find it? Write it!