Viewing 15 posts - 16 through 30 (of 119 total)
Thanks Steve.
Just extended your query to identify current years thanksgiving day:
declare @date datetime
set @date=dateadd(yy,0,getdate())
SELECT DATEADD( DAY, 5-datepart(dw,DATEADD( WEEK, -1, DATEADD( MONTH, 11, DATEADD(yy, datediff(yy, 0, @date), 0)))), DATEADD( WEEK,...
February 6, 2015 at 4:48 am
Thanks Steve...
Just to add one point here:
Windows functions can be used directly in SELECT and ORDER BY Clauses only..
February 5, 2015 at 3:44 am
Good Question...
That's why I prefer using count(1)
February 2, 2015 at 9:56 pm
or something like:
SELECT *
FROM vm
WHERE vm.visit_date between DATEADD(DAY,1,EOMONTH(CURRENT_TIMESTAMP,-2)) AND
CURRENT_TIMESTAMP-1;
January 29, 2015 at 12:35 am
I see Other place where Microsoft is referring tabular database as cube.
in SSDT,right click your tabular project>Properties>Under Deployment server
I see "model" as cube name..
July 3, 2014 at 12:18 am
Koen,I second that tabular model database is not a cube..
But I am seeing some Microsoft guys using word "tabular cube"
July 1, 2014 at 6:34 am
or try creating triggers
June 11, 2014 at 3:16 am
is your table compressed?
May 27, 2014 at 6:33 am
Also try attunity connector for oracle source.
October 11, 2013 at 3:18 am
Koen Verbeeck (10/4/2013)
Easy one thanks!(it's also the only useful new feature in SQL 2014 so far)
In SQL server 2014,Microsoft seems to be mainly banking on Hekaton (In-memory) feature + Hadoop...
October 5, 2013 at 9:37 pm
Viewing 15 posts - 16 through 30 (of 119 total)