2019-04-30
1,819 reads
2019-04-30
1,819 reads
This script will generate 5 lottery numbers plus one mega and you can set how many tickets and the range for the numbers for the different types of lotteries.
2019-04-27 (first published: 2016-07-13)
1,948 reads
A function to add or subtract working days taking into account weekends and using a table of non-working days.
2019-04-25 (first published: 2019-04-18)
703 reads
SQL Server System Audit Report Rudy Panigas, 2018-05-25 (first published: 2016-02-02) With every technology, security is in the forefront of the minds of professionals around the world. Ensuring that your SQL Server is secure is the job of every Database Administrator (DBA). The DBA(s) needs to configure the system to minimize the “attack surface” (reducing […]
2019-04-18
3,776 reads
2019-04-16 (first published: 2019-04-12)
11,023 reads
Code to create a handy date calendar cross-reference table with a ton of pre-populated, slice-and-dice data field variations to aid in complex date parameterization / selection criteria.
2019-04-15 (first published: 2009-10-06)
16,552 reads
2019-04-15 (first published: 2009-11-18)
2,034 reads
2019-04-15 (first published: 2018-06-01)
1,833 reads
Function that converts AD UserAccountControl number to details text
2019-04-15 (first published: 2019-04-12)
524 reads
The procedure generates an import script of diagrams.
2019-04-15 (first published: 2017-03-22)
6,530 reads
I’m hosting a free webinar at MSSQLTips.com at the 19th of December 2024, 6PM...
By Steve Jones
I looked at row_number() in a previous post. Now I want to build on...
Recently I received a cry for help over Teams. The issue was that an...
geotheexamscenter@yahoo.com Welcome to All German Certificates the best website which produces genuine German language...
geotheexamscenter@yahoo.com Welcome to All German Certificates the best website which produces genuine German language...
Hello everyone, I hope you can help me. I have a table with measurement...
I have run this on SQL Server 2022 for the Sales database:
ALTER DATABASE Sales SET AUTO_CREATE_STATISTICS ON (INCREMENTAL = ON)I then run this in the Sales database:
USE Sales GO CREATE STATISTICS CustomerStats1 ON dbo.Customer (CustomerKey, EmailAddress) WITH INCREMENTAL = OFFThe dbo.Customer table is partitioned. How are statistics created? See possible answers