SQL Server Central is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
Search:  
 
 

Content with tag System Development Life Cycle Rss

Refine your search with one of the following additional tags (with number of items):

Strategies (58)     .Net (2)     Best and Worst Practices (1)     Secure Programming (1)    
Miscellaneous (6)     Administering (2)     Best Practices (1)     Security (1)    
SQL Server 7, 2000 (5)     Availability (2)     Career (1)     SQL Server 2005 (1)    
T-SQL (5)     Installation (2)     DTS (1)     Stored Procedures (1)    
Programming (4)     Testing (2)     Error Handling (1)     Video (1)    
Advanced Querying (3)     Visual Basic 6 (2)     KPIs (1)     VSTS (1)    
Database Design (3)     add (1)     LINQ (1)     XML (1)    
Naming Standards (3)     Basics (1)     Scalability (1)    
   Items 1 to 20 of 74    Next 20 >>
 

Tracking Database Schema Changes with DbPro

Tracking changes to your development environments is important to ensure that your deployments to production go smoothly. Jacob Sebastion brings us a look at how well the Visual Studio Team System Edition for Database Professionals can help you with this task.   Read more...
Rating: |  Discuss |  Briefcase | 4,489 reads

The Lighter Side - Life is like an analogy

Longtime SQL Server author and expert David Poole takes a break from SQL Server to bring us a few life lessons for software development.  Read more...
By David Poole 2008/05/14 | Source: SQLServerCentral.com | Category: Career
Rating: (not yet rated) |  Discuss |  Briefcase

Scalability and Goal Testing for Developers

Often developers are tasked with not only developing functional code, but also with ensuring that the code they develop scales well and performs in the application environment.  Read more...
By Additional Articles 2008/05/09 | Source: DevX | Category: Scalability
Rating: (not yet rated)  Rate this |  Briefcase | 1,086 reads

Testing SQL Stored Procedures Using LINQ

The need to test a program that accesses and manipulates a back-end SQL Server® database is very common. In many such cases, the application interacts with the back-end data through the use of SQL stored procedures. In this type of scenario, you can think of the stored procedures as auxiliary methods of the system under test; and they must therefore be tested just like any other module in the system.  Read more...
Rating: (not yet rated)  Rate this |  Briefcase | 2,717 reads

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,206 reads

Connection Strategy for Multiple Database Environments

Greg Larsen looks at one way to design your database connection strategy to simplify changing application connections so you can plug-n-play databases with less administrative overhead when the need arises.  Read more...
Rating:  Rate this |  Briefcase | 2,626 reads

theSystem - Part II

Continuing on with his series on building a game in SQL Server, Steve Fibich expands the schema and objects in this article.  Read more...
Rating: |  Discuss |  Briefcase | 2,367 reads

Tame Your Software Dependencies for More Flexible Apps

Few would disagree that striving for a loosely coupled design is a bad thing. Unfortunately, the software we typically design is much more tightly coupled than we intend. How can you tell whether your design is tightly coupled?  Read more...
Rating: (not yet rated)  Rate this |  Briefcase | 1,237 reads

Implementing Error Handling with Stored Procedures

A look at how you can implement error handling in your stored procedures.  Read more...
Rating:  Rate this |  Briefcase | 3,549 reads

SQL Server Database Requirements

In our organization, I have noticed that database requirements are never included as a portion of the system requirements. The requirements always focus on the interface and we derive the database design from the interface as well as fill in some of the gaps.  Read more...
By Additional Articles 2008/03/26 | Source: MSSQLTips.com | Category: Database Design
Rating: (not yet rated)  Rate this |  Briefcase | 2,051 reads

Accidently Agile

Longtime SQL Server expert David Poole brings us a look at Agile Development and how he's been converted.  Read more...
Rating: |  Discuss |  Briefcase | 4,377 reads

Object Dependencies in SQL Server

In this video, Randy Dyess shows you how important SQL Server dependencies are and some of the faults with SQL Server 2005 with these. For example, SQL Server will allow you to create a stored procedure that points to a table that doesn't exist. He also shows you how this problem has been corrected in SQL Server 2008.   Read more...
By Additional Articles 2008/01/30 | Source: JumpStartTV | Category: SQL Server 2005
Rating:  Rate this |  Briefcase | 984 reads

Putting Unit Tests to Work

Testing is an important part of any software development process, but it's a part that many of us skimp on or ignore because of the tedious nature of testing. Longtime author Grant Fritchey has been working with Visual Studio Team Edition for Database Professionals and has written us an article on how you can make your unit testing easier.   Read more...
Rating: |  Discuss |  Briefcase | 6,600 reads

Business Analysis: A Guide to Better Business Requirements

This article presents ten business analysis guidelines, representing best practices from successful projects.  Read more...
By Additional Articles 2007/12/03 | Source: TDAN | Category: System Development Life Cycle
Rating: (not yet rated)  Rate this |  Briefcase | 1,702 reads

Custom check-in policies with VSTS

In this column, I'll dig into check-in notes and policies. You'll learn how check-in notes work and how to write your own custom policy implementations.  Read more...
By Additional Articles 2007/11/30 | Source: Microsoft MSDN | Category: VSTS
Rating: (not yet rated)  Rate this |  Briefcase | 664 reads

.NET Building Blocks: Build a Configurable Database Credential Selector

This handy control gives you everything you need to control how users input usernames, passwords, select servers, and choose connection types.   Read more...
By Additional Articles 2007/11/20 | Source: DevX | Category: Programming
Rating: (not yet rated)  Rate this |  Briefcase | 1,445 reads

Trustworthy Computing: Lessons Learned from Five Years of Building More Secure Software

This article discusses prioritizing code by age, using analysis tools and automation, looking at threats from multiple angles, and the importance of education   Read more...
Rating:  Rate this |  Briefcase | 986 reads

The Baker's Dozen: 13 Productivity Tips for Transact-SQL 2005

SQL Server 2005 offers T-SQL language features that can improve your productivity.   Read more...
By Additional Articles 2007/11/07 | Source: DevX | Category: T-SQL
Rating:  Rate this |  Briefcase | 3,869 reads

Are key performance indicators a true measure?

Some managers love to look solely at numbers when assessing performance, and key performance indicators (KPIs) are right up their street. But how useful are they in the context of software development  Read more...
By Additional Articles 2007/10/12 | Source: Builder.com | Category: Strategies
Rating: (not yet rated)  Rate this |  Briefcase | 1,653 reads

Close These Loopholes - Testing Database Modifications

In the latest in their popular series on 'Unit Testing' database development work , Alex K and Alex S give some examples of unit testing Database Modifications  Read more...
Rating:  Rate this |  Briefcase | 1,384 reads
   Items 1 to 20 of 74    Next 20 >>
 
Most popular

Connection Strategy for Multiple Database Environments

Greg Larsen looks at one way to design your database connection strategy to simplify changing application connections so you can plug-n-play databases with less administrative overhead when the need arises.  Read more...
Rating:  Rate this |  Briefcase | 2,626 reads

The Baker's Dozen: 13 Productivity Tips for Transact-SQL 2005

SQL Server 2005 offers T-SQL language features that can improve your productivity.   Read more...
By Additional Articles 2007/11/07 | Source: DevX | Category: T-SQL
Rating:  Rate this |  Briefcase | 3,869 reads

Accidently Agile

Longtime SQL Server expert David Poole brings us a look at Agile Development and how he's been converted.  Read more...
Rating: |  Discuss |  Briefcase | 4,377 reads