Sign in
Nice things inside SQL Server, System Center Configuration Manager
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Auditing on SELECT
backup/restore
capture changes
CDW
copy database
Data Compression
DatabaseMail dbmail sqlmail
denali ssms
Grouping Sets
insert snippet
key board manager
Manage Compression
move database
multi monitor support
New features
new features in SSMS
Page Compression
Row Compression
sequences
speedup insertion
SQL Change tracking
SQL Server 2008
SQL Server 2008 SP2
unused indexes
zooming
Archive
Archives
March 2013
(1)
May 2011
(1)
April 2011
(1)
August 2010
(1)
July 2010
(2)
March 2010
(3)
February 2010
(1)
September 2009
(1)
April 2009
(1)
January 2009
(2)
December 2008
(3)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Nice things inside SQL Server, System Center Configuration Manager
Creation of App-V Virtual Environments in SCCM 2012 SP1
Posted
2 months ago
by
SREEKAR M [MSFT]
0
Comments
Virtual Environment concept makes the virtual applications on the client to share the same file system and registry on client settings and share data among them. These Virtual Environments gets created on the clients whenever the virtual applications...
Nice things inside SQL Server, System Center Configuration Manager
New Features in SSMS Denali
Posted
over 2 years ago
by
SREEKAR M [MSFT]
3
Comments
1. Surround With Feature This feature allows us to select a set of T-SQL statements and enclose them into Transactional, Conditional, & Looping etc. constructs like Begin-End, If-Else, & While etc. Steps: i) Open SSMS and open Query...
Nice things inside SQL Server, System Center Configuration Manager
Sequences in SQL Server
Posted
over 2 years ago
by
SREEKAR M [MSFT]
0
Comments
Customers have been asking for sequences for a very long time and now finally it is included with SQL Server Denali CTP 1. You don't have to do workaround of sharing identity table across all tables now. Creating a Sequence: CREATE SEQUENCE counter...
Nice things inside SQL Server, System Center Configuration Manager
How to get Processors Count in SQL Server ?
Posted
over 3 years ago
by
SREEKAR M [MSFT]
0
Comments
SQL Server 2000: CREATETABLE#TempTable ( [Index]VARCHAR(MAX), NameVARCHAR(MAX), Internal_ValueVARCHAR(MAX), Character_ValueVARCHAR(MAX) ) INSERTINTO#TempTable ...
Nice things inside SQL Server, System Center Configuration Manager
SQL Server 2008 SP2 is released
Posted
over 3 years ago
by
SREEKAR M [MSFT]
0
Comments
SQL Server 2008 SP2 contains the following features: · All hotfixes released up to Microsoft SQL Server 2008 SP1 CU 8. · Updates to the Reporting Services Add-in for Microsoft SharePoint Products 2007 allowing customer to connect to...
Nice things inside SQL Server, System Center Configuration Manager
Setup Database Mail in SQL Server 2008
Posted
over 3 years ago
by
SREEKAR M [MSFT]
0
Comments
i ) Open SQL Server Management Studio->View Menu-> Select Template Explorer-> Expand Database Mail in the Template Explorer->Select the 'Simple Database Mail Configuration' template it opens a SQL Server Template for database mail configuration...
Nice things inside SQL Server, System Center Configuration Manager
SQL Express is not installed properly. Steps to be taken before reinstall again
Posted
over 3 years ago
by
SREEKAR M [MSFT]
2
Comments
To verify the SQL Server Express instance installed, you could use Microsoft SQL Server 2008 Setup Discovery Report. For more information, please see http://blogs.msdn.com/petersad/archive/2009/11/13/sql-server-2008-discovery-report.aspx If the Setup...
Nice things inside SQL Server, System Center Configuration Manager
How to improve performance during Insertion
Posted
over 3 years ago
by
SREEKAR M [MSFT]
1
Comments
Here are the following guidelines to increase performance during INSERT operation: 1. Inserting data into a table with a single clustered index is slightly better than inserting the same data into the same table with a corresponding nonclustered index...
Nice things inside SQL Server, System Center Configuration Manager
How to find leastly used non-clustered indexes in SQL Server ?
Posted
over 3 years ago
by
SREEKAR M [MSFT]
0
Comments
Script: SELECT objectname = OBJECT_NAME ( s . OBJECT_ID ) , indexname = i . name , i . index_id , reads = user_seeks + user_scans + user_lookups , writes = user_updates , p . rows FROM sys . dm_db_index_usage_stats s JOIN sys ...
Nice things inside SQL Server, System Center Configuration Manager
SSMS for SQL Azure
Posted
over 3 years ago
by
SREEKAR M [MSFT]
1
Comments
Download links for SSMS in 32bit and 64bit flavors. The full download of SQL Server 2008 R2 November CTP can be found here .
Nice things inside SQL Server, System Center Configuration Manager
Move a database from one server to another server in SQL Server 2008
Posted
over 4 years ago
by
SREEKAR M [MSFT]
9
Comments
There are many ways to move/copy a database from one server to another server using SQL Server Tools. i) Detach the database from the old server and attach it in the new server. This is purely offline operation and it moves the database instead of copying...
Nice things inside SQL Server, System Center Configuration Manager
How to un install SQL Server 2005
Posted
over 4 years ago
by
SREEKAR M [MSFT]
1
Comments
You can use these docs for uninstalling your 2005 sql instance based on your requirement. Uninstalling an instance of SQL Server 2005 manually http://support.microsoft.com/?kbid=909967 Windows Installer Clean-Up Tool http://download.microsoft.com...
Nice things inside SQL Server, System Center Configuration Manager
Sparse Columns in SQL Server 2008
Posted
over 4 years ago
by
SREEKAR M [MSFT]
1
Comments
Introduction In the real world customer scenarios, the customer data can be of heterogeneous and semi structured stored inside SQL Sever tables. In such tables, the data can have different properties applying to different set of subsets of rows. In...
Nice things inside SQL Server, System Center Configuration Manager
Auditing SELECT statements in SQL Server 2008
Posted
over 4 years ago
by
SREEKAR M [MSFT]
6
Comments
Prior to SQL Server 2008, the only way to audit the SELECT statements is to use SQL Server Profiler or server side trace. Now using SQL Server 2008 Enterprise, auditing feature is used to audit on SELECT statements. We cannot use triggers as triggers...
Nice things inside SQL Server, System Center Configuration Manager
Managing Data Compression in SQL Server 2008
Posted
over 5 years ago
by
SREEKAR M [MSFT]
1
Comments
Data Compression in SQL Server 2008: The size of the databases are increased drastically due to - Movement of data from flat files into the databases due to east of management, accessibility, analysis and reporting. - Significant amount of data...
Nice things inside SQL Server, System Center Configuration Manager
Grouping Sets in SQL Server 2008
Posted
over 5 years ago
by
SREEKAR M [MSFT]
3
Comments
Introduction: This post describes a new feature in SQL Server 2008 – Grouping Sets The result set returned by GROUPING SET is the union of the aggregates based on the columns specified in each set in the Grouping set. Whenever an aggregate function...
Nice things inside SQL Server, System Center Configuration Manager
SQL Change Tracking in SQL Server 2008
Posted
over 5 years ago
by
SREEKAR M [MSFT]
3
Comments
What is Change Tracking? Change tracking is a new feature in SQL Server 2008 that allows applications to query for information about the changes that have been made to user tables since a previous point in time. Change tracking is intended to be used...
Page 1 of 1 (17 items)