The Consistency Debate
Steve Jones wonders today if data professionals get a little too hung up on the consistency issues between servers.
Steve Jones wonders today if data professionals get a little too hung up on the consistency issues between servers.
I have transactional replication configured in production. The business team has a requirement to rename the subscription database. Is it possible to rename the subscription database and ensure that transactional replication will continue to function as before? If so, how could we achieve this?
In this article we will see how to rebuild system databases in SQL Server 2008 cluster that is failed to restart.
This past week the big news in the SQL Server space was the release to manufacturing of SQL Server 2012.
Developers targeting the SQL Azure platform should make sure their applications are secure. This article walks through the considerations developers need to keep in mind when designing SQL Azure applications.
The first SQL Saturday in Ireland on Mar 24, 2012. Come get a free day of SQL Server training.
Come to a free day of SLQ Server training on Mar 24, 2012 in Huntington Beach, CA.
Impementing iSCSI multi-pathing and redundancy policies
This Friday Steve Jones wants to know about the older versions you are running in your production environments. Are you still using SQL Server 2000?
An interesting result from a recent test of SSDs in SQL Server by Wes Brown. A surprising discovery is important for anyone thinking about using SSDs to know.
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