T-SQL Tuesday #68: Just Say No to Defaults
Using PowerShell and SMO to set MinServerMemory and MaxServerMemory Programatically
Here is a link to the official #tsql2sday invitation from Andy...
2015-07-17 (first published: 2015-07-14)
1,651 reads
Using PowerShell and SMO to set MinServerMemory and MaxServerMemory Programatically
Here is a link to the official #tsql2sday invitation from Andy...
2015-07-17 (first published: 2015-07-14)
1,651 reads
What steps do you go through to validate SQL Server configurations after a server build? Even a single server can...
2015-06-16
1,525 reads
Did that say free? Why yes, yes it did! But don’t let the price tag fool ya, these are some...
2015-06-09 (first published: 2015-06-02)
12,638 reads
So on June 3rd I got this email from Edward Pollack.
I had submitted a few weeks earlier and had been...
2015-06-09
740 reads
Last week I posted Creating a SQL Agent Job Wrapper with PowerShell and SMO. In that post I created a...
2015-05-27 (first published: 2015-05-20)
5,319 reads
This is the 3rd installment in a small series of blog posts on how to create a PowerShell wrapper for...
2015-05-26
692 reads
Some Background
“Is there any way to start a SQL Agent job using a script or program?”
I’ve seen this question asked...
2015-05-22 (first published: 2015-05-13)
6,873 reads
HELP! My database is stuck in single user mode!
I answered this twitter post a while back and figured it would...
2015-05-13 (first published: 2015-05-05)
6,173 reads
Thank you Cathrine Wilhelmsen for hosting this week’s #tsql2sday.
If I knew that this T-SQL Tuesday was going to be about...
2015-05-12
535 reads
So here we are at week 4 of the #SQLNewBlogger challenge. Earlier in the week I responded to the following...
2015-05-07 (first published: 2015-04-28)
33,503 reads
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...
By HeyMo0sh
In the realm of software development and content creation, the deployment pipeline serves as...
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