(Grant Fritchey) If you’ve been reading these Database Fundamentals posts, you’ve already seen the WHERE clause because of your use of it when manipulating data with DELETE and UPDATE statements.
Tag: sql server
Changing SQL Server Collation After Installation
(Douglas P. Castilho) In some scenarios we might find different SQL Server collations between the server instance and its databases. Sometimes the collation is fixed in some table columns or inside stored procedures to solve relationship problems with columns that have different collations.
Databricks Delta Lake
(James Serra) Introduced in April 2019, Databricks Delta Lake is, in short, a transactional storage layer that runs on top of cloud storage such as Azure Data Lake Storage (ADLS) Gen2 and adds a layer of reliability to organizational data lakes by enabling many features such as ACID transactions, da
Using SQL Server Performance Objects
(Thomas LaRock) SQL Server performance objects are found inside the Performance Monitor tool, also known as perfmon.
SQL SERVER – Regular Table or Temp Table – A Quick Performance Comparison
(Pinal Dave) Recently I received a very interesting question from my client who is a recently hired me for Comprehensive Database Performance Health Check. The question was a very simple but interesting one and I have decided to answer it with the proof and working demonstration.
Debugging techniques (focusing on T-SQL)
(Kenneth Fisher) tl;dr; Add PRINT and/or SELECT statements. Comment/uncomment out pieces of code to isolate problems. Change INSERT/UPDATE/DELETE statements to SELECTs.
Using Azure Databricks to Query Azure SQL Database
(Ron L’Esteve) With the rise and fall of numerous Azure Resources, one service that has gained quite a bit of recent hype as a promising Apache Spark-based analytics cloud big data offering is Databricks.
Looking for strange (in your SQL Server)
(Tibor Karaszi) Do you know if you have weird stuff going on in your SQL Server? Perhaps you walk through the errorlog every now and then? (Do you, really? You should!).
SQL SERVER – Check for Update in SSMS
(Pinal Dave) Just last week, I had a very interesting consulting engagement with large financial technology organizations. DBAs and Devs had many interesting questions during the Comprehensive Database Performance Health Check. One of the question was related to how to check the update in SSMS.
SQL Injection Mitigation in SQL Server 2019
(Grant Fritchey) I’ve been teaching a lot more about SQL Injection lately (including blog posts). I’ve been doing this because, despite this being a 21 year-old problem with well defined solutions, we’re still dealing with it.