Remove c
article thumbnail

tempdb Enhancements in SQL Server 2019

SQL Performance

From the customer side, this has been the limit of what can be done*, until SQL Server 2019. Some information is available in the SQL Server 2019 release notes , and there was a demo from Bob Ward and Conor Cunningham during the first day of the PASS Summit keynote. Now that 2019 CTP 3.2 I have SQL Server 2019 CTP 3.2

Servers 95
article thumbnail

Connecting MongoDB to Ruby with Self-Signed Certificates for SSL

Scalegrid

Our yml file: development: # Configure available database clients. Alternatively, you can define the following: # # Define the name of the default database that Mongoid can connect to. # (required). database: test # Provide the hosts the default client can connect to. The user's database roles. The user's database roles.

C++ 100
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

T-SQL bugs, pitfalls, and best practices – Joins

SQL Performance

In my examples I’ll use a sample database called TSQLV5. You can find the script that creates and populates this database here , and its ER diagram here. Customers AS C LEFT OUTER JOIN Sales. Orders AS O ON C. GROUP BY C. ORDER BY C. Here’s the solution query (call it Query 2) with the bug fixed: SELECT C.

article thumbnail

T-SQL bugs, pitfalls, and best practices – pivoting and unpivoting

SQL Performance

In my examples, I'll use a sample database called TSQLV5. You can find the script that creates and populates this database here , and its ER diagram here. Suppose for example that you want to query the Sales.Orders table in the TSQLV5 sample database. Implicit grouping with PIVOT. 830 rows affected).

article thumbnail

NULL complexities – Part 1

SQL Performance

Even among people who do have a good grasp of relational theory and SQL, you will hear very strong opinions both in favor and against using NULLs in your database. In my examples I'll use a sample database called TSQLV5. You can find the script that creates and populates this database here , and its ER diagram here.

article thumbnail

How to add your database to HammerDB – Pt3 Adding to and modifying the source

HammerDB

The next step is to see if there is an Issue already created for the database we want to add or whether we should create one. In this example using MariaDB there is already an Issue created Add MariaDB as a separate database #54 although note that this can be for any database you choose. <? . <mariadb>

article thumbnail

Row Pattern Recognition in SQL

SQL Performance

You can also find it as part of the document ISO/IEC 9075-2:2016, Information technology — Database languages — SQL — Part 2: Foundation (SQL/Foundation) (available for purchase). STOCK1 2019-02-12 150.00 STOCK1 2019-02-13 151.00 STOCK1 2019-02-14 148.00 STOCK1 2019-02-15 146.00 LAST ( C.

C++ 73