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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. IFELSETHEN

    Converting Queries For Access Project

    ...I use is: SQL Server 2000 Developer's Guide, Osborne, ISBN: 0072125691 You might want to take a look at Chapter 17, Developing Applications Using DTS. DTS is a good tool and it's hard to find good docs about using it. John ********************* John Nyhart www.nyhart.com *********************
  2. IFELSETHEN

    Alter Table, reduce Field Size

    ...But, if you really need to do this then you need to find out the max length of any word (don’t forget to TRIM the blanks). Then after you know this value then you can resize the field. It would be a two step process. John ********************* John Nyhart www.nyhart.com *********************
  3. IFELSETHEN

    Converting Queries For Access Project

    ...Some functions could become stored procedures while others could be turned into triggers. If the function is very complex then you will have to handle it on the client side (after retrieving the recordset as raw data). John ********************* John Nyhart www.nyhart.com...
  4. IFELSETHEN

    Outer Join with More than 2 Tables "Operator Missing"

    I just notice that this would require that there were records for the customer in all four tables. This may not work ..... try 'HAVING' .... John ********************* John Nyhart www.nyhart.com *********************
  5. IFELSETHEN

    Outer Join with More than 2 Tables "Operator Missing"

    ...d WHERE a.customerNo = b.customerNo AND a.customerNo = c.customerNo AND a.customerNo = d.customerNo GROUP by a.customerNo, a.name ******************************************* If this doesn't work then look at the 'HAVING'. John ********************* John Nyhart www.nyhart.com...
  6. IFELSETHEN

    MX and AS/400 Data Area

    ...of CF. I see that I could get the Data Area through the Toolbox with Java. I also have heard that the new MX server will let me see return values from a SP. If this is true then I could use a CL. Just thoughts ...... John ********************* John Nyhart www.nyhart.com *********************
  7. IFELSETHEN

    MX and AS/400 Data Area

    ...anyone know if MX can directly get into AS/400 Data Areas without using Java Toolbox or some other method? I have a project coming up that I need to get into the Data Area and just doing some up-front digging. Thanks, John ********************* John Nyhart www.nyhart.com *********************
  8. IFELSETHEN

    Run on the hour

    Thanks ..... I have never needed to schedule before and was unaware of this tag. John ********************* John Nyhart www.nyhart.com *********************
  9. IFELSETHEN

    Run on the hour

    ...file and FTP's that file to my desktop. I need to start this process every hour. What sort of processes that you have come up with to do this? Java Script or VB from the desktop? Thanks, John Webmaster Venetian Hotel/Casino ********************* John Nyhart www.nyhart.com...
  10. IFELSETHEN

    Trouble opening recordset

    ...as Expr1 from tblBOM WHERE tblBOM.JobNo = " & JobNo If JobNo is a string then it should look like this: sqlmax = "SELECT Max(BubbleNo) as Expr1 from tblBOM WHERE tblBOM.JobNo = '" & JobNo & "'" John ********************* John Nyhart www.nyhart.com...
  11. IFELSETHEN

    Query with subform and too many records?

    Hi, I believe that you need to use an outer join. John ********************* John Nyhart www.nyhart.com *********************
  12. IFELSETHEN

    Keyword Search

    ...in a variable and the statement would look something like this. Search_Var = “RPG” SELECT Field1, Field2, Field3 FROM Tab_Name WHERE Field1 LIKE “’*” & Search_Var & “*’” OR Field2 LIKE “’*” & Search_Var & “*’” OR Field3 LIKE “’*” & Search_Var & “*’” The * is a wildcard symbol and it...
  13. IFELSETHEN

    Multiple Parameter Query

    Hi .... If I hear you correctly you can do this with sub-selects. Something like this: Select (Select statement for Index 1) as number1, (Select statement for Index 2) as number1, Etc..... FROM ..... HTH, Regards John ********************* John Nyhart www.nyhart.com *********************
  14. IFELSETHEN

    SQL Query , Pls Help !!

    ...the client name without the non alphanumeric characters and then on the second pass you can do the LIKE statement. With the fast CPU’s that we are now using this will only be a few seconds of wait for the client. Regards, John ********************* John Nyhart www.nyhart.com...
  15. IFELSETHEN

    UPDATE QUERY

    You are close. First you need to fix Count(*) to a real field name. Second you need a WHERE clause in your UPDATE statement. Something like this ….. UPDATE T-Sellers SL SET NumOfSales = (SELECT Count(SA.anyField) FROM T_Sales SA WHERE SA.Seller = SL.ROW_ID)...
  16. IFELSETHEN

    That darn little box ...

    Ahhhhhh ..... perfect. Thanks ..... John ********************* John Nyhart www.nyhart.com *********************
  17. IFELSETHEN

    That darn little box ...

    ...<a class=&quot;details&quot; href=&quot;/casino/vpc_grazie.cfm&quot; style=&quot;text-decoration: none&quot;><img src=&quot;assets/click_for_details.gif&quot; width=&quot;67&quot; height=&quot;10&quot;></a> Thanks .... John ********************* John Nyhart www.nyhart.com *********************
  18. IFELSETHEN

    Missing the rest of the words

    Carl .... your the man of the hours ..... thanks to both of you for the help ..... it now works. John ********************* John Nyhart www.nyhart.com *********************
  19. IFELSETHEN

    Missing the rest of the words

    ...then one words. Like: Green Cars. The problem is when I evaluate the FieldName(s) that are sent I only get Green not Green Cars. Here's the code. ************ SELECT CODE ************************** <select name=fieldFrom size=5 style=&quot;width:120;&quot; multiple> <cfif...
  20. IFELSETHEN

    Average no of records per day

    Hi .... I guess that you have lost me in what you are trying to get as results. .... did the web site about two years ago .... all the movement is done with CSS. John ********************* John Nyhart www.nyhart.com *********************

Part and Inventory Search

Back
Top