Viewing 15 posts - 7,441 through 7,455 (of 8,760 total)
Quick question, are you using tabular SSAS/dax?
😎
August 22, 2014 at 12:04 am
bhavik.bk (8/21/2014)
was reading Distinct function on technet. There is a bit about VALUES FUNCTION. Anyone has idea how to use it? I tried using like distinct for a column,but...
August 21, 2014 at 11:17 pm
Quick though, first move towards an SQL set based solution is to change the word Loop to Group. Each Group starts with Coke/Fanta and ends in a HardDrink:doze:
😎
Here is an...
August 21, 2014 at 10:54 pm
After the second coffee I realised that the solution was in fact "current row and X following", here is a "X preceding and current row" improvement.
😎
use master
go
set nocount on
go
/**********************
** BUILD...
August 21, 2014 at 10:46 pm
Here is a little "first coffee in the morning" solution:doze:
It uses two instances of a Tally CTE to generate a set N{N+0,,,,N+x} for framing the x rows preceding and current...
August 21, 2014 at 10:31 pm
Edit: Oops, thought I was replying to this thread :w00t:
You are spot on, now I can reply which I could not do before your second post.:-)
😎
August 21, 2014 at 1:11 pm
Here is a quick suggestion, should result in more consistent plan (for better or worse)
😎
CREATE PROCEDURE [Quotation].[Get_Quotes_LH] ( @From DateTime = null, @To DateTime = null )
AS
BEGIN
...
August 21, 2014 at 10:41 am
Quick thought, to find the conversion causing the error, get the execution plan XML and look for an implicit cast to datetime. Also any value higher than 2958463 (9999-12-31) will...
August 21, 2014 at 10:27 am
First noticed this yesterday, also sometimes the format changes, could be a separate CSS issue though.
Kind of annoying, spent about an hour writing an answer and then I couldn't...
August 21, 2014 at 10:08 am
Lynn Pettis (8/21/2014)
Eirikur Eiriksson (8/21/2014)
Lynn Pettis (8/21/2014)
Eirikur Eiriksson (8/21/2014)
Quick note, INFORMATION_SCHEMA is an ANSI compliant metadata view collection added in 2000 if I remember correctly, sys.* is SQL Server specific.😎
It...
August 21, 2014 at 10:01 am
Lynn Pettis (8/21/2014)
Eirikur Eiriksson (8/21/2014)
Quick note, INFORMATION_SCHEMA is an ANSI compliant metadata view collection added in 2000 if I remember correctly, sys.* is SQL Server specific.😎
It may be but it...
August 21, 2014 at 9:35 am
Quick note, INFORMATION_SCHEMA is an ANSI compliant metadata view collection added in 2000 if I remember correctly, sys.* is SQL Server specific.
😎
August 21, 2014 at 8:13 am
Make certain that the SQL Server 2008 R2 SSIS components are installed on the server, normally found under C:\Program Files (x86)\Microsoft SQL Server\100\DTS
😎
August 21, 2014 at 6:37 am
Quick thought, have you tried using WITH RECOMPILE?
😎
In addition, are the statistics up to date?
August 21, 2014 at 6:29 am
Phil Parkin (8/21/2014)
WHERE NOT EXISTS ( SELECT B1.[BedDays]
...
August 21, 2014 at 3:54 am
Viewing 15 posts - 7,441 through 7,455 (of 8,760 total)