Using R with Power BI, SSRS or RTVS for easier data visualization
Kendra Little explains why Redgate would like to hear your stories of how the database has been left behind.
Google was recently fined for GDPR violations. Steve wonders if their confusing documentation and tools are the problem.
Years ago, my first go-to tool for performance tuning was Performance Monitor: it was available everywhere, worked in all versions, and gave me a lot of useful information without paying for a monitoring tool. Since then, I’ve moved on – wait stats are a much better starting point – but there are still 3 good Perfmon counters that I rely on.
Backblaze releases their new hard drive stats and there are some interesting items in the report.
Although computed columns are from the beginning of SQL Server, not everyone knows how to use them. This article will help you better understand how it works.
In this tip we look at some things you should think about when planning for a SQL Server data warehouse.
It's not the zero'th time Phil Factor has complained about the madness of a binary collation.
By Brian Kelley
But as I've matured over the years, I came to realize that I needed...
By alevyinroc
I will be presenting my latest session, Documenting Your Work for Worry-Free Vacations, in-person...
By Steve Jones
I saw a question asking about the next sequence value and decided to try...
I've read a few posts regarding what we use to design DB models and...
I've got a table with 186,703,969 rows, about 300GB of data. There are several...
I created a SQL Database in Azure Portal but I've just noticed it also...
What values are returned when I run this code?
CREATE TABLE dbo.IdentityTest2
(
id NUMERIC(10,0) IDENTITY(10,10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
INSERT dbo.IdentityTest2
(
somevalue
)
VALUES
( 'Steve')
, ('Bill')
GO
SELECT top 10
id
FROM dbo.IdentityTest2 See possible answers