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 SkipVought 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. DavidSL

    Select the first matching record

    The following query will select only the 1st contact for each projID: Select i.projID, c.contact from ProjectInfo i left join ProjectContacts c On i.projID = c.projID Where c.Contact In (Select Top 1 contact From ProjectContacts where projID = i.projID)
  2. DavidSL

    Get value from formula

    Thanks everybody! Both work.
  3. DavidSL

    need help w/ simple DELETE Query in SQL Server

    Truncate Table tablename
  4. DavidSL

    Get value from formula

    It works great! Thanks ADoozer!
  5. DavidSL

    Get value from formula

    Thanks for your quick response John! Is EVal function available with VB?
  6. DavidSL

    Get value from formula

    I retrive some data like "56+88/12" from database. It's considered as string. How to get the value from it? Thanks in advance!
  7. DavidSL

    Distinct with multiple column values?

    Try It: Select * From myTable Where TimeStamp In (Select Min(TimeStamp) From myTable Group By ID)
  8. DavidSL

    Distinct with multiple column values?

    Select ID, Min(TimeStamp) From myTable Group By ID
  9. DavidSL

    Anyone using FTP?

    Xceed FTP control is good.
  10. DavidSL

    With ActiveX, I run a qry to get a

    With ActiveX, I run a qry to get a list of CustomerIDs. Then run a loop -- each time, pass one id into a sp and assign the return to a temp table. Then insert the data into an excel file (may split the data into more than one worksheets). If just one ID has been passed, it's ok. If multi IDs...
  11. DavidSL

    UPLOADING TEXT FILES WITH DTS?POSSIBLE?

    Did you try to use ActiveX Script task?
  12. DavidSL

    UPLOADING TEXT FILES WITH DTS?POSSIBLE?

    I did some similar works before. I set two steps for the job: 1. export data from the db table to the text file. The text file is located in a network drive. 2. use an FTP task to copy the file to an iis directory. Open the FTP task. Select Location tab. Select Directory as Source. Type in...
  13. DavidSL

    Stand along vbs file debugging

    Please tell me what MSFT stands for? I haven't found it.
  14. DavidSL

    Stand along vbs file debugging

    Hi, I have a stand along vbs file. Can somebody tell me how to debug it? Thanks! David

Part and Inventory Search

Back
Top