Viewing 15 posts - 1 through 15 (of 63 total)
Thanks for the reply. Seems like a viable solution. I will have to look into that.
January 15, 2019 at 5:49 am
Steve. You are clearly miserable and you have not been helpful..at all. You didn’t answer any question with any substance. You are an “elitist” and I strongly emphasize the...
September 11, 2017 at 2:40 pm
Thanks Thom A..CTE was the solution for this, for me. Anyhow, here it is. Thanks again.
declare @Job varchar(20)
set @Job = 'P000111045'
with ItemDistinct
as...
September 11, 2017 at 11:49 am
Steve,
In the many years I have come to SQL Server Central for some help, this is the only time I've ever had a bad experience.
Based on your pattern...
September 11, 2017 at 11:45 am
Thanks for your response, I was thinking CTE too but, not 100%. Will try now.
The 1=1 is maybe the coolest time saver ever!!!!
It enables you to quickly...
September 11, 2017 at 8:58 am
Thanks..To add a bit more context, I will add the SQL;select distinct
JI.item
from JobInfo as JI
where (1 = 1)
and (JI.job = 'P000111032')
This...
September 11, 2017 at 8:43 am
June 2, 2017 at 8:00 am
Thanks so much John..
I made a minor change but wnat to be 100% confident. Can you take a look?
OriginalAND dbo.manifests.manifest_date >= DATEADD(DAY,CASE WHEN DAY(manifest_date)=1...
June 2, 2017 at 7:22 am
Thanks, going to try this.
December 5, 2016 at 2:01 pm
I ended up using this. Thanks
WHERE 1=1 AND I.InvoiceDate >= DATEADD(yy,-3,DATEADD(yy,DATEDIFF(yy,0,GETDATE()),0))
November 29, 2016 at 2:08 pm
Thanks for the reply. I created what I was looking to do.
August 1, 2016 at 2:27 pm
AS a follow-up.
The view seems to be the issue. When taking the SQL from the view, it imports in less than 10 seconds using the SQL import wizard. When doing...
July 18, 2016 at 9:23 am
Thanks for the quick responses.
Here is what I ended up with.
The issue I was having is with the default end date. For every date other that the 1st, it...
March 1, 2016 at 12:19 pm
Hi Guys,
thanks for the great solution. I guess if it were a perfect world, I'd be able to change the SSRS date/Time params to customize a time period.
Your solutions both...
February 16, 2016 at 12:32 pm
Viewing 15 posts - 1 through 15 (of 63 total)