Beginning Database Design - Spot the Flaws
A new series by Steve Jones that tackles a basic design of a few tables. Read the scenario, look over this design, and see if you can find the problems.
2007-11-20
8,782 reads
A new series by Steve Jones that tackles a basic design of a few tables. Read the scenario, look over this design, and see if you can find the problems.
2007-11-20
8,782 reads
2007-11-20
2,924 reads
It's the time of year where employment benefits renew for many US employees. Steve Jones talks about how much your company should care about your health.
2007-11-19
71 reads
A few comments on the news of the past week: SQL Server 2008 CPT5, a 1.6SSD Array, Non-Compete agreements and more.
2007-11-19
25 reads
2007-11-15
106 reads
Communication is important, and it's a real problem when people can't reach you. Read about an interesting phone accident the some hints for better communication.
2007-11-14
69 reads
Security is hard, but are we doing a good job? Steve Jones shares a few thoughts on our security development practices
2007-11-13
54 reads
A few comment on the database news for the week ending 11/10/07
2007-11-12
31 reads
SQLServerCentral.com is always looking for ways that we can provide you with better, more useful content to help you learn about SQL Server. We've got a new idea and we're looking for feedback.
2007-11-12
393 reads
Is the rapid pace of information being fed to us a problem? Steve Jones has a few thoughts.
2007-11-12
41 reads
By HeyMo0sh
In my experience, FinOps success has never been just about tools or dashboards. It...
By HeyMo0sh
As a DevOps person, I know that to make FinOps successful, you need more...
By HeyMo0sh
As someone who works in DevOps, I’m always focused on creating systems that are...
Comments posted to this topic are about the item Restoring On Top II
Comments posted to this topic are about the item SQL Art 2: St Patrick’s...
Comments posted to this topic are about the item Breaking Down Your Work
I have a database, DNRTest, that has a number of tables and other objects in it. The other day, I was trying to mock up a test and ran this code on the same server:
-- run yesterday CREATE DATABASE DNRTest2 GO USE DNRTest2 GO CREATE TABLE NewTable (id INT) GOToday, I realize that I need a copy of DNRTest for another mockup, and I run this:
-- run today USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO RESTORE DATABASE DNRTest2 FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens? See possible answers