Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ryan010101

  1. ryan010101

    2nd Exchange server in domain, email delivery problem

    I turned on Kerberos logging and I'm now getting the below error. I've looked through the white paper but I'm not exactly sure how to fix this. So far today my email problem has not happened. I wonder if they are actually related. Event Type: Error Event Source: Kerberos Event Category...
  2. ryan010101

    2nd Exchange server in domain, email delivery problem

    We have an Exchange 2000 server running. I recently set up a Win2003 box with Exchange 2003, the goal to move everything from the old Exchange server to the new one. I have the new Exchange server running and everything seemed to work. I created a test mailbox on the new server and was able...
  3. ryan010101

    Which Setup /forestprep

    PSC, I currently have a SBS 2000 setup and I'm attempting to install a Win2k3 server and Exchange 2003 on a new server (actually Win2k3 is already installed and running). I'm assuming, even though I'm using SBS, I need to still do the "adprep /forestprep" and "adprep /domainprep" on the W2k box...
  4. ryan010101

    Small Business Server to Exchange 2003 question

    Our Exchange Server is part of Small Business Server 2000. This server is getting bogged down so we want to get another server and install Exchange 2003 on it and stop using the Exchange part of SBS on our old server. Is there any limitation of SBS that would prevent this? I searched but...
  5. ryan010101

    help, need to add data from another table to this query

    GingerR, I'm not sure what your point is. Should I not ask a question because I previously asked a similiar question months ago (and never received a response)?
  6. ryan010101

    help, need to add data from another table to this query

    Anybody else what to take a stab at this?? thanks Ryan
  7. ryan010101

    help, need to add data from another table to this query

    Thanks but I didn't mention this before but I need it to display items that are on programs even if the customer hasn't made any purchases yet. Add that to the where clause and it only returns items on the program that the specified account has purchased. I need it to display all items on the...
  8. ryan010101

    help, need to add data from another table to this query

    Thanks for the response. Isn't that just going to make it so customer_num is included in the results? I need to be able to specify a customer_num and have only their sales summed in Sum(e.qty_ordered). thanks
  9. ryan010101

    help, need to add data from another table to this query

    I need to modify this query again. Currently I'm summing the "qty_ordered" from the table "excsales". Another field in the table "excsales" is customer_num. I am going to provide a customer number and I want to only sum the qty_ordered for that particular customer. Can that criteria also be...
  10. ryan010101

    help, need to add data from another table to this query

    catalog" looks like this: sku product (this is the product name) upc There are other fields but these are the only ones I need. For more bg on what I'm doing, this is being used on a web page. There are "programs" and SKUs are assigned to programs. These SKUs that are on programs are stored...
  11. ryan010101

    help, need to add data from another table to this query

    Three tables: items_on_programs, execsales, catalog Below is the current query I have which uses items_on_programs and execsales. The results displays a list of SKUs and shows how manu were ordered (SUM(e.qty_orderd). I need to not just display the SKU, but also the product name and UPC for...
  12. ryan010101

    SUM query problem

    The problem was the ORDER BY part. Must not be able to use SUM in that part. This works for me: SELECT itm_ord_num, Sum( qty ) AS Qty1, oper_id3, vfy_date FROM carton_contents WHERE vfy_date >= '2004-12-06' AND vfy_date <= '2004-12-06' GROUP BY itm_ord_num, oper_id3, vfy_date ORDER BY Qty1...
  13. ryan010101

    SUM query problem

    If I take out the ORDER BY part, it works. thanks
  14. ryan010101

    SUM query problem

    Thanks but I'm still getting "Invalid use of group function". ??

Part and Inventory Search

Back
Top