Five Things to Trim From SQL Server
With a SQL-meme going through the SQL Server community this week, Steve Jones comments on the various suggestions and offers a way to get your voice heard.
2010-05-17
288 reads
With a SQL-meme going through the SQL Server community this week, Steve Jones comments on the various suggestions and offers a way to get your voice heard.
2010-05-17
288 reads
From Barnes and Noble. You can get them on a Nook, Blackberry, iPhone/Ipad, or PC. They are offering a few...
2010-05-17
951 reads
Steve Jones talks about encrypting stored procedures and why it's a bad idea. And that it's a feature that should be removed from SQL Server.
2010-05-17
172 reads
There has been quite a debate going on at SQLServerCentral about a DBA journeyman certification. There are a couple good...
2010-05-17
963 reads
Kathi Kellenburger, fellow MVP and friend, pinged me recently for an interview for the Professional Development Virtual Chapter. This is...
2010-05-14
1,621 reads
This Friday's poll asks what changes the community might like to see at SQLServerCentral.
2010-05-14
102 reads
I was getting tired of pre-formatting code in LiveWriter. I love that software, but a couple of the technical things...
2010-05-13
928 reads
This is a test of the plug in “Paste From Visual Studio”. I had this code sitting in SSMS and...
2010-05-13
806 reads
There’s still time to register for the 24 Hours of PASS, a series of 24 one-hour sessions being presented on...
2010-05-12
740 reads
Steve Jones talks about ORM frameworks and the dilemma of using them. They save time, but might not solve all your problems.
2010-05-12
445 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