PowerShell Tool Time: Building Help
Learn how you can customize the help for your library of scripts in this edition of PowerShell Tool Time.
Learn how you can customize the help for your library of scripts in this edition of PowerShell Tool Time.
If someone says clustered indexes slow you down, they haven't read this.
In this article we look at the first public CTP release of SQL Server 2019 and some of the great new features that will be part of SQL Server 2019.
Thanks for improving the string or binary data truncated error message.
A basic introduction for developers (or anyone) to using the metadata for a SQL Server database to build a DataSet in ADO.Net that represent objects in any SQL Server database.
Security, compliance, and data ethics are related concepts that everyone who works with software should know about, from the help desk to the C-level office… but almost everyone thinks that worrying about these things is someone else’s problem.
Data classification may not be fun or even interesting, but it is necessary.
In this tip we look at how to use MERGE compared to running separate INSERT and UPDATE statements.
If you have a schema you want to retire, here's a method for moving all objects inside that schema to a new one.
The announcement of the next version of SQL Server excites Steve.
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 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...
Comments posted to this topic are about the item An Unusual Identity
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