Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
.net
Active Directory
AD DS
ASP.NET
azure
Benoît Jester
BizTalk
BizTalk Server
BizTalk Server 2010
C#
C# .NET
Chen V
cloud
EAA
Ed Price
Edward van Biljon
en-US
es-ES
Excel
Exchange
Exchange 2010
Exchange 2013
Exchange Server 2010
fa-IR
FIM
FIM 2010
fr-FR
has Back to Top link
has code
has command
has comment
has Conclusion
has download link
has Gallery download
has image
Has Link
has links
has Other Languages
has reference
has References
has See Also
has summary
Has Table
Has TOC
has video
How To
Hyper-V
it-IT
Link Collection
Lync
magazine article
Mehmet Parlakyiğit
Microsoft
Microsoft Azure
Multi Language Wiki Articles
MVP
needs work
Office 365
pgtag
Português Brasil
PowerShell
pt-BR
SCCM
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint 2016
Sharepoint Online
Small Basic
SQL
SQL Server
SQL Server 2012
step by step
stub
System Center
System Center 2012
TAT
TAT Members
TechNet Guru
TechNet Guru Gold Medal Winner
TechNet Guru Medal Winner
TechNet Wiki
TechNet Wiki Featured Article
Translated into French
troubleshooting
tr-TR
T-SQL
Visual Studio
VS
Wiki
Windows
Windows 10
Windows 7
Windows 8
Windows Phone
Windows Phone Migration Content
Windows Server
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
Browse by Tags
>
TechNet Articles
>
All Tags
>
TechNet Guru
Tagged Content List
Wiki Page:
Getting Started with Test Driven Development in C# (tutorial)
Ken Cenerelli
Table of Contents Introduction Taking Flight Code Sample Introduction Test Driven Development (TDD) is highly recommended approach to software development. In TDD, we first write unit tests, generate skeleton code so that the solution builds. Obviously all tests will fail initially since we have...
on
28 Dec 2015
Wiki Page:
TechNet Guru Contributions - November 2015
Pete Laker
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...
on
28 Dec 2015
Wiki Page:
TechNet Guru Contributions - July 2015
Pete Laker
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...
on
11 Dec 2015
Wiki Page:
FIM 2010 R2: WAAD Connector - Managing the SourceAnchor field in a Multi-Forest Exchange organization
Chen V
Table of Contents Introduction Case Overview Solution requirement Solution design Code logic Code Introduction The FIM Windows Azure Active Directory (WAAD) connector uses the SourceAnchor field as the identifier of the Azure object. The SourceAnchor field is derived in WAAD via attribute flow...
on
10 Dec 2015
Wiki Page:
TechNet Wiki - Images and Logos - 2015
Ed Price - MSFT
Introduction This article aims to make available images for use in promotions and disclosures in the awards, blogs and TechNet Wiki articles. Downloads Download Image Pack – TechNet Gallery Images – Awards - Logo TechNet Guru Award - Logo TechNet Wiki Contributors...
on
10 Dec 2015
Wiki Page:
Azure Mobile Services Custom API - Exploring Server Side Capability
Chen V
Table of Contents Introduction Node.js Fabricated Scenario Basic API Extending the Basic API See Also Introduction This Wiki Article explores some of the capabilities of Azure Mobile Services API that might be of interest in some scenarios. Note: this article assumes some familiarity with Azure...
on
10 Dec 2015
Wiki Page:
TechNet Guru Contributions - October 2015
Pete Laker
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...
on
1 Dec 2015
Wiki Page:
Various Media Objects for Windows Phone and Their Roles
martinism
Windows phone has various media related classes which have proven to be very confusing for new developers. This article will try to shed some light on the matter and hopefully answer most questions beginners might have. But before that, we need to define some terminology. The media library is defined...
on
1 Dec 2015
Wiki Page:
T-SQL: Remove Leading and Trailing Zeros
SathyanarrayananS
In this post I have consolidated few of the methods to remove leading and trailing zeros in a string . Here is an example : DECLARE @BankAccount TABLE (AccNo VARCHAR (15)) INSERT @BankAccount SELECT '01010' INSERT @BankAccount SELECT '0010200' ...
on
28 Nov 2015
Wiki Page:
SSRS: How to Group Same Row Data with One Column Having Varying Data
SathyanarrayananS
This article is the outcome of my answer to this question in the SSRS forum. Consider this sample data DECLARE @sample_data table ( [ Year ] varchar (5), Emp_id varchar (30), Name varchar (30), Accomplishments varchar (30) ) insert @sample_data...
on
28 Nov 2015
Wiki Page:
SSRS (Matrix): How to Repeat Headers on Each Page and Keep Headers Fixed while Scrolling
SathyanarrayananS
This article is an outcome of my answer to this question on MSDN SSRS forum . Previously I wrote similar article on SSRS: How to Repeat Headers on Each Page and keep headers fixed while scrolling for a table. In this article , let us see an example on how to repeat headers on each page and keep headers...
on
28 Nov 2015
Wiki Page:
How to Generate Index Creation Scripts for all Tables in a Database using T-SQL
SathyanarrayananS
The need often arises to create or recreate the indexes for all tables in a database, especially in development and testing scenarios. This article presents a script to generate Index Creation Scripts for all tables in a database using Transact-SQL (T-SQL). The code block below will generate Index...
on
28 Nov 2015
Wiki Page:
SSIS: Import Excel to table - Cannot convert between unicode and non-unicode string data types
SathyanarrayananS
When data is imported from Excel to SQL Server table using SSIS and if the destination table has column of data type VARCHAR, we will end up with error "Cannot convert between unicode and non-unicode string data types" . As far as my knowledge, I know there are two solutions: i)...
on
28 Nov 2015
Wiki Page:
SSRS - RDL Compare
SathyanarrayananS
This article shares the information on how to compare two versions of the same report . Sometimes we might be in a need to compare the changes in two versions of the same report. We can observe the changes easily on the report if it is a color modification or something like this, What if...
on
28 Nov 2015
Wiki Page:
SSRS - Sorting
SathyanarrayananS
Introduction One of the important factors to be considered and taken care in SSRS report designing is Ordered display of report: Order of rows in tables Order of columns in matrices Order of labels in X-axis of charts Order of series groups in stacked charts In this article, let us see examples...
on
28 Nov 2015
Wiki Page:
SQL Server - Effects Of Renaming a Column Of a Table
SathyanarrayananS
This article is about the impact of renaming a column of a table . Table of Contents Introduction Scripts to Identify all Referenced Objects affected by Column Rename Ways of Renaming a Column of a Table Error Number - 207 Scripts to Identify Referenced Objects that are affected by Column Rename...
on
28 Nov 2015
Wiki Page:
SharePoint 2010: A Complete list of SPFile Operations using ECMA Script
Ken Cenerelli
Table of Contents Introduction File Checkout: File Check In CopyTo MoveTo Publish File Delete File Get File Path Get document Author Name Get document Modified By Name Introduction This article demonstrates how to use various methods/properties associated with SPFile object using client object...
on
20 Nov 2015
Wiki Page:
Understanding Logging in Tempdb. Is Tempdb Recreated or Rebuilt after SQL Server Starts?
Mohammad Nizamuddin
Table of Contents Introduction Performing the test Conclusion about re-created/rebuild Understanding Recovery Model in Tempdb Performing test to understand Recovery model Conclusion about Recovery Model Owner of Tempdb Summary Suggested Readings See Also Credits ↑ Back to top Introduction...
on
8 Nov 2015
Wiki Page:
Small Basic: Fonts
Nonki Takahashi
This article explains fonts for the GraphicsWindow object in Microsoft Small Basic. Table of Contents What is a Font? What is a Glyph? Font Properties FontBold FontItalic FontName FontSize Recommended Fonts Sample Programs Recommended Fonts 0.3 Fonts Sample 0.1 See Also Other Resources Other Languages...
on
15 Oct 2015
Wiki Page:
Microsoft Small Basic 1.1 Release Notes
Ed Price - MSFT
This page is carefully and closely monitored. Any changes you make will be evaluated and then quickly accepted, refined, or reverted. NOTE: Small Basic 1.1 was replaced with a newer version. To download the latest version, please see Download Microsoft Small Basic . Table of Contents...
on
11 Oct 2015
Wiki Page:
TechNet Guru Contributions - Small Basic
Ed Price - MSFT
This article lists all Small Basic articles that participated in the TechNet Guru Contributions Small Basic category. Table of Contents 2015 August 2015 May 2015 April 2015 March 2015 February 2015 January 2015 2014 December 2014 November 2014 October 2014 September 2014 August 2014 July 2014 June...
on
9 Oct 2015
Wiki Page:
Prime Number Factorization with Small Basic
.paul. _
Table of Contents Scope Factorization Prime numbers Fundamental Theorem of Arithmetic Check for primality Wrap it up Requesting input Calculate primality Spotting factors Showing results Source code PNF on SmallBasic.com Bibliography See Also Scope In this brief article, we'll consider a...
on
8 Oct 2015
Wiki Page:
System Center Operations Manager 2012 - Monitoring the Monitor
Ken Cenerelli
Table of Contents Introduction SQL Connectivity - Single Point of Failure Strategy Procedure Introduction Get notified when System Center Operations is down! System Center Operations Manager can’t monitor itself. When (not if) it goes off-line it cannot generate an Alert notifying you it...
on
8 Oct 2015
Wiki Page:
SQL Server: Pragmatic Denormalisation
Andy ONeill
Table of Contents Introduction What is Denormalisation? Default Value Adding Logic Performance Minimising Joins Avoiding Correlated Subqueries Pre Aggregation Reducing Skill Threshold Data Redundancy vs. Denormalisation Data Warehouse/Mart Caching Business Server Cache Local Cache Many courses cover...
on
3 Oct 2015
Wiki Page:
DotNet: Reporting Options
Andy ONeill
Table of Contents Introduction SAP Crystal Reports Microsoft Reports MS Access Transforms - XSLT / XSL Jquery T4 Template Word Mail merge Open Source ReportingCloud My-FyiReporting Paid Third Party Telerik Reporting DevExpress Universal Reporting DevExpress Snap Windward Autotag Banded Reports ...
on
3 Oct 2015
Page 26 of 41 (1,005 items)
«
24
25
26
27
28
»
Can't find it? Write it!
Post an Article