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
>
SQL Server
Tagged Content List
Wiki Page:
Who are Data Scientists and What they Do
Burak Uğur
Now-a-days the buzz word is Data Analytics. Customers are savvy and want to know how we can help analyze their data. I feel Data Analytics should be part of every medium to large Dynamics 365 project. This is first of many blogs I will start writing for Data Analytics. ...
on
10 Dec 2017
Wiki Page:
Como particionar una tabla existente (es-ES)
Richard Mueller
Una de las tareas más deseadas hoy en día por muchos administradores de bases de datos, es el particionar sus tablas, una de las grandes ventajas del particionamiento de tablas en SQL Server, es la capacidad de distribuir la carga física en múltiples discos duros, por ende, existen más partes mecánicas...
on
8 Dec 2017
Wiki Page:
Creating new SQL Database and Table on Azure
Ken Cenerelli
Table of Contents Introduction Prerequisites Create New SQL Database on Azure: Creating SQL Server on Azure Connecting Azure SQL Serve from Local SQL Server Setting Azure SQL Server firewall rule Creating Tables for Azure SQL Database Introduction In this article, we will see in detail...
on
28 Nov 2017
Wiki Page:
SQL Server: Job Activity Monitoring by SQL Script
MuhammadUsmanKhan
Issue: Admin needs to send jobs status report to managers by email after every specific interval of time same as SQL Server builtin job activity console. Solution: Below is the store procedure that gets status of all jobs if Job_Id is null or get specific if sends Job_Id. USE [master...
on
21 Nov 2017
Wiki Page:
SSRS: How to Repeat Headers on Each Page
aduguid
Table of Contents Solution Reference See Also Solution This article shows an example of how to repeat headers on each page of SSRS report. Consider this code block is my dataset query from AdventureWorks database: SELECT TOP 100 BusinessEntityID,JobTitle,Gender FROM [HumanResources...
on
16 Nov 2017
Wiki Page:
Get data from SQL server using VSTO into Excel
aduguid
Table of Contents Overview Background Add-in code User Control code Complete UserControl code References Overview Sometimes it is necessary to use Excel automation in order to grab some information from a specific data source and put it in Excel directly. The objective is to get more control about...
on
16 Nov 2017
Wiki Page:
SSMS: Generate Scripts for Stored Procedures Without Dynamic SQL
Somdip Dey - MSP Alumnus
Table of Contents Problem Definition Steps To Reproduce the Problem Reason Resolution Summary See Also Problem Definition Recently, there was a thread in the forums asking whether there is any way to avoid the dynamic SQL in the generated code while scripting out the stored procedures from SQL...
on
15 Nov 2017
Wiki Page:
SQL Server Intergration Services (SSIS) tips from a stubborn IT Professional
Hans Struijk (SIGYLON)
Stubborn? I just want to keep my (customers) server computers as clean as possible! In this blog post I share my notes and experiences from the field. Normal procedure for developing SSIS packages is to setup your SQL Server machine, additionally install SQL Server Integration Services and...
on
11 Nov 2017
Wiki Page:
Thinking in Sets
Ken Cenerelli
Table of Contents See Also Other Languages Thinking in Sets is a great book by Joe Celko . This book tells us about concepts, how we need to think when we are working with databases. Columns are not fields, rows are not records and tables are not files, hence SQL is declarative, not procedural...
on
11 Nov 2017
Wiki Page:
Using Custom Code in SSRS Reports for Advanced String Operations
Mohamed El-Qassas MVP
Table of Contents Overview String Manipulation Using Custom Code Concatenating Data Column Values Into a Single String Scenario Solution Counting Occurrences in a Concatenated String Scenario Solution Sorting Elements of a Concatenated String Scenario Solution See Also Overview SQL Services Reporting...
on
9 Nov 2017
Wiki Page:
Concatenating Data Column Values Into a Single String
Mohamed El-Qassas MVP
The Request My dataset returns multiple rows of data for a given grouping with only one field (we will call it Grade) varying across those rows. I want my report to display a single line for a group with all of the values of Grade for that group displayed as a concatenated string in a single cell...
on
9 Nov 2017
Wiki Page:
Adding Links in SSRS Reports
Mohamed El-Qassas MVP
The Request Is it possible to have a field which contains a link to the build results? The Solution Yes. Links can be done in 2 ways (that I know of) in SSRS. The most common is to set the Action property of a control (textbox, image, etc.). If you right-click the control and open its...
on
9 Nov 2017
Wiki Page:
SQL Server Resource Re-Balancing in Failover Cluster
Mohamed El-Qassas MVP
Table of Contents See Also Other Languages 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...
on
8 Nov 2017
Wiki Page:
Finding Floor and Fraction of the Decimal Number
Mohamed El-Qassas MVP
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
8 Nov 2017
Wiki Page:
RegEx Class
Mohamed El-Qassas MVP
Slightly boring class for doing some regex... I've stored my notes on my pWord program which I also use for tracking passwords and it will always be open source. www.sourceforge.net/projects/pword . Please feel free to ignore my IE10 formatting woes using the WYSIWYG!. using System;...
on
8 Nov 2017
Wiki Page:
SQL Server: Collation Explained
Perry Saar
Table of Contents Introduction COLLATION Introduction Before getting deep into the topic let's show you an existing feature of SQL Server. A simple table: A stock table just focusing on the item names. The item names are both case sensitive and case insensitive. Now we want to retrieve...
on
31 Oct 2017
Wiki Page:
Defragmentation of an index (Reorganize)
Ousama EL HOR
To understand how SQL Server defragments an index, consider a simplified example of pages after many insertions, updates, and deletions, as shown in the following figure : Page numbering represents the logical sequence of pages. However, the physical sequence as shown in the figure from...
on
31 Oct 2017
Wiki Page:
Custom MDX Query for Excel Filters
Ken Cenerelli
More Ooten we may want to write custom Filters for Cube Data retrieved through Excel. You can achieve it through VBA or simply by adding few iterations on Excel. We can Achieve Custom calculations by simply adding OLAP PIVOT TABLE Extension to EXCEL . A common scenario would be building a 13-week...
on
13 Oct 2017
Wiki Page:
Portal Transact-SQL - (pt-BR)
Richard Mueller
Transact-SQL (T-SQL) é uma linguagem de consulta SQL Server. Este artigo lista os artigos do TechNet conhecidos que são dedicados aos vários aspectos da linguagem Transact-SQL . Tabela de Conteúdo SQL Server em Geral PIVOT CLR Datas Relacionadas Operador...
on
10 Oct 2017
Wiki Page:
SSRS: How to setup the folder security roles in SQL Server Reporting Services
Kapil.Kumawat
In SSRS, new roles and adjustments to existing roles must be performed in SQL Server Management studio, SSMS. After opening up SSMS, click on "Connect" and select "Reporting Services…" Enter your Server Name and login information and then click Connect. After...
on
3 Oct 2017
Wiki Page:
SQL Server 2016: T-SQL Enhancements
Ken Cenerelli
Table of Contents Topics 1. DROP IF EXISTS 2. STRING_SPLIT 3. SYSTEM_TIME 4. JSON There are several SQL Server 2016 enhancements which are worth discussing. Topics 1. DROP IF EXISTS In old versions of SQL Server we had to check if the table or column exists before dropping...
on
29 Sep 2017
Wiki Page:
PowerPivot para SharePoint – existentes Farm instalação (pt-BR)
Kapil.Kumawat
PowerPivot para SharePoint – existentes Farm instalação SQL Artigo técnico do servidor Autores: Leon Cyril, Dave Wickert, Denny Lee Revisores técnicos: Lee Graber, Jennifer Chu, Kathy MacDonald, Artur Pop, Heidi Steen Publicado em: setembro de 2010 Aplica-se a: SQL Server 2008...
on
27 Sep 2017
Wiki Page:
Aplicativos de camada de dados no SQL Server 2008 R2 (pt-BR)
Edward van Biljon
SQL Artigo técnico do servidor Aplicativos de camada de dados no SQL Server 2008 R2 Escritor: Alan Brewer, Roger Doherty, Prashant Choudhari, Shireesh Thota, Charlie Carson, Omri Bāḩat Revisor Técnico: Jen Witsoe, Muralidhar S, Clifford Dibble, Sanjay Nagamangalam Publicado em: fevereiro...
on
26 Sep 2017
Wiki Page:
Criação de View's e suas Opções no SQL Server (pt-BR)
Edward van Biljon
Table of Contents Introdução Opções de Criação Porque Usar? Introdução A View nada mais é do que visualizações que são criadas para encapsular o código e a complexidade das consultas, no BOL (Books Online) temos a seguinte definição: “Creates a virtual table that represents the data...
on
26 Sep 2017
Wiki Page:
[Powershell] Interrogazione database tramite .NET e cmdlet (it-IT)
Richard Mueller
Table of Contents Introduzione Preparazione dell'ambiente Accenni su Powershell Pipelining Help in linea Interrogare SQL Server tramite Powershell e .NET Interrogare SQL Server tramite Powershell e cmdlet Codice di esempio Bibliografia Introduzione In questo breve articolo vedremo un utilizzo...
on
23 Sep 2017
Page 19 of 58 (1,447 items)
«
17
18
19
20
21
»
Can't find it? Write it!
Post an Article