SqlCredit - Part 15: The Cost of DistributionApril 25, 2008 Download the code for this article. This is part 15 of a series. If you have not read part 14, you can find it here, but this article does not require any knowledge of the previous work in the series. Distribution: Spreading Tables Across Multiple DatabasesWhen you design a database from scratch, you probably put all the related tables in the same database. This allows for such database-level validations as foreign keys and simple two-part JOINs (schema.table). However, there are often reasons that you have to deal with tables that are related but spread across multiple databases. History is often a factor, but there are other possibilities. Deployment, manageability, and security concerns can affect which data is on which database. In this series current quest to understand costs of different architectures, we will look at what cost is paid when tables are separated into multiple databases on the same server. We will not look at separate-server scenarios because the number of variables is too high. However, the scripts that accompany this article could be modified to run separate-server scenarios if someone were looking for results for a specific set of servers. Were also not recording the timing differences for the INSERT statements. These records may be created separately, or they may be created as part of a single transaction. Since all stored procedure calls are coming from outside of the core OLTP databases (similar to an application making calls into a database), the differences might be zero (where records are created one-at-a-time). If the records are created as a group, the differences would vary widely depending on the implementation. Building the TestsTest IntroductionIn previous installments of this series, I introduced three tables that I will reuse here: Card, Vendor, and Purchase. The DDL for the tables is the same for each layout except
CREATE TABLE dbo.Card1 (
CardID int NOT NULL IDENTITY,
CardNumber1 bigint NOT NULL,
CardNumber2 bigint NOT NULL,
CardNumber3 bigint NOT NULL,
CardNumber4 bigint NOT NULL,
SecurityCode1 smallint NOT NULL,
SecurityCode2 smallint NOT NULL,
SecurityCode3 smallint NOT NULL,
SecurityCode4 smallint NOT NULL,
SecureString1 varchar(36) NOT NULL,
SecureString2 varchar(36) NOT NULL,
SecureString3 varchar(36) NOT NULL,
SecureString4 varchar(36) NOT NULL,
CONSTRAINT Card1_PK PRIMARY KEY CLUSTERED (CardID)
)
CREATE TABLE dbo.Vendor1 (
VendorID int NOT NULL IDENTITY,
BusinessName varchar(40) NOT NULL,
Address1 varchar(40) NOT NULL,
Address2 varchar(40) NOT NULL,
City varchar(40) NOT NULL,
[State] char(2) NOT NULL,
ZipCode varchar(10) NOT NULL,
DateCreated datetime NOT NULL
CONSTRAINT Vendor1_DateCreated_DF DEFAULT GETUTCDATE(),
DateLastUpdated datetime NOT NULL
CONSTRAINT Vendor1_DateLastUpdated_DF DEFAULT GETUTCDATE(),
StatusCd tinyint NOT NULL
CONSTRAINT Vendor1_StatusCd_DF DEFAULT 1,
CONSTRAINT Vendor1_PK PRIMARY KEY CLUSTERED (VendorID)
)
CREATE TABLE dbo.Purchase1 (
PurchaseID int NOT NULL IDENTITY,
CardID int NOT NULL,
VendorID int NOT NULL,
Amount money NOT NULL,
DateCreated datetime NOT NULL
CONSTRAINT Purchase1_DateCreated_DF DEFAULT GETUTCDATE(),
CONSTRAINT Purchase1_PK PRIMARY KEY CLUSTERED (PurchaseID),
CONSTRAINT Purchase1_Card_FK FOREIGN KEY (CardID)
REFERENCES dbo.Card1 (CardID),
CONSTRAINT Purchase1_Vendor_FK FOREIGN KEY (VendorID)
REFERENCES dbo.Vendor1 (VendorID)
)
The basic idea of the test here is that there are three spreads tested and compared:
Pictures help significantly here.
The test script was run from the _test database and called stored procedures in DB1, DBv, and DBc as appropriate. Each run of the test script performs all of the following steps:
Given a standard workload (SELECTs only), what will the penalty be for moving the tables into separate databases? You probably have an idea, so write down your guesses now. Layout 1 is the baseline (call it +0%). Layout 2: +___%. Layout 3: +___%. ResultsHere are the results of four tests. The integers (times) are in milliseconds.
The times and penalties are very consistent from test to test. ConclusionSpreading tables across multiple databases is done for many reasons, usually very specific to a particular environment and set of applications. When tables are separated, there is a performance penalty, but the numbers are relatively small. However, if your tables are currently spread, consider the performance gain available if you were to pull the tables into a common database. What are your thoughts here? What are the reasons that your particular application has multiple databases? Take a minute and drop a comment in the forum. Next month: The Cost of Bloat. Download the code for this article. » See All Articles by Columnist Rob Garrison SqlCredit - Developing a Complete SQL Server OLTP Database Project
Performance Testing SQL 2008's Transparent Data Encryption
SQL Server 2008's Change Data Capture - Tracking the Moving Parts Performance Testing - SQL Server 2008 versus SQL Server 2005 Exploring SQL Server's Index INCLUDEs Exploring SQL 2005's Ranking Functions - NTILE() and ROW_NUMBER() SqlCredit - Part 19: Exploring SQL 2005's Ranking Functions - RANK() and DENSE_RANK() SqlCredit, Part 18: Exploring the Performance of SQL 2005's OUTPUT Clause SqlCredit - Part 17: Exploring SQL 2005's OUTPUT Clause SqlCredit - Part 16: The Cost of Bloat SqlCredit - Part 15: The Cost of Distribution SqlCredit - Part 14: The Cost of Translation SqlCredit - Part 13: More on Indexed Persisted Computed Columns SqlCredit - Part 12: Exploring Indexed Persisted Computed Columns SqlCredit - Part 11: Change Tracking Using History Records SqlCredit - Part 10: MAC Performance and Updating SqlCredit SqlCredit - Part 9: Message Authentication Codes SqlCredit Part 8: Comparing Encrypt/DecryptByCert and Encrypt/DecryptByKey SqlCredit Part 7: Performance Impact of EncryptByCert and DecryptByCert SqlCredit Part 6: Exploring EncryptByCert and DecryptByCert SqlCredit - Part 5: Adding Card, Vendor, and Purchase, Plus Much Refactoring SqlCredit - Part 4: Schema and Procedure Security SqlCredit - Part 3: Schema/Proc Updates and Automated Unit Testing SqlCredit - Part 2: Creating the Database, Tables, CRUD Procedures SqlCredit - Developing a Complete SQL Server OLTP Database Project |