Viewing 15 posts - 76 through 90 (of 95 total)
January 27, 2017 at 7:46 am
Thank you to everyone for your help and time in this post.
December 8, 2016 at 8:23 am
Great, thanks for the tip Thom. I managed to get it done.
alter VIEW [dbo].[CarouselDailyMileages] AS
SELECT
DATENAME(DW,J.DELDATEANDTIME) AS [WEEKDAY],
J.DELDATEANDTIME AS [DATE],
isnull(J.colpostcode,'EMPTY') + '...
December 8, 2016 at 8:22 am
There is a slight problem in that if J.DELLPOSTCODE is blank in the database it seems to not put any post codes at all in the destination field it doesn't...
December 8, 2016 at 8:05 am
Awesome thank you Chris, that seems to have done the trick for me.
December 8, 2016 at 7:40 am
Hi Phil,
I have removed that line and it's got the problem where it takes a long time to run again and puts a lot of postcodes repeating in the "destination"...
December 8, 2016 at 7:37 am
Hi Chris,
This is how it is currently....
alter VIEW [dbo].[CarouselDailyMileages] AS
SELECT DATENAME(DW,J.DELDATEANDTIME) AS [WEEKDAY],
J.DELDATEANDTIME AS [DATE],
(J.colpostcode +...
December 8, 2016 at 7:19 am
I think the reason it's taking so long to run is that I have put that line in the wrong place.
Whats happening now is that if a job has extra...
December 8, 2016 at 5:14 am
I decided to just let it run this time instead of killing it and it is working it just takes about 5 minutes to run. Brilliant. thank you
December 8, 2016 at 4:32 am
Ok Thom, no problem. Thank you taking the time to help me out.
December 8, 2016 at 4:17 am
I use the view to get the bulk of what I need that allows me to use a simple query in SSRS. This is the query in SSRS
SELECT
CarouselDailyMileages.WEEKDAY
...
December 8, 2016 at 3:59 am
it is something to do with that line
WHERE J.JOBID IN (SELECT sq.JOBID FROM dbo.Drops sq)
that it doesn't like
December 8, 2016 at 3:55 am
No graphics. It's as if it's stuck in an infinite loop of some sort. It's only a small report that they export to excel and it's filtered down to just...
December 8, 2016 at 3:42 am
Viewing 15 posts - 76 through 90 (of 95 total)