TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
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
Active Directory
AD
AD DS
adfs
ASP.NET
azure
BizTalk
BizTalk Server
BizTalk Server 2010
C#
Candidate for deletion
certification
cloud
core docs
de-DE
EAA
Ed Price
Ed's Stub Pages
en-US
ESA
es-ES
Excel
Exchange
Exchange 2010
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
FIM Resources
FIM-HELP
forefront
forums
fr-FR
Gokan Ozcifci
has code
has comment
has comments
has image
has Images
has Other Languages
has See Also
Has Table
Has TOC
Horizon_Net
How To
Hyper-V
id-ID
IIS
Italian Wiki Articles
it-IT
ja-JP
Jordano Mazzoni
Link Collection
Luciano Lima
Luigi Bruno
Lync Server 2010
MIISILMFIM MACAULAY
Multi Language Wiki Articles
needs work
operations manager
Pirated Content
Portal
Português Brasil
PowerShell
pt-BR
security
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint Pirate
Small Basic
solucionando problemas
SQL Server
SQL Server 2012
stub
System Center
System Center 2012
TechNet Guru
TechNet Wiki
TechNet Wiki Featured Article
tonyso
Translated into Japanese
troubleshooting
tr-TR
vídeo
Video
Virtualization
VMM
Wiki
Windows
Windows 7
Windows 8
Windows Azure
Windows Server
Windows Server 2003
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
yottun8
اکتیو دایرکتوری
Browse by Tags
>
TechNet Articles
>
All Tags
>
TechNet Guru
Tagged Content List
Wiki Page:
SSRS: How to Group Same Row Data with One Column Having Varying Data
Ed Price - MSFT
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
5 Sep 2013
Wiki Page:
SSIS: Move a Folder from one Drive to Another Drive Using the File System Task
Ed Price - MSFT
When I tried to answer the question in this thread - http://social.msdn.microsoft.com/Forums/sqlserver/en-US/cec6c11f-ec2c-48e2-9c14-199c640ebb05/move-folder-using-file-system-task , I came to know about the fact that using File system Task by setting the option Operation = Move Directory , we can...
on
5 Sep 2013
Wiki Page:
SharePoint 2013: How to open list forms in dialog box instead of navigating to another page.
Ed Price - MSFT
Table of Contents Steps to force to open the dialog box for list forms: About Calendar List In SharePoint 2010, when you try to add new item to list, edit item or view item dialog box gets opened. And once you have done with the action you remain on the same page, so minimal to and fro navigation...
on
5 Sep 2013
Wiki Page:
BizTalk and SSL Transport
Ed Price - MSFT
Table of Contents Introduction Secure Sockets Layer (SSL) SSL One-way SSL Two-way Configure SSL within an BizTalk adapter SSL Demystified See Also Introduction Secure transport can be provided by HTTPS, which is a combination of the Hypertext Transfer Protocol (HTTP) with SSL/TLS protocol to...
on
5 Sep 2013
Wiki Page:
BizTalk Server: Tracking Dependencies Between Artifacts
Ed Price - MSFT
Table of Contents Introduction BizTalk Server 2013 Previous BizTalk versions See Also Introduction One of the new out of the box features of BizTalk Server 2013 is the ability to track dependencies between artifacts. The BizTalk Server Administration console provides a UI-driven experience to see...
on
5 Sep 2013
Wiki Page:
BizTalk Server 2013: Test BizTalk artifacts with Visual Studio 2012
Ed Price - MSFT
Table of Contents Introduction Test an instance of a document schema Testing a map Unit testing of BizTalk artifacts Unit testing of a schema Unit testing of a map Unit testing of a pipeline Wrap up See Also Introduction Testing is an important aspect of (BizTalk) application life cycle. Before...
on
5 Sep 2013
Wiki Page:
TechNet Guru Contributions - July 2013
Ed Price - MSFT
Table of Contents Introduction How to Enter 1) Create a new TechNet article 2) Tell us about it Categories BizTalk Forefront Identity Manager SharePoint 2010 / 2013 Small Basic SQL Server Analysis Services, PowerPivot SQL Server Database Engine SQL Server Reporting Services, Power View, & SQL Server...
on
5 Sep 2013
Wiki Page:
Finding Floor and Fraction of the Decimal Number
Naomi N
Today I presented a solution for a very common request - given a decimal number, find its floor (I am using this Wikipedia definition ) as well as its fraction. This is the solution as appeared in that referenced thread: DECLARE @amount MONEY; SET @amount = 812.85; ...
on
4 Sep 2013
Wiki Page:
How SQL Server Determines Type of the Constant
Naomi N
Table of Contents Problem Definition Explanation Conclusion See Also Problem Definition There was an interesting question asked recently in Transact-SQL forum "Basic doubt in Round function" . The problem was stated as following: SELECT ROUND(744, -3) produced...
on
4 Sep 2013
Wiki Page:
SET ANSI_PADDING Setting and Its Importance
Naomi N
Table of Contents Problem Description Investigation Resolution Script to correct problem in the whole database Default Database Settings See Also Other Languages Problem Description Recently I got an interesting escalation to solve for the client. Our VFP based application was getting the following...
on
4 Sep 2013
Wiki Page:
SQL Server Resource Re-Balancing in Failover Cluster
Naomi N
The poster asked how to automatically adjust SQL Server's max server memory setting following a cluster fail-over - see here . I provided the following script with suggestions for how it could be tailored for their environment. USE [ master ] GO /****** Object: StoredProcedure [dbo...
on
4 Sep 2013
Wiki Page:
T-SQL: Group by Time Interval
Naomi N
Table of Contents Simple Problem Definition Solution Complex Problem Definition and Solution See Also Simple Problem Definition A question was posted today in Transact-SQL forum " Counts by Time Interval " The thread originator wanted to know how to find how many jobs were completed...
on
3 Sep 2013
Wiki Page:
Location API in Windows Phone 8
LeoPonti
Table of Contents Overview Introduction Location Provider technologies Getting the Current Location in Windows Phone 7.5 Capabilities Geolocator in Windows Phone 8 Background Location Tracking Overview This article will introduce the Location features in Windows Phone 8 and how the windows phone...
on
31 Aug 2013
Wiki Page:
How to Handle a Huge Collection of Strings in VB.Net
Ed Price - MSFT
Table of Contents Introduction Collection Classes in .Net A More Capable Solution for Strings Implementing the Collection Recursive Helper Methods Adding Strings to the Collection Removing Strings from the Collection Finding Strings in the Collection Implementing the SearchableStringCollectionEnumerator...
on
31 Aug 2013
Wiki Page:
SQL Server 2008+: Merge (Unity is Strength - Strengthen your Performance by Merge)
Balaji M Kundalam
Table of Contents Problem Definition Solution MERGE Points to note Conclusion Problem Definition In SQL Server for each DML transaction (Insert, Update, Delete) we need to write separate statements which will be executed one by one in SQL Server execution engine. Let's give a basic...
on
31 Aug 2013
Wiki Page:
Connecting to SSAS Cube using Silverlight
Naomi N
Some time back when I was watching a presentation of a third party reporting product, I saw some nice animated charts. I wanted to create something similar to those charts and when I checked on SSRS, unfortunately what I wanted isn't possible with SSRS. So I moved into Silverlight Charts and I...
on
30 Aug 2013
Wiki Page:
FIM 2010 R2: How to Bulk Import Attributes Flow Rules into a Synchronization Rule in the Portal
Ed Price - MSFT
Table of Contents Overview Pre-requisites Create Synchronization Rules in the Portal Create Powershell scripts Configure attribute flows in Excel Using the powershell scripts Items to Note Overview I had to create 6 Sync rules each one with 100+ attribute flows. It would take me at least 2...
on
30 Aug 2013
Wiki Page:
Create an Analog Clock in a Windows Store Application
Weslee db
This sample uses xaml and C# to create an analog clock in a windows store application. Xaml allows you to vary the angle of lines when drawn on the screen. I used an ellipse as the background of the clock. We will draw 3 lines for the hour, seconds, and minute hand on an analog clock. A rotate transform...
on
28 Aug 2013
Wiki Page:
Een analoge klok maken in een Windows Store Applicatie (nl-NL)
Weslee db
Dit voorbeeld gebruikt xaml en C# om een analoge klok te maken in een windows store applicatie. Xaml laat u toe de hoek van lijnen weergeven op een scherm te laten variëren. Ik heb een ellips gebruikt als achtergrond van de klok. We zullen drie lijnen tekenen voor de uur, seconden en minuut wijzer...
on
28 Aug 2013
Wiki Page:
FIM 2010 R2: How to Make a Connection to Oracle Database 11g
Ike Ugochuku - MSFT (IdM-FIM Consultant)
Table of Contents Pre-requisites Install Oracle client 11g on the FIM Server Configure Oracle MA Oracle DB connectivity tips Pre-requisites Install FIM 2010 R2 on Windows 2008, SQL 2008. If you are using Windows 2012 or SQL 2012 then install FIM 2010 R2 SP1 Get the following Oracle...
on
24 Aug 2013
Wiki Page:
Baumstrukturen mit LINQ abfragen (de-DE)
Carsten Siemens
Dieser Artikel ist die deutsche Übersetzung meines zuerst auf Englisch erschienen Artikels How to Query Trees Using LINQ . (Gerichtete) Bäume gehören zu den häufigsten Datenstrukturen in der Informatik. Wie sie mit LINQ genutzt werden, ist aber weniger offensichtlich. Dieser Artikel definiert...
on
23 Aug 2013
Wiki Page:
BizTalk Server: Importing Certificates
Ed Price - MSFT
Table of Contents Introduction Other People Store Personal certificate store Importing certificates Microsoft Management Console CertWizard See Also Introduction BizTalk Server depends mainly on security provided by certificates and uses them for encryption, decryption, signing and verifying digital...
on
21 Aug 2013
Wiki Page:
How to Query Trees Using LINQ
Carsten Siemens
A (directed) tree is one of the most common data types. But how do you use trees in LINQ? This article introduces a generic LINQ-Extension which solves the problem, gives an example and discusses alternatives. Table of Contents Motivation Solution Usage Example Contradictions and alternatives...
on
20 Aug 2013
Wiki Page:
WPF/MVVM: Binding the IsChecked Property of a CheckBox to Several Other CheckBoxes
Ed Price - MSFT
Table of Contents Introduction Grouping in XAML Data Templating Defining a GroupStyle The binding Selecting all CheckBoxes Introduction This article provides an example on how you can use a three-state Checkbox control to set the IsChecked property of several other related CheckBoxes in a data...
on
19 Aug 2013
Wiki Page:
SharePoint 2010: Reverse Engineering SharePoint WSP Packages
Gokan Ozcifci
Table of Contents Reverse Engineering SharePoint WSP Packages Introduction Audience Getting Started Delving Deeper Reverse Engineering SharePoint WSP Packages Disclaimer : Please note that this article is scoped to internally developed WSP Packages only. The terms and conditions that you accept...
on
16 Aug 2013
Page 5 of 9 (205 items)
«
3
4
5
6
7
»
Can't find it? Write it!
Post an Article