Log in
::
Register
::
Not logged in
Search:
Home
Articles
Editorials
Forums
Scripts
Blogs
QotD
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Advertise
Write for us
<< Previous headlines
|
Later headlines >>
SQLServerCentral.com Headlines from 2008/03/11 to 2008/03/18
Common Table Expressions
They are new to SQL Server in 2005, but they are not necessarily in common use for many people. New author Kirk Kuykendall brings us a basic look on what a CTE is and how you can use it.
Read more...
By
Kirk Kuykendall
2008/03/18
|
Source:
SQLServerCentral.com
|
Category:
CTE
Rating:
|
Discuss
|
Briefcase
|
8,101 reads
The curse and blessings of dynamic SQL
How you use dynamic SQL, when you should - and when you should not.
Read more...
By
Additional Articles
2008/03/18
|
Source:
Erland Sommarskog's SQL Page
|
Category:
Dynamic SQL
Rating:
Rate this
|
Briefcase
|
4,766 reads
Screencast: Tracking memory with PerfMon counters
Learn how to use SQL Server PerfMon counters to track Windows memory. SQL Server MVP Kevin Kline explains the maximum numbers to watch for when using PerfMon memory counters.
Read more...
By
Additional Articles
2008/03/18
|
Source:
SearchSQLServer
|
Category:
Performance Monitoring
Rating:
(not yet rated)
Rate this
|
Briefcase
|
1,652 reads
Data Compression in SQL Server 2005 (Believe it !!)
That’s correct. SQL Server 2005 SP2 supports data compression using Vardecimal data type.
Read more...
By
Additional Articles
2008/03/18
|
Source:
SQL Community
|
Category:
SQL Server 2005
Rating:
Rate this
|
Briefcase
|
2,461 reads
SQL Server 2005 Express Edition - Part 17 - Merge Web Synchronization
In this article, we will explore another variation of this mechanism, called Web Synchronization, with SQL Server 2005 Express Edition instances operating as merge replication subscribers connecting to a publisher via HTTPS protocol.
Read more...
By
Additional Articles
2008/03/17
|
Source:
Database Journal
|
Category:
SQL Server 2005 Express
Rating:
(not yet rated)
Rate this
|
Briefcase
|
314 reads
SQL Server DBA Fights a Demon
An interesting tale of David Bird's fight with tempdb.
Read more...
By
David Bird
2008/03/17
|
Source:
SQLServerCentral.com
|
Category:
Administration
Rating:
|
Discuss
|
Briefcase
|
5,807 reads
Fuzzy Lookup and Fuzzy Grouping in SQL Server Integration Services 2005
This paper describes the Fuzzy Lookup and Fuzzy Grouping transformations that are part of SQL Server 2005 Integration Services (SSIS). These SSIS transformations are useful for improving the data quality of existing data as well as new data that is being loaded into your database.
Read more...
By
Additional Articles
2008/03/14
|
Source:
TechNet
|
Category:
Integration Services
Rating:
Rate this
|
Briefcase
|
1,502 reads
SQL Server 2005 Best Practices
With SQL Server 2005 recently released, one of the things that many people are looking for are some guidelines for working with the new product. New author Nanda Kishore brings us a list of best practices that should give you a start.
Read more...
By
Nanda Kishore
2008/03/14 (first posted: 2006/01/04)
|
Source:
SQLServerCentral.com
|
Category:
Administration
Rating:
|
Discuss
|
Briefcase
|
96,357 reads
Internals of DBM Failover / Role Switching
Understanding different types of failovers/Role Switching and How do they internally work in database mirroring.
Read more...
By
Additional Articles
2008/03/14
|
Source:
SQL Community
|
Category:
Database Mirroring
Rating:
Rate this
|
Briefcase
|
756 reads
More RBAR and "Tuning" UPDATEs
SQL Server expert Jeff Moden discusses a common problem seen in many update statements.
Read more...
By
Jeff Moden
2008/03/14
|
Source:
SQLServerCentral.com
|
Category:
Performance Tuning
Rating:
|
Discuss
|
Briefcase
|
6,109 reads
Employ Metadata to Enhance Search Filters
Discover how to use metadata for pooling information already resident in an application to create a flexible search interface that reduces complexity and increases users' productivity.
Read more...
By
Additional Articles
2008/03/13
|
Source:
DevX
|
Category:
Search
Rating:
(not yet rated)
Rate this
|
Briefcase
|
1,306 reads
Monitoring Stored Procedure Performance with sys.dm_exec_cached_plans
This article will show you how to use the sys.dm_exec_cached_plans DMV to monitor the performance of stored procedures
Read more...
By
Additional Articles
2008/03/13
|
Source:
SQL Server Performance
|
Category:
Performance Tuning
Rating:
(not yet rated)
Rate this
|
Briefcase
|
2,654 reads
Linking to the Previous Row
One common problem in querying is to reference the previous row in a data set as part of a calculation. David McKinney brings us an interesting solution using SQL Server 2005.
Read more...
By
David McKinney
2008/03/13
|
Source:
SQLServerCentral.com
|
Category:
T-SQL
Rating:
|
Discuss
|
Briefcase
|
12,173 reads
Data Generator Source Adapter
The Data Generator Source is now available for SQL Server 2005 and SQL Server 2008. This component needs little explanation. It generates random integer (DT_I4) and string (DT_WSTR) data and places them in the pipeline.
Read more...
By
Additional Articles
2008/03/12
|
Source:
sqlis.com
|
Category:
Integration Services
Rating:
(not yet rated)
Rate this
|
Briefcase
|
1,022 reads
XML Workshop XV - Accessing FOR XML results with ADO.NET
The next installment of Jacob Sebastian's great series on XML looks at how a .NET application might consume XML data returned from SQL Server.
Read more...
By
Jacob Sebastian
2008/03/12
|
Source:
SQLServerCentral.com
|
Category:
XML
Rating:
|
Discuss
|
Briefcase
|
2,848 reads
Implementing Table Inheritance in SQL Server
When designing a database, we sometimes come across situations where there are multiple types of entities that we are modeling, but we'd like them to all have certain attributes or relations in common. Using "sub-type" tables is a simple way to implement table inheritance in SQL Server.
Read more...
By
Additional Articles
2008/03/12
|
Source:
SQLTeam.com
|
Category:
Database Design
Rating:
(not yet rated)
Rate this
|
Briefcase
|
3,023 reads
Statistics and Indexes
When is it okay to let SQL Server to make a statistic for columns in your queries, and when should you take those statistics and make an index out of them? What I do is to test all of my procs, and if they generate system statistics (_WA_SYS%), then I add an index to the table for the column in the statistic. But is this a good practice?
Read more...
By
Additional Articles
2008/03/11
|
Source:
SQL Community
|
Category:
Indexing
Rating:
Rate this
|
Briefcase
|
2,307 reads
Arrays and Lists in SQL Server
Several methods on how to pass an array of values from a client to SQL Server, and performance data about the methods.
Read more...
By
Additional Articles
2008/03/11
|
Source:
Erland Sommarskog's SQL Page
|
Category:
T-SQL
Rating:
Rate this
|
Briefcase
|
3,758 reads
Schema Comparison with Visual Studio Team Edition for Database Professionals
In this article Dinesh Priyankara describes how schema comparison can be performed using Visual Studio Team Edition for Database Professionals.
Read more...
By
Additional Articles
2008/03/11
|
Source:
SQL Server Performance
|
Category:
VSTS
Rating:
(not yet rated)
Rate this
|
Briefcase
|
1,135 reads
Custom Report Item - Part I
This article will give a basic introduction of Custom Report Item in SQL Server 2005 Reporting Services.
Read more...
By
Vasant Raj
2008/03/11
|
Source:
SQLServerCentral.com
|
Category:
Reporting Services
Rating:
|
Discuss
|
Briefcase
|
3,985 reads
Copyright © 2002-2008 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use