Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Content with tag
Database Design
Items 1 to 20 of 276
Next 20 >>
Stairway to Database Design
New to the task of designing and creating a database? Joe Celko, who is one of the most widely read of all writers about SQL, explains the basics. As usual, he comes up with the occasional surprise for even the most seasoned database professional. Joe was the winner of the DBMS Magazine Reader's Choice Award four consecutive years. He has taught SQL in the US, UK, the Nordic countries, South America and Africa. He served 10 years on ANSI/ISO SQL Standards Committee and contributed to the SQL-89 and SQL-92 Standards.
Read more...
Physical Database Design Consideration
There are lots of things to think about when you design a physical database. What data types should I use? What column is appropriate for the primary key? Are there particular indexes that I should use to improve performance? How should I implement data integrity rules? This list goes on and on. In this article Greg Larsen will be exploring different physical database design elements.
Read more...
By
Additional Articles
2012/01/24
|
Source:
Database Journal
|
Category:
database design
Rating:
(not yet rated)
Rate this
|
Briefcase
|
2,777 reads
Normalizing Your Database
If you’ve been working with databases for any length of time, you have heard the term normalization. Normalization is the process...
Read more...
By
2012/01/11
|
Source:
SQLServerCentral.com
|
Category:
blogs
Rating:
(not yet rated)
|
Discuss
|
Briefcase
|
2,065 reads
Constraints and the Test-Driven Database
Bad data always seems to appear when, and where, one least expects it. Sam explains the great value of a defensive approach based on constraints to any team that is developing an application in which the data has to be exactly right, and where bad data could cause consequential severe financial damage. It is perhaps better seen as creating a test-driven database.
Read more...
By
Additional Articles
2012/01/09
|
Source:
SimpleTalk
|
Category:
database design
Rating:
(not yet rated)
Rate this
|
Briefcase
|
1,557 reads
Stairway to Database Design Level 9: Normalization
In the final step of Database Design, Joe Celko gives a simple but effective explanation of the normalization process and why it is important.
Read more...
By
Joe Celko
2011/11/11
|
Source:
SQLServerCentral.com
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
5,193 reads
Table space usage 1
Read more...
By
Hugo Kornelis
2011/11/09
|
Category:
database design
Rating:
(not yet rated)
|
Discuss
|
Briefcase
|
2,062 reads
Stairway to T-SQL DML Level 3: Implementing a Relational Model in SQL Server
This level of the stairway details the creation of a relational database, as well as filling in some of the history of the relational database model.
Read more...
By
Gregory Larsen
2011/11/09
|
Source:
SQLServerCentral.com
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
4,515 reads
Stairway to Database Design Level 8: Cursors
This final level to the first landing completes the basics of a SQL database, by explaining what cursors are and why you should never use them.
Read more...
By
Joe Celko
2011/11/02
|
Source:
SQLServerCentral.com
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
5,433 reads
PASS Data Architecture Virtual Chapter presents Characteristics of a Great Relational Database
On Thursday October 20th ,MVP Louis Davidson will discuss the why normalized databases are the most important part of query tuning
Read more...
By
Press Release
2011/10/20
|
Source:
SQLServerCentral.com
|
Category:
webinar
Rating:
(not yet rated)
Rate this
|
Briefcase
|
967 reads
Prime Attributes
Read more...
By
Tom Thomson
2011/10/12
|
Category:
database design
Rating:
(not yet rated)
|
Discuss
|
Briefcase
|
1,947 reads
Stairway to Database Design Level 7: Triggers
In levels one to four, we built the tables, base and virtual, of a schema. Levels five and six dealt with stored procedures. This level deals with a feature you need to avoid as much as possible; this is article is on Triggers.
Read more...
By
Joe Celko
2011/09/30
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
6,179 reads
Stairway to Database Design Level 6: Procedure Bodies
Having covered the procedure headers in SQL Server in the previous level, Joe tackles the subject of the contents of stored procedures. In this level, he outlines limitations of TSQL as a procedural language, and what you need to bear in mind when deciding how to use them.
Read more...
By
Joe Celko
2011/09/21
|
Source:
SQLServerCentral.com
|
Category:
stairway series
Rating:
|
Discuss
|
Briefcase
|
6,551 reads
An alternative to GUIDs
GUIDs are often regarded as a necessary evil but how necessary are they?
Read more...
By
David Poole
2011/09/15
|
Source:
SQLServerCentral.com
|
Category:
guids
Rating:
|
Discuss
|
Briefcase
|
9,904 reads
Third Normal Form
The third article in our series on normalization from Tom Thomson continues with an explanation on what constitutes third normal form.
Read more...
By
Tom Thomson
2011/07/28
|
Source:
SQLServerCentral.com
|
Category:
normalization
Rating:
|
Discuss
|
Briefcase
|
6,687 reads
Yet Another SQL Strategy for Versioned Data
There is a popular design for a database that requires a built-in audit-trail of amendments and additions, where data is never deleted, but superseded by a later version. Whilst this is conceptually simple, it has always made reporting the latest version of data complicated. Alex Kuznetsov joins the debate on the best way of doing this with an example using an indexed view and the filtered index.
Read more...
By
Additional Articles
2011/07/15
|
Source:
SimpleTalk
|
Category:
database design
Rating:
Rate this
|
Briefcase
|
2,595 reads
Second Normal Form
In this article Tom Thomson takes a look at what second normal form means, how it is violated, and how you can fix it. This is part of our normalization series.
Read more...
By
Tom Thomson
2011/07/14
|
Source:
SQLServerCentral.com
|
Category:
normalization
Rating:
|
Discuss
|
Briefcase
|
7,216 reads
Implementing Queuing Mechanism
Implementing a queue table in SQL server
Read more...
By
Harsha Majety
2011/07/12
|
Source:
SQLServerCentral.com
|
Category:
database design
Rating:
|
Discuss
|
Briefcase
|
843 reads
First Normal Form
Learn the basics of first normal form and what that means to a database designer from Tom Thomson.
Read more...
By
Tom Thomson
2011/06/30
|
Source:
SQLServerCentral.com
|
Category:
normalization
Rating:
|
Discuss
|
Briefcase
|
9,847 reads
A Tale of Identifiers
Identifiers aren't locators, and they aren't pointers or links either. They are a logical concept in a relational database, and, unlike the more traditional methods of accessing data, don't derive from the way that data gets stored. Identifiers uniquely identify members of the set, and it should be possible to validate and verify them. Celko somehow involves watches and taxi cabs to illustrate the point.
Read more...
By
Additional Articles
2011/06/20
|
Source:
SimpleTalk
|
Category:
database design
Rating:
Rate this
|
Briefcase
|
2,205 reads
Stairway to Data, Level 1: The Basics
A great deal of the confusion that occurs when a database application is developed comes from a poor understanding of the basics of data. Here, Joe Celko gives a broad coverage of the difficulties you're likely to meet when handling data in databases
Read more...
By
Joe Celko
2011/05/12
|
Source:
SQLServerCentral.com
|
Category:
database design
Rating:
|
Discuss
|
Briefcase
|
9,786 reads
Items 1 to 20 of 276
Next 20 >>
Tags
advanced
(53)
miscellaneous
(46)
basics
(29)
strategies
(19)
sql server 7
(18)
administration
(17)
t-sql
(17)
programming
(16)
naming standards
(13)
stairway series
(13)
data types
(11)
performance tuning
(8)
security
(8)
normalization
(7)
configuring
(6)
data modeling
(6)
indexing
(6)
best and worst practices
(3)
data warehousing
(3)
denormalization
(3)
editorial
(3)
performance
(3)
reviews
(3)
system development life cycle
(3)
visual basic 6
(3)
ado
(2)
best practices
(2)
blogs
(2)
book reviews
(2)
career
(2)
certifications
(2)
constraints
(2)
foreign keys (fk)
(2)
identity
(2)
monitoring
(2)
multi-tenant
(2)
sql server 2005
(2)
stored procedures
(2)
surrogate keys
(2)
xml
(2)
.net
(1)
advanced querying
(1)
auditing
(1)
check constraints
(1)
continuin
(1)
data-modeling
(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)
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)
Copyright © 2002-2012 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.