Removing part of string before and after specific character using Transact-SQL string functions
Problem
Today, one of the developers come to me and asked me the question that is there any T-SQL function that...
2014-02-23
47,299 reads
Problem
Today, one of the developers come to me and asked me the question that is there any T-SQL function that...
2014-02-23
47,299 reads
There are two major reasons baseball has been such a boon to statisticians trying to measure human performance. First, sample...
2014-02-23
598 reads
What is (SSAS) SQL Server Analysis Services Tabular Mode?
SQL Server 2012 ships Analysis Services that can be installed in the...
2014-02-22
2,194 reads
Excel- and cloud-based BI suite finally comes out of preview. Woot! – check out all the details here
from ZDNet | Big On...
2014-02-22
498 reads
Here is a cool looking 1964 FJ40 Toyota Land Cruiser in good original condition…a road warrior that has a great...
2014-02-22
718 reads
The first step in treating rust is keeping it from forming, which means keeping your truck’s metal painted, plated, or...
2014-02-22
467 reads
Well, Kem’s cruiser was actually just a bit faded but pretty much in great shape. He had hired someone else...
2014-02-22
399 reads
For someone re-initialization is very simple, just go to publisher and right click and select re-initiallize and it will ask...
2014-02-22
562 reads
when you check on the sql server services and sql agent services it’s getting started on windows cluster but on...
2014-02-22
672 reads
I have been working 100% from home for almost four months now, and one of my former coworkers recently hit...
2014-02-22
531 reads
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
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