Viewing 15 posts - 271 through 285 (of 812 total)
DataTherapist (2/23/2015)
What's the fine details here that I'm missing?
A clustered columnstore index is regulating how...
February 23, 2015 at 10:11 am
Interesting, I just learned about them last two weeks.
😀
February 23, 2015 at 1:01 am
Koen Verbeeck (2/20/2015)
Carlo Romagnano (2/20/2015)
BY <crypto_list> [ ,...n ]
<crypto_list> ::=
CERTIFICATE cert_name
|...
February 20, 2015 at 3:18 am
ADD [ COUNTER ] SIGNATURE TO module_class::module_name
BY <crypto_list> [ ,...n ]
<crypto_list> ::=
CERTIFICATE cert_name
| CERTIFICATE cert_name [ WITH...
February 20, 2015 at 1:41 am
pmadhavapeddi22 (2/11/2015)
select * from sys.syscacheobjects where objtype ='adhoc' and...
February 11, 2015 at 1:30 am
Sean Lange (1/27/2015)
Carlo Romagnano (1/27/2015)
with c
as(
SELECT * FROM (VALUES
(1,2013,1,100)
,(1,2013,1,200)
,(1,2014,0,500)
,(1,2014,1,200)
,(2,2013,1,200)
,(2,2013,1,200)
,(2,2014,1,100)
,(2,2014,1,100)
) AS V([Customer],[Salesyear],[Complete],[Amount])
)
SELECT
...
January 27, 2015 at 7:29 am
Raghavendra Mudugal (1/27/2015)
Carlo Romagnano (1/27/2015)
Strange, but the version with PIVOT is a bit slower than that with GROUP BY. See execution plan!...
actually I was doing the same thing on...
January 27, 2015 at 4:04 am
Strange, but the version with PIVOT is a bit slower than that with GROUP BY. See execution plan!
with c
as(
SELECT * FROM (VALUES
(1,2013,1,100)
,(1,2013,1,200)
,(1,2014,0,500)
,(1,2014,1,200)
,(2,2013,1,200)
,(2,2013,1,200)
,(2,2014,1,100)
,(2,2014,1,100)
) AS V([Customer],[Salesyear],[Complete],[Amount])
)
SELECT
*
FROM...
January 27, 2015 at 2:28 am
Extremely easy!
Why do people get it wrong?
I expected 100% of correct answers!
😀
January 23, 2015 at 1:00 am
Hugo Kornelis (1/22/2015)
Carlo Romagnano (1/22/2015)
Hugo Kornelis (1/22/2015)
January 22, 2015 at 7:43 am
Hugo Kornelis (1/22/2015)
January 22, 2015 at 2:46 am
rmechaber (1/21/2015)
Some additional explanation from BOL (https://msdn.microsoft.com/en-us/library/ms175523%28v=sql.105%29.aspx):
If a run-time statement error (such as a constraint violation) occurs in a batch, the default behavior in the...
January 22, 2015 at 12:55 am
Koen Verbeeck (1/20/2015)
Hence, the "correct" answer is incorrect.
(I though I was losing my...
January 20, 2015 at 1:18 am
Viewing 15 posts - 271 through 285 (of 812 total)