Viewing 15 posts - 76 through 90 (of 124 total)
Found the issue. I was selecting * in the primary stored procedure so it was returning two datasets and that one is the initial one. Commented that out...
November 16, 2009 at 12:00 pm
Jeff Moden (11/12/2009)
November 13, 2009 at 5:58 am
Jeff (or anybody),
Because the data is being stored in a SQL Server 2000 database, but we also have a working 2005 version on a different server, would there be a...
November 2, 2009 at 5:29 am
I still do need help with it. We have had continued IT "fires" at the plant with some fiber networking issues and I have been keeping busy with other...
October 31, 2009 at 4:56 am
Thanks again. I was not thinking about the version that we are using. When the time comes, I hope it is not going to be a big pain...
October 26, 2009 at 8:26 am
Again, thanks for the help with this, however I just ran into a couple of issues that I might be able to work through. Unfortunately when I ran this...
October 26, 2009 at 5:53 am
Thank you very much for this. I have not been able to review it yet as we are having other IT issues that are taking my time. But...
October 23, 2009 at 8:45 am
Jeff, I really appreciate this help. Here it is with the CartonCopy included:
IF OBJECT_ID('TempDB..#tempGlue','U') IS NOT NULL
DROP TABLE #tempGlue
CREATE TABLE #tempGlue
(
ScheduledDate datetime,
Shift char(1),
CaseCode char(10),
CartonCopy char(10),
Scheduled int,
StartDate datetime,
CurrentGluedPieces int
)
SET...
October 22, 2009 at 10:26 am
Jeff, wondering if you were still able to help with this. I have had a busy couple of days, but I will be revisiting this project this afternoon.
Thanks,
Brad
October 22, 2009 at 5:10 am
The reason that there might be two different values is due to another column that was not included called CartonCopy. A product (CaseCode) might have two or even three...
October 20, 2009 at 4:17 am
Jeff,
Thanks for the reply. I reviewed your article and took the time to create the temp table and insert the data there. Here it is:
IF OBJECT_ID('TempDB..#tempGlue','U') IS NOT...
October 19, 2009 at 6:28 am
Okay, here it goes:
The raw data for just one case code (02725). The actual raw table contains close to 500 rows with different case codes:
ScheduledDate ...
October 16, 2009 at 12:55 pm
Thanks Steve for the reply. I enjoy reading your editorials every morning. Anyway, basically what I need to do is to "aggregate" or accumulate the value from Scheduled...
October 16, 2009 at 11:41 am
Thanks so much! That seemed to work.
October 13, 2009 at 9:10 am
Viewing 15 posts - 76 through 90 (of 124 total)