Being Supportive
Steve Jones says we need to stick together in IT, at least from the perspective of the client. Otherwise we can all look bad as an industry.
2010-01-07
2,273 reads
Steve Jones says we need to stick together in IT, at least from the perspective of the client. Otherwise we can all look bad as an industry.
2010-01-07
2,273 reads
I saw someone post a question recently about running out of identity values in an INT column. It happens, it’s...
2010-01-06
531 reads
I saw someone post a question recently about running out of identity values in an INT column. It happens, it’s...
2010-01-06
3,520 reads
We have a lot of administrative tools for SQLServerCentral that are available online. Most of the work I do can...
2010-01-05
399 reads
I’ve had a few people ask me this question. It’s the new year, many people are making New Year’s resolutions,...
2010-01-04
804 reads
I’ve had a few people ask me this question. It’s the new year, many people are making New Year’s resolutions,...
2010-01-04
352 reads
We have a lot of administrative tools for SQLServerCentral that are available online. Most of the work I do can...
2010-01-04
373 reads
2010-01-04 (first published: 2009-12-30)
1,699 reads
The first day of 2010 has Steve Jones blooper reel in addition to some well wishes.
2010-01-01
70 reads
I woke up this morning, late, after a great New Year’s Eve with friends. Too tired to get out of...
2010-01-01
332 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