All I Want For Christmas Is ...
What do IT workers want for Christmas? Let us know in this Friday's poll.
2007-12-07
59 reads
What do IT workers want for Christmas? Let us know in this Friday's poll.
2007-12-07
59 reads
Cell phones are great communication tools, but that's mostly what they do, even for IT folks. But Steve Jones talks about some other possibilities and potential problems.
2007-12-06
52 reads
Microsoft is unbundling their new hypervisor from Windows. Could this happen with SQL Server?
2007-12-05
45 reads
We often see ways to improve your career, but there's a flip side as well. In the spirit of our "worst practices" series, Steve Jones takes a look at ten skills that could cost you your job if you can't perform them.
2007-12-03 (first published: 2006-11-30)
67,769 reads
A few notes and comments on the database news from the previous week.
2007-12-03
24 reads
Volunteers are important to ensuring the success of so many organizations. IT-based organizations, such as user groups, are no different. Steve Jones leads you through a few of the stages of being a volunteer and hopes more of you will participate in your local area.
2007-11-29
63 reads
2007-11-28
88 reads
2007-11-23
40 reads
2007-11-22
46 reads
If you are accepting a DBA position, does it make sense to work as a contractor or permanent employee?
2007-11-21
242 reads
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
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...
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