Viewing 15 posts - 91 through 105 (of 203 total)
Thanks for all the feedback. It is greatly appreciated.
September 7, 2011 at 9:30 am
That is what I needed to know.
Thanks to everyone here for their help. It is appreciated.
June 20, 2011 at 12:38 pm
That was it. When using the Data Conversion it creates a copy of the input columns with the new data type. We were still using the original links.
Is there an...
June 20, 2011 at 12:07 pm
That answers my question. Two columns it is.
Thanks
March 10, 2011 at 12:33 pm
The "AND" in the Where Clause was the culprit. Thanks for all your help.
November 11, 2010 at 8:17 am
I am trying to link two tables based on the Work Order ID in a report. However, one of the table stores the Work Order type, ID, Sub ID, Lot...
September 2, 2010 at 2:46 pm
I feel stupid! Gotta love Monday's!
Thanks. I appreciate it very much.
May 3, 2010 at 3:05 pm
Table Definitions:
Cust_Order_ID (PK, FK, varchar(15), not null)
Part_Id (FK, varchar(30),null)
Desired_Ship_Date (datetime, null)
Sample Code (Used to return the sample data)
SELECT CUST_ORDER_ID, PART_ID, DESIRED_SHIP_DATE
FROM CUST_ORDER_LINE
WHERE CUST_ORDER_ID IN ('S31173', 'F-EMB FORECAST') AND PART_ID =...
December 10, 2009 at 12:51 pm
Here is the data I want to retrieve. I want to find all records where there is a forecasted order (F-EMB FORECAST) and a firmed Sales Order (S31173) with the...
December 10, 2009 at 12:09 pm
UPDATE CUST_LINE_DEL SET USER_ORDER_QTY = '9'
FROM CUST_LINE_DEL
JOIN CUST_ORDER_LINE ON CUST_LINE_DEL.CUST_ORDER_ID = CUST_ORDER_LINE.CUST_ORDER_ID
WHERE CUSTOMER_ORDER.ID LIKE 'F%' AND CUST_ORDER_LINE.DESIRED_SHIP_DATE < DATEADD(dd,60,getdate())
Got it. Thanks
December 9, 2009 at 11:44 am
What do I need to place at the beginning and end of my code to get it to look correctly on the posts? /code obviously did not work.
December 9, 2009 at 10:07 am
I got it. I did not need to join one of the tables. Thanks for all the help.
/code
UPDATE CUST_LINE_DEL SET USER_ORDER_QTY = '9'
FROM CUST_LINE_DEL
JOIN CUST_ORDER_LINE ON CUST_LINE_DEL.CUST_ORDER_ID = CUST_ORDER_LINE.CUST_ORDER_ID
WHERE...
December 9, 2009 at 9:10 am
Viewing 15 posts - 91 through 105 (of 203 total)