(Dallas Snider) In data mining and machine learning circles, the neural network is one of the most difficult algorithms to explain. Fortunately, SQL Server Analysis Services allows for a simple implementation of the algorithm for data analytics.
Tag: sql server
Getting Cross Domain Kerberos and Delegation working with SSIS Package
(Adam W. Saxton) I started working on this issue started by way of a Twitter conversation between myself, Jorge Segarra (@sqlchicken) and Matt Masson (@mattmasson). I then found out that Jorge was working with a customer that had opened up a Support Case. Also special thanks to Joey Seifert for let
SQL Server Reporting Services Custom Code Assemblies
(Scott Murray) What are SQL Server Reporting Services Custom Code Assemblies? Why would I want to use them?
SQL SERVER – Activity Monitor to Identify Blocking – Find Expensive Queries
(Pinal Dave) Recently when I was busy working on my next course for Pluralsight, one of my friend pinged me for some help over messenger. And the conversation went on a different spin, here is a gist of what we talked and I felt this was worth a share –
Identify and change a SQL Server endpoint owner
It is quite common for a DBA or consultant to setup database mirroring or an always on availability group and then leave the organization.
Trivia about Trivial Plans
(Michael J. Swart) I found an example of a query plan which performs better than the “trivial” query plan.
SSIS Out of Memory/Buffer Manager errors
(Vinoth N Manoharan) Often I get queries from my developers regarding “out of memory exception” or Buffer Manager errors during data flow task, the frequent query they ask is “I am running the package in the SQL server box itself and if the SQL server is granted say 128 GB of memory why are we getti
Three-Byte Integers in SQL Server: Fact or Fiction?
(Bob Pusateri) I’ve been told on two occasions that the absence of the MEDIUMINT datatype is a serious shortcoming of SQL Server. If you’re not familiar with MEDIUMINT, it’s an integer type available in MySQL that consumes 3 Bytes and is capable of storing values ranging from -8,388,608 to 8,388,607
Using List.Generate() To Make Multiple Replacements Of Words In Text In Power Query
(Chris Webb) Recently I had a request for help from someone who wanted to do the following in Power Query: take a piece of text and then, using a table, search for all of the occurrences of the words in one column of the table in the text and replace those words with those in the other column.
SQL Server – Script to Identify and Update Database Auto-Growth Setting
(Hareesh Gottipati) An auto-growth event is the process by which the SQL Server engine expands the size of a database file when it runs out of space. The amount by which a database file should grow is determined by the value that is set in the SQL configuration.