Oregon SQL Saturday 2015 Keynote
This year we are honored to have a particularly special guest kicking off our SQL Saturday event on October 24th. ...
2015-10-02
243 reads
This year we are honored to have a particularly special guest kicking off our SQL Saturday event on October 24th. ...
2015-10-02
243 reads
It's really exciting to see the first round of entries into the Power BI Best Visuals Contest, which has been...
2015-09-22
844 reads
It's really exciting to see the first round of entries into the Power BI Best Visuals Contest, which has been...
2015-09-22
402 reads
What! NO? Get with it, my friend. Power BI is for everyone. All the kids are doing it… not to...
2015-08-18
467 reads
What! NO? Get with it, my friend. Power BI is for everyone. All the kids are doing it… not to...
2015-08-18
251 reads
On Friday, James Phillips, Microsoft VP of Business Intelligence, announced the general availability of the new Power BI Business Analytics...
2015-07-12
767 reads
On Friday, James Phillips, Microsoft VP of Business Intelligence, announced the general availability of the new Power BI Business Analytics...
2015-07-12
253 reads
I’d like to make you aware of a three-hour training event that I will be presenting, hosted by SQL Server...
2015-07-11
664 reads
I’d like to make you aware of a three-hour training event that I will be presenting, hosted by SQL Server...
2015-07-11
234 reads
Please join me at the PASS Global Summit in Seattle for a half-day, 3-hour hands-on Power BI mini workshop. Bring...
2015-07-02
2,063 reads
By Vinay Thakur
Following up on my Part 1 baseline, the journey from 2017 onward changed how...
By Brian Kelley
In cryptography, the RSA and ECC algorithms which we use primarily for asymmetric cryptography...
By Steve Jones
In today’s world, this might mean something different, but in 2010, we had this...
Comments posted to this topic are about the item An Unusual Identity
Comments posted to this topic are about the item Dancing Robot Goes Rogue
Hi , i installed winscp on my pc, added it to GAC thru vs...
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