Viewing 15 posts - 1 through 15 (of 19 total)
I appreciate the help. I talked with the lady that knows SQL here. I didnt even need to add the JOB side of the project. Just the PO side. Here...
January 18, 2011 at 5:05 am
lol wow. you were right.. it was as simple as:
SELECT fcpartno, ISNULL
...
December 10, 2010 at 8:38 am
I'm pretty positive I did. I may be mistaken though..
FROM (SELECT
dbo.invend.fpartno,
...
December 10, 2010 at 6:55 am
We are running on Compatability (80). I know such things as Pivot tables are not do-able at this level. What about CTE's ?. I tried this code on (80):
SELECT 'Priority'...
December 10, 2010 at 6:18 am
This part runs fine
SELECT *
FROM (SELECT
dbo.invend.fpartno,
...
December 9, 2010 at 8:09 am
Microsoft SQL Server 2000 - 8.00.760 (Intel X86) Dec 17 2002 14:22:05 Copyright (c) 1988-2003 Microsoft Corporation Standard Edition on Windows NT 5.2 (Build...
December 9, 2010 at 7:03 am
Well your CTE looks like it would work. I wonder why I'm getting an error that says: 'Common Table Expression' is not available in this server version. I am...
December 9, 2010 at 5:04 am
I need them listed in 3 different columns. For instance, when looking at my purchasing queue.. When I want to order a particular part I want to be able to...
December 8, 2010 at 9:46 am
No. Because I need them listed in 3 different columns. For instance, when looking at my purchasing queue.. When I want to order a particular part I want to be...
December 8, 2010 at 9:44 am
Priority is either 1, 2, or 3 based on a couple of different things. The math for that is already done in the first view. this is the second view.
I...
December 8, 2010 at 9:36 am
Your code worked. I understand it too now. Thanks alot.
-Jeff
December 2, 2010 at 6:00 am
Finished the Project! I'm pumped haha. I'll post the code on monday and tell ya how I did it. Have a good holiday! 😀
November 24, 2010 at 10:00 am
Well your code returns all 0's for one year value and one year WTY. But another problem I seem to be facing is multiple orders of the same part. The...
November 24, 2010 at 5:49 am
WayneS (11/23/2010)
You are taking the value returned from the GetDate() function, and subtracting one year from...
November 24, 2010 at 5:00 am
Viewing 15 posts - 1 through 15 (of 19 total)