SQLBIGeek's Function Friday - Return First Day of Quarter
Brian K. McDonald
SQLBIGeek
Twitter: @briankmcdonald
Welcome to the first of my “SQLBIGeek’s Function Friday” blog series. I understand that I am posting...
2010-10-24
1,416 reads
Brian K. McDonald
SQLBIGeek
Twitter: @briankmcdonald
Welcome to the first of my “SQLBIGeek’s Function Friday” blog series. I understand that I am posting...
2010-10-24
1,416 reads
I had a new SSIS package that was ready to deploy to production. It was pulling data from Oracle and...
2010-10-24
12,141 reads
I had a new SSIS package that was ready to deploy to production. It was pulling data from Oracle and this was the first package being placed into production...
2010-10-24
18 reads
Only 3 more weeks until the PASS Summit and it’s time for another countdown post. I’ve done a few of...
2010-10-23
752 reads
Okay SQL Community, I need your help! Patrick Leblanc, Adam Jorgensen, Mike Davis and myself have submitted a precon for...
2010-10-23
564 reads
Monday
PASS Data Warehousing/BI Virtual Chapter - Applied MDX - Kevin Geoff
Tuesday
PASS Application Development Virtual Chapter - Refactoring SQL Applications - Jeremiah Peschka
Pragmatic Works - Pro...
2010-10-22
863 reads
It’s been quite a few years since I updated the Hawaiian shirt wardrobe. I bought a series of 5 shirts...
2010-10-22
724 reads
Bill Graziano posted our 2011 budget today. This runs from Jul 1, 2010, through Jun 30, 2011. I hope you’ll...
2010-10-22
675 reads
Let’s Anaylze An Index!We’ve got through the first three parts of this continued series on the Index Analysis query last...
2010-10-22
616 reads
One more from the ‘new book’ shelf at the library, All Things at Once is an auto biography of Mika...
2010-10-22
705 reads
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
By Steve Jones
Only a little break for me. I’m actually heading to Las Vegas today for ...
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