2016-03-11
1,736 reads
2016-03-11
1,736 reads
Learn how you can find data in a string and extract it, no matter where it's located.
2016-03-10
40,821 reads
2016-03-07
1,867 reads
2016-02-25
1,264 reads
2016-02-22
1,589 reads
2016-02-19
1,819 reads
Create the definition of your holidays and have them available for any year. Create a Calendar including holidays and business/work dates.
2017-12-15 (first published: 2016-02-16)
10,529 reads
2016-02-15
1,462 reads
2016-02-01
1,574 reads
2016-01-28
1,603 reads
Every organization I talk to has the same problem dressed up in different clothes....
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers