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 TouchToneTommy 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 jtokach

  1. jtokach

    VBScript creates one long line

    Thanks JontyMC. This is the answer I was looking for. It needed quite a bit of modification on my side as I'm not doing this over HTTP, but all turned out well. Here's the basic mods I needed to make for those interested in the .VBS version. The XSL needed to be different. I don't know why...
  2. jtokach

    VBScript creates one long line

    Hi there, The following script produces one long line of tags. <?xml version="1.0"?> <rootElement><childElement1/><childElement2/></rootElement> How do you format the output to look like this using the XLMDOM? <?xml version="1.0"?> <rootElement> <childElement1/> <childElement2/>...
  3. jtokach

    Query to build fields dynamically

    The table contains the following: workstation hotfix01-01 hotfix01-02 hotfix02-01 hotfix02-02 etc. ------------------------------------------------------------------ computer1 YES NO YES YES computer2 YES YES NO YES Since M$ comes out with...
  4. jtokach

    Query to build fields dynamically

    Hi there, I have a table where columns are added frequently. I'd like to create a query, in Access, that only list some fields based on the field name. For instance, five columns are prefixed with "MS04", like MS04-011 and MS04-012. The query should build the results table dynamically and...
  5. jtokach

    MySQL Removes Characters?

    Yeah, I figured it would turn out to be an escape char... I should've RTFM. Thanks for your time!
  6. jtokach

    MySQL Removes Characters?

    Hi there. When I try writing the string \\Server\Share to a MySQL database, something in MySQL seems to be removing \'s. The above line looks like this after entry: \ServerShare I successfully run the exact same SQL code in Access and it works fine???
  7. jtokach

    MySQL Keeper

    Is anyone familiar with or have any experience with MySQL Keeper? http://www.fonlow.com/mysqlkeeper/ The manual says nothing about how it performs the backups and whether or not it's safe as a hot backup tool.
  8. jtokach

    Execute Remote Command

    Thanks!
  9. jtokach

    Execute Remote Command

    I would like to execute a command remotely and retrieve the output in the cosole window. I have been able to do this with WMI and WSH by redirecting output to a file on the remote box and reading in the output via admin share, but I cannot seem to stream the output directly? Thanks, Jim

Part and Inventory Search

Back
Top