SQL Server Central is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
Search:  
 
 
<< Previous headlines |
SQLServerCentral.com Headlines from 2008/04/29 to 2008/05/06

SQL Server source code analysis and management adds database security

SQL Server source code analysis and management add database security by debugging and testing SQL applications. Learn about SQL source code analysis.  Read more...
Rating:  Rate this |  Briefcase | 1,162 reads

Simplify SQL Server 2005 queries with a Dates table

Learn what a Dates table is and how to create one, and then try it out for yourself  Read more...
By Additional Articles 2008/05/06 | Source: Builder.com | Category: SQL Server 2005
Rating:  Rate this |  Briefcase | 4,643 reads

Using Reporting Services to Search the SQL Server Log

A unique solution that allows Reporting Services to easily publish information from your SQL Server Error logs.  Read more...
By Carolyn Richardson 2008/05/06 | Source: SQLServerCentral.com | Category: Reporting Services
Rating: |  Discuss |  Briefcase | 4,268 reads

SQL 2005 vs. SQL 2008 Part 1 - (Backup File Sizes & Times)

SQL 2008 has some key improvements over SQL 2005. This article deals with backup compression and faster backups in SQL 2008  Read more...
By Kevin van der Merwe 2008/05/05 | Source: SQLServerCentral.com | Category: Compression
Rating: |  Discuss |  Briefcase | 7,458 reads

SQL Server 2008 (Katmai) Reporting Services Performance: Two Steps Forward, One Step Back?

In this article, David Leibowitz compares the performance of the prerelease of Microsoft's SQL Server 2008 Reporting Services to SSRS 2005. While it is clear performance improvements have been made for report automation, developers might have differing opinions on the new Report Designer.  Read more...
By Additional Articles 2008/05/05 | Source: DevX | Category: Reporting Services
Rating: (not yet rated)  Rate this |  Briefcase | 3,296 reads

SqlCredit – Part 15: The Cost of Distribution

Part 15 of this series examines what cost is paid when tables are separated into multiple databases on the same server.  Read more...
By Additional Articles 2008/05/05 | Source: Database Journal | Category: Database Design
Rating:  Rate this |  Briefcase | 1,531 reads

Introduction to MDX Scripting in Microsoft SQL Server 2005

This document describes how Multidimensional Expressions (MDX) for Microsoft SQL Server 2005 can be applied to common business problems. This document assumes some familiarity with MDX.  Read more...
By Additional Articles 2008/05/02 | Source: TechNet | Category: MDX
Rating: (not yet rated)  Rate this |  Briefcase | 1,870 reads

Is XML the Answer?

New Author! Don Peterson writes his first article for us and explores why he considers XML to be...bad! There are some interesting points made here and if you've haven't thought about what XML means to you as a DBA, it's a subject worth spending some time on.   Read more...
By Don Peterson 2008/05/02 (first posted: 2003/10/07) | Source: SQLServerCentral.com | Category: Miscellaneous
Rating: |  Discuss |  Briefcase | 63,188 reads

Managing SQL Analysis Service Objects with SSIS and AMO

You can manage SSAS objects using AMO and SSIS which enables you to have detailed control of SSAS Administrative tasks.  Read more...
By ANDREW.MUYOBO 2008/05/02 | Source: SQLServerCentral.com | Category: SSIS
Rating: |  Discuss |  Briefcase | 1,475 reads

Using Indexes to Bypass Locks

One of the issues you'll face with SQL Server is blocking which is caused by other processes that are holding locks on objects. Until the locks are removed on an object the next process will wait before proceeding. This is a common process that runs within SQL Server to ensure data integrity, but depending on how transactions are run this can cause some issues. Are there ways to get around blocking by using different indexes to cover the queries that may be running?  Read more...
Rating:  Rate this |  Briefcase | 1,897 reads

The Top Ten Reasons to Attend the PASS Summit 2008

The PASS Summit is being held in Seattle on November 18-21, 2008. Read about a few of the reasons that you might want to ask your boss if you can go.  Read more...
By Steve Jones 2008/05/01 | Source: SQLServerCentral.com | Category: SQLServerCentral.com
Rating: (not yet rated) |  Discuss |  Briefcase | 1,456 reads

SQL Server 2008’s Management Data Warehouse

This article looks at the new Management Data Warehouse (MDW) that is incorporated into SQL Server 2008. This warehouse is performance analysis and capacity planning tool for DBAs. This article will discuss the basic architecture of the MDW and how to set it up using a wizard.  Read more...
Rating: (not yet rated)  Rate this |  Briefcase | 1,200 reads

Configure SQL Server Service Broker for Sending Stored Procedures

Set up SQL Server 2005 Service Broker for a messaging platform to queue data of stored procedures and functions. Configure Service Broker with these steps.  Read more...
By Additional Articles 2008/05/01 | Source: SearchSQLServer | Category: Service Broker
Rating:  Rate this |  Briefcase | 1,338 reads

Custom Log Shipping

This article presents a way to implement a simple database synchronization solution similar to log shipping using Database Maintenance Plans and T-SQL.  Read more...
By Girish Bhat 2008/05/01 | Source: SQLServerCentral.com | Category: Log Shipping
Rating: |  Discuss |  Briefcase | 2,324 reads

SQL Server 2005 Express Edition - Part 21 - Using Replication Management Objects

Recent installments of this series have demonstrated SQL Server 2005 Express Edition's replication characteristics by taking advantage of replication-specific executables and T-SQL code combined with Windows Synchronization Manager and Web Synchronization technologies. This article explores another method of reaching the same goal, which involves Replication Management Objects (RMO).  Read more...
By Additional Articles 2008/04/30 | Source: Database Journal | Category: Replication
Rating: (not yet rated)  Rate this |  Briefcase | 961 reads

A Function Gotcha with the Use of an Asterisk

This article describes and demonstrates the problem of using asterisk to select all fields from a table within a table function.  Read more...
By Stephen Lasham 2008/04/30 | Source: SQLServerCentral.com | Category: UDF
Rating: |  Discuss |  Briefcase | 7,608 reads

Custom job categories to organize your SQL Agent jobs

Sometimes the tools that Microsoft provides us with do not give us complete control over the organization of our environment. Such is the case with organizing SQL Agent Jobs. We are able to organize and sort jobs by a variety of factors:  Read more...
By Additional Articles 2008/04/30 | Source: MSSQLTips.com | Category: SQLAgent
Rating: (not yet rated)  Rate this |  Briefcase | 1,304 reads

Same Report but Different Methods in SQL Server Reporting Services

In Reporting Services in SQL Server 2005 there are several ways of achieving the same result. This article introduces how we can create the same report using several different methods.  Read more...
Rating: (not yet rated)  Rate this |  Briefcase | 1,797 reads

Advanced Matrix Reporting Techniques

Learn how to build robust Matrix-style reports in SQL Server Reporting Services. These advanced reporting techniques make it easier to build a fully-functional report.  Read more...
By Additional Articles 2008/04/29 | Source: DevX | Category: Reporting Services
Rating: (not yet rated)  Rate this |  Briefcase | 2,877 reads

Usage of Functions in Stored Procedures

Building an application with modular programming not only speeds development, but can make for a more stable application. New author Sreeju Jumar brings us a look at how you can further modularize your stored procedures.  Read more...
By Sreeju 2008/04/29 | Source: SQLServerCentral.com | Category: Stored Procedures
Rating: |  Discuss |  Briefcase | 8,950 reads