Working with People
One of the more important things that we can do as a professional is learn to work we well with others.
2019-07-30 (first published: 2015-09-09)
394 reads
One of the more important things that we can do as a professional is learn to work we well with others.
2019-07-30 (first published: 2015-09-09)
394 reads
2015-09-08
159 reads
Are you a do-it-all DBA, or do you specialize in one aspect of database work?
2015-09-07
315 reads
This week Steve Jones looks at the idea of combining some NoSQL concepts inside of SQL Server.
2015-09-07
297 reads
This Friday Steve Jones looks at the topic of defaults and whether you use the model database to adjust yours.
2015-09-04
99 reads
When is it worth upgrading your SQL Server? It's a question Steve Jones explores today.
2015-09-03
225 reads
2015-09-02
751 reads
It seems the software industry doesn't do a good job of planning and estimating software development efforts.
2015-09-01
190 reads
Does it make sense to avoid FKs for use other architectures in software development? Steve Jones isn't sure a a general rule this is the case.
2015-08-31
336 reads
2015-08-31
294 reads
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
Comments posted to this topic are about the item A Quick Restore
Comments posted to this topic are about the item Guarding Against SQL Injection at...
I have a quick question on Ola Hallengren Index Optimize Maintenance . Do we...
While doing some testing of an application, I wanted to reset my environment after doing some testing with this code:
USE DNRTest BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO /* Bunch of stuff tested here */RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens if this runs, assuming the "bunch of stuff" isn't anything affecting the instance. See possible answers