This site uses cookies for analytics, personalized content and ads. By continuing to browse this site, you agree to this use.
Learn more
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
Tag Cloud
.net
Active Directory
AD DS
ASP.NET
azure
BizTalk
BizTalk Server
C#
C# .NET
cloud
EAA
Ed Price
Edward van Biljon
en-US
es-ES
Excel
Exchange
Exchange 2010
Exchange 2013
Exchange Server 2013
fa-IR
Fernando Lugao Veltem
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
marcelo strippoli
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 Portuguese
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
windows server 2012 r2
Wiki
>
All Tags
>
SQL Server
Tagged Content List
Wiki Page:
SQL Server 2008+: Group By with Wings
Ed Price - MSFT
This article includes information about a feature from SQL Server 2008 (and up) - Group by extensions. Table of Contents Problem Definition Solution Grouping Sets Cube: Conclusion References Problem Definition In SQL Server 2005 and earlier versions, we would have faced the situation...
on
7 Sep 2013
Wiki Page:
SQL Server: Transaction Log is Full
Naomi N
Table of Contents Overview Recovery Model Additional Resources Reference See Also Overview If the transaction log is full, users cannot update the databases and you cannot fully restore the database in the event of a system failure. You must clear the transaction log either by performing a...
on
3 Sep 2013
Wiki Page:
How to find the SQL Server Running Jobs Time Elapsed status
Maheshkumar S Tiwari
There are many situations wherein we want to know the time for which a particular or all the jobs are executing. We can find the execution status from the Job Activity Monitor but we don't get the duration of execution in it. we can use the below query to find out the same. The Query fetches the...
on
3 Sep 2013
Wiki Page:
Recycle SQL Server ERROR log depend on log file size
Maheshkumar S Tiwari
Recently I have seen a question on MSDN forum site, where the asker want to know how can he recycle SQL Server ERROR log depend on its size. As we all there is no way we can do this using any SQL command. So I decided to write PowerShell Script to do the job [System.Reflection.Assembly]::LoadWithPartialName...
on
3 Sep 2013
Wiki Page:
Tips for DBA: Scripting jobs using Powershell (separate files)
Naomi N
Вашему вниманию предлагается сильно упрощённый пример сценария Powershell, который предназначен для скриптования заданий SQL Server в отдельные файлы. Тут используется папка для файлов C:\TEMP, которая должна быть предварительно создана и, желательно, пуста. Поскольку имена...
on
1 Sep 2013
Wiki Page:
Delete duplicate record from Microsoft Sql Server
Maheshkumar S Tiwari
Most important things is you have one identity column . Use this query for delete all duplicate record. you can use group by on multiple column . Query : delete from (TableName) where ID NOT IN(Select MAX(ID) from (TableName) group by ColumnName,ColumnName,ColumnName,....more columnname)...
on
31 Aug 2013
Wiki Page:
Руководство по доставке SQL Azure (ru-RU)
Richard Mueller
Это руководство содержит пример для разработчиков, начинающих проект, который, возможно, будет использовать SQL Azure. Руководство предназначено для опытных архитекторов и разработчиков, имеющих опыт работы с SQL Server и, возможно, с .NET Framework. Подразумевается хорошее...
on
30 Aug 2013
Wiki Page:
Generar un Script de la base de datos en SQL Server con las tablas y la data (es-ES)
Victor Altamirano
En este screencast, aprenderemos a generar el script de una base de datos en SQL Server generando las tablas, procedimientos almacenados y los registros o información que tenga la base de datos Gracias :D
on
23 Aug 2013
Wiki Page:
Instaladores de SQL Server Express (es-ES)
LeoPonti
Al momento de descargar SQL Express contamos con diferentes instaladores cada uno con una función especial, para elegir correctamente cual es el mas optimo de acuerdo a nuestra necesidad aquí explicamos cada uno de ellos. Microsoft SQL Server Management Studio Express (SQLEXPR_x64_ESN.exe...
on
22 Aug 2013
Wiki Page:
INSTRUCCION RANK y DENSE_RANK (es-ES)
LeoPonti
Imagina que contamos con un grupo de alumnos de los cuales tenemos las notas obtenidas en las materias de Matemática, Humanidades, Derecho y queremos saber en base a su nota la posición obtenida del alumno en cada materia, para esto necesitaríamos clasificar las notas de mayor a menor. Otro ejemplo...
on
22 Aug 2013
Wiki Page:
Change Data Capture Known has CDC
Manjunath C Bhat
Change Data Capture popularly known as CDC is a new feature in SQL Server 2008 that records insert, update and delete activity in SQL Server tables. A good example of how this feature can be used is in performing periodic updates to a data warehouse. CDC records (or captures) DML activity on designated...
on
21 Aug 2013
Wiki Page:
T-SQL: Динамическое транспонирование нескольких колонок
Naomi N
Эта статья является авторским переводом моей статьи T-SQL: Dynamic Pivot on Multiple Columns Проблема транспонирования строк в колонки является одной из наиболее часто обсуждаемых проблем в MSDN Transact-SQL forum . Нередко проблема усложняется необходимостью...
on
19 Aug 2013
Wiki Page:
Presentation Transcript: SQL Server 2012 AlwaysOn Availability Group Connectivity
Richard Mueller
SQL11UPD01-TSCRIPT-03 This wiki is a transcript of a previously recorded video. Related content assets: Presentation: SQL Server 2012 AlwaysOn Availability Group Connectivity ( SQL11UPD01-DECK-02 ) Video: SQL Server 2012 AlwaysOn Availability Group Connectivity ( SQL11UPD01-REC-03 ) ...
on
13 Aug 2013
Page 106 of 123 (3,075 items)
«
104
105
106
107
108
»