(Ed Elliott) When you write some code and then test it, how sure are you that you have tested the whole thing? Code coverage gives you an idea of how well tested a bit of code is.
Tag: sql server
SQL SERVER – Starting / Stopping SQL Server Agent Services using PowerShell
(Pinal Dave) Writing utility scripts are one way to become smarter when working with computers. From time to time I get asked about some tasks folks use repetitively and are being counterproductive.
What is RESULT SETS?
(Kenneth Fisher) I was reading some code the other day and it included the statement RESULT SETS. I’d never seen it before so it seemed worth a quick look. I’ll warn you in advance this is somewhat of a BOL blog post.
Understanding the SQL Server Integration Services Catalog and creating the SSISDB Catalog
(Manvendra Singh) In earlier versions of SQL Server Integration Services (SSIS), we used to keep SSIS packages either on a file share or in the MSDB database and configuration parameters such as connection strings and sensitive data either in an XML file or in a SQL Server table. The downside to thi
Multiple insert statement without counter
(Matt Busche) I often have a need to write an INSERT statement that adds multiple rows to a database. Obviously you can run any number of inserts separately, but that’s innefficient, so I loop over a list with a counter to know when to end.
Tips to write a better TSQL Query for enhancing the performance of Stored Procedure – Part I
(Niladri Biswas) Many times it so happens that we write a query but that is not optimized and henceforth it takes a long time to get execute. This is a series of posts that will address various problems of bad way of writing a TSQL program and what is the suggested way of writing which on the other
Tip # 9 – Automatically Shrinking Your Database
(Chris Shaw) This article is part 9 in a series on the top 10 most common mistakes that I have seen impact SQL Server Performance and Resiliency. This post is not all-inclusive.
Pause SQL Server Service Before Restarting
(Thomas LaRock) Many a system administrator has been faced with the task of rebooting a server during the middle of the working day. This timing is the least desired option, as server reboots are often done during off-hours and weekends. But there are times when reboots are needed during the day.
Creating a cluster without Domain Admin permissions
(Denny Cherry) If you’ve ever watched a presentation when someone sets up a cluster you’ve probably noticed that it goes pretty smoothly. The reason for this is because the account which the presenter uses is a domain administrator.
Descriptive Statistics In Power BI/M With Table.Profile()
(Chris Webb) As Buck Woody notes here, when you are exploring a new data set it can be useful calculate some basic descriptive statistics. One new M function that appeared in Power BI recently can help you to do this: Table.Profile().
