Back Yourself Up
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
89 reads
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
89 reads
What makes SQL Server professionals stick together? Can we draw any conclusions from this?
2017-07-10
119 reads
Both options have their advantages and disadvantages. Neither is universally right for all situations. Understand the differences before picking the model that works for your situation.
2017-06-12
11,795 reads
Are you a do-it-all DBA, or do you specialize in one aspect of database work?
2015-09-07
304 reads
One Way to Handle a Very Complex Database Project with Several Databases and Cross References
2015-05-19
11,914 reads
2013-07-26
603 reads
A table does not so much 'have' a clustered index as a table 'is' a clustered index.
2013-07-22
6,505 reads
An introduction to Universal Product Codes with code to help you use them in your database.
2013-02-28
6,556 reads
A table doesn't so much "have" a clustered index as a table "is" a clustered index.
2012-12-24
8,356 reads
Today we have a guest editorial from Hakim Ali. Today Akim talks about why holding back out of politeness in code reviews may be a self-defeating practice.
2012-08-06
351 reads
By Chris Yates
Microsoft Fabric is transforming real-time analytics for financial institutions. It provides a unified data...
Understanding how permissions work in Microsoft Fabric can be essential for anyone managing access...
By Kevin3NF
Does skipping a DBA save money? Wait until your system grinds to a halt,...
Hi folks I have two tables, both with a NAME, START and END fields...
I am in the process of migrating from MySQL to SQL Server. I have...
I have the following select statement --#1 Select supplier, s.refnum, desc from supplier as...
What is returned from this code in SQL Server 2022?
DECLARE @value INT = NULL , @value2 VARCHAR(20) = NULL; SELECT COALESCE (@value, @value2, 100.5) AS Result; GOSee possible answers