Click here to monitor SSC
SQLServerCentral is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
 
 
 

Content with tag database design Rss

<< Previous 20    Items 41 to 60 of 284    Next 20 >>
 

Improving Database Design and Performance Using Compression

This article attempts to show a practical scenario on improving DB design and performance through row density and compression in Microsoft SQL Server 2008.  Read more...
By Suresh Maganti 2010/11/18 | Source: SQLServerCentral.com | Category: database design
Rating: |  Discuss |   Briefcase | 8,400 reads

More Triggers

This Friday Steve Jones talks about database design and specifically asks how you prefer to design triggers.   Read more...
By Steve Jones 2010/11/12 | Source: SQLServerCentral.com | Category: editorial
Rating: (not yet rated) |  Discuss |   Briefcase | 639 reads

An Example of Test-Driven Development, Part 2

In this next installment of his series on TDD, MVP Andy Leonard continues the development of his database.  Read more...
By Andy Leonard 2010/11/05 (first published: 2009/06/16) | Source: SQLServerCentral.com | Category: database design
Rating: |  Discuss |   Briefcase | 16,040 reads

Data Distribution - Part 2

In the second part of this series, Leo Peysakhovich provides a mechanism for tracking real time data changes.  Read more...
By Leo Peysakhovich 2010/10/14 | Source: SQLServerCentral.com | Category: database design
Rating: |  Discuss |   Briefcase | 4,256 reads

The DIS-Information Principle: A Splitting Headache

You can easily re-factor bad DML code, but if a database design is wrong, you can do little to rescue the problem, even with expert queries. So what constitutes 'wrong RDBMS design? What are these errors that continually crop up? How can you recognise them and fix them? Joe embarks on a new series of articles by identifying a series of bad practices based on the habit of 'splitting' that which shouldn't be split.  Read more...
By Joe Celko 2010/09/08 | Source: SimpleTalk | Category: database design
Rating:  Rate this |   Briefcase | 2,542 reads

Stairway to Database Design Level 5: Procedures

Joe Celko tackles the subject of the Stored Procedure and its place in database design. What he writes is food for thought, even for experienced database developers.  Read more...
By Joe Celko 2010/08/25 | Source: SQLServerCentral.com | Category: stairway series
Rating: |  Discuss |   Briefcase | 9,859 reads

Stairway to Database Design Level 4: Building a Schema

Having described tables, Joe Celko explains how to make them work together as a database and touches on what Entity Relationships and Views are.  Read more...
By Joe Celko 2010/08/18 | Source: SQLServerCentral.com | Category: database design
Rating: |  Discuss |   Briefcase | 8,796 reads

Making your database changes backward compatible: Changing a relationship

Let's face it: requirements change. There is usually a lot of churn during the design and initial development stages, but changes can happen to mature applications, too. The key is to introduce those changes with the least amount of effort and risk.   Read more...
By Additional Articles 2010/08/02 | Source: SQLServerCentral.com | Category: database design
Rating: (not yet rated)  Rate this |   Briefcase | 2,416 reads

Making your SQL Server database changes backward compatible: Adding a new column

As multi-tier architectures grow over time, it is often challenging to coordinate those changes across the data, logic and presentation tiers. Unless planned and implemented carefully, an act as simple as adding a column to a table can grind all of the components of your application to a halt. While some of us have comfortable 12-hour maintenance windows every weekend, many of us are bound by service level agreements that are much more strict. So we must find ways to introduce fixes and new features with zero downtime, and without requiring every single component to be refactored at the same time.   Read more...
By Additional Articles 2010/06/23 | Source: MSSQLTips.com | Category: database design
Rating:  Rate this |   Briefcase | 2,766 reads

Bad Database Design

A guest editorial from Andy Warren looks at a bad database design he recently ran across.  Read more...
By Andy Warren 2010/06/11 | Source: SQLServerCentral.com | Category: editorial
Rating: (not yet rated) |  Discuss |   Briefcase | 817 reads

Time Bomb Design - A Longer Fuse

In a sequel to his first article on Time Bomb Design, David Poole examines the issues we find between development environments and production ones.  Read more...
By David Poole 2010/05/26 | Source: SQLServerCentral.com | Category: database design
Rating: |  Discuss |   Briefcase | 10,302 reads

Stairway to Database Design Level 3: Building Tables

There are several types of tables, each with their special requirements for rules and integrity constraints. Whatever the requirement, table-level constraints will ensure that the rules are enforced and data integrity is maintained.  Read more...
By Joe Celko 2010/05/25 | Source: SQLServerCentral.com | Category: stairway series
Rating: |  Discuss |   Briefcase | 9,876 reads

Stairway to Database Design

A series by Joe Celko that examines the craft of designing a database to meet your needs.  Read more...
By Site Owners 2013/06/20 | Source: SQLServerCentral.com | Category: stairway series
Rating: |  Discuss |   Briefcase | 7,774 reads

Stairway to Database Design Level 2: Domains, Constraints and Defaults

A clear understanding of SQL Data Types and domains is a fundamental requirement for the Database Developer, but it is not elementary. If you select the most appropriate data type, it can sidestep a variety of errors. Furthermore, if you then define the data domains as exactly as possible via constraints, you can catch a variety of those problems that would otherwise bedevil the work of the application programmer.  Read more...
By Joe Celko 2010/05/04 | Source: SQLServerCentral.com | Category: database design
Rating: |  Discuss |   Briefcase | 10,826 reads

Stairway to Database Design Level 1: Data Elements

Before you start to think about your database schema or tables, you need to consider your data: the type of data it is, the scale you use for values. It needs to be unique, precise and unambiguous. Then you need to name it in such a way that it can be generally understood. Joe Celko explains...  Read more...
By Joe Celko 2012/08/27 (first published: 2010/04/27) | Source: SQLServerCentral.com | Category: stairway series
Rating: |  Discuss |   Briefcase | 21,747 reads

Row Oriented Security Using Triggers

Handling security in an application can be a bit cumbersome. R Glen Cooper brings us a database design technique from the real world that can help you.  Read more...
By R Glen Cooper 2010/04/23 (first published: 2010/04/06) | Source: SQLServerCentral.com | Category: security
Rating: |  Discuss |   Briefcase | 6,285 reads

Using IDENTITY as a key column

By Hugo Kornelis 2010/04/20 | Category: identity property
Rating: (not yet rated) |  Discuss |   Briefcase | 4,481 reads

Row Oriented Security Using Triggers

Handling security in an application can be a bit cumbersome. R Glen Cooper brings us a database design technique from the real world that can help you.  Read more...
By R Glen Cooper 2010/04/23 (first published: 2010/04/06) | Source: SQLServerCentral.com | Category: security
Rating: |  Discuss |   Briefcase | 6,285 reads

Expanding The Scope of Bridge Tables

Timothy Claason continues talking about database design in a new article. This one talks about expanding the functionality that Bridge Tables provide in your schema.  Read more...
By Timothy Claason 2010/03/23 | Source: SQLServerCentral.com | Category: database design
Rating: |  Discuss |   Briefcase | 7,598 reads

Denormalization Strategies

In building a database, typically we want a well normalized design. However there are cases for considering options for denormalization in complex systems. Timothy Claason gives you some thoughts on the subject.  Read more...
By Timothy Claason 2010/03/15 | Source: SQLServerCentral.com | Category: denormalization
Rating: |  Discuss |   Briefcase | 10,311 reads
<< Previous 20    Items 41 to 60 of 284    Next 20 >>
 
Tags
advanced (53)    
miscellaneous (46)    
basics (29)    
strategies (19)    
administration (18)    
sql server 7 (18)    
t-sql (17)    
programming (16)    
naming standards (13)    
stairway series (13)    
data types (11)    
performance tuning (11)    
security (8)    
indexing (7)    
normalization (7)    
configuring (6)    
data modeling (6)    
blogs (4)    
foreign keys (fk) (4)    
best and worst practices (3)    
best practices (3)    
data warehousing (3)    
denormalization (3)    
editorial (3)    
reviews (3)    
system development life cycle (3)    
visual basic 6 (3)    
xml (3)    
ado (2)    
book reviews (2)    
career (2)    
certifications (2)    
constraints (2)    
identity property (2)    
monitoring (2)    
multi-tenant (2)    
sql server 2005 (2)    
stored procedures (2)    
surrogate keys (2)    
.net (1)    
advanced querying (1)    
auditing (1)    
check constraints (1)    
continuin (1)    
data-modeling (1)    
datatypes (1)    
dependencies (1)    
design and theory (1)    
dri (1)    
dynamic sql (1)    
editorial - ipod (1)    
editorial - mp3 (1)    
editorial - wmv (1)    
effective dating (1)    
encryption (1)    
etl (1)    
friday poll (1)    
guids (1)    
humor (1)    
installation (1)    
joe celko (1)    
modelling and entity relationship diagram (1)    
name value pair (1)    
natural key (1)    
nhibernate (1)    
null (1)    
other (1)    
partition (1)    
product reviews (1)    
queues (1)    
rants (1)    
referential integrity (1)    
relational (1)    
resilience (1)    
row compression (1)    
scalability (1)    
schema (1)    
sql server 6.5 (1)    
sql server data services (1)    
sql-dmo (1)    
ssds (1)    
udm (1)    
uniqueidentifier (1)    
views (1)    
webinar (1)    
worst practices (1)