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. NormRumac

    Using sqlcmd

    O.k. I answered my own question... Just put Square Brackets around the database name....[SAMPLES-DATA].
  2. NormRumac

    Using sqlcmd

    I am trying to execute a basic command to backup my database using the sqlcmd utility that comes with Sql Express 2005. Unfortunately, my database name has a dash in it Database name is "SAMPLES-DATA". When I try to execute the following command, I get an error: SQLCMD -S FILESERVER -E -Q...
  3. NormRumac

    Which editbox has focus?

    Hi. This should be a simple question, but I can't figure it out. I have a dialog box with 2 edit boxes. Intially, edit box1 has focus. However, the user can press TAB, or use the mouse to focus on the 2nd edit box. My question is, how can i determine when the 2nd edit box gets focus, or...
  4. NormRumac

    Internet Explorer - Restrict Access to all sites but One

    Hi. I need to allow my users to have access to internet explorer, but only to access web pages from one specific IP address. They should not be able to view pages from any sites other than this one (which happens to be stored on a remote server). How can I accomplish this?
  5. NormRumac

    Keeping Number of Rows Fixed

    Yes, surprisingly this is not the 1st time i've been told to stay away from triggers. I guess it can get kind of messy if one is not careful... Thanks, --Norm
  6. NormRumac

    Keeping Number of Rows Fixed

    I use one of the tables in my database as a log of user transactions. I don't want table growing indefinitely large, so I was wondering if I can prespecify a way keeping the table fixed at say 100 rows. In other words, once the table is filled with the a 100 rows, the next inserted row will...
  7. NormRumac

    varchar, datetime and single quotes issue

    donuntman...YOU ARE A GENIUS! That was the problem. For some of the rows, the datearrival field was not input correctly (i.e. Not in the form like 'March 4 2004'). I fixed that and now the query works! Thanks, --Norm
  8. NormRumac

    varchar, datetime and single quotes issue

    Unfortunately, I get this same error message, even with your statement: "Syntax error converting datetime from character string
  9. NormRumac

    varchar, datetime and single quotes issue

    I got a problem with an sql statement: In a table there is a field of type varchar. That field ,called datearrival, contains human readable dates such as "March 4th 2004" (no quotes). I want to select all items for which the number of days between datearrival and the current date is > 50. So...
  10. NormRumac

    Backup Problem

    That did the trick! Thanks! --Norm
  11. NormRumac

    Backup Problem

    Several months ago I foolishly named my SQL (actually MSDE) database "my-database". Over the last few months several applications which reference the database with this name have been created. Now that the database has recently gone from "test" mode, to "production" mode, I want to start doing...
  12. NormRumac

    Basic Question: extracting data from an xml file

    Thanks for the help guys. I got it working now!
  13. NormRumac

    Basic Question: extracting data from an xml file

    Also, one more question, if i am going to use DOM and make an XMLHTTP request, does that impose any requirements on the remote webserver? For instance, does the remote webserver need to be running ASP?
  14. NormRumac

    Basic Question: extracting data from an xml file

    Thanks for your help. Looks like I will have to read up on this DOM stuff since I'm totally new to XML.
  15. NormRumac

    Basic Question: extracting data from an xml file

    I want to obtain the value of the exchange rate relative to the Canadian dollar. In other words, from the link above, I want the value (1.308) between the <value> tag listed below: <Country UnitName="Dollar">Canada</Country> <Value InUsd="false">1.308</Value> I don't want to have to load up...
  16. NormRumac

    Basic Question: extracting data from an xml file

    Forgive me as I am a total newbie when it comes to XML. I want to obtain particular data (today's foreign exchange rate) from the following file residing in some remote webserver (see URL below)...
  17. NormRumac

    connecting to mysql instance on your web hosting provider

    Hi. This question might be somewhat unrelated, but I was wondering if it possible to connect to a remote instance of mysql running on the provider that hosts my website. Basically, I want to be able to access the tables within my database, without having to use the phpMyAdmin web interface...
  18. NormRumac

    Creating a DialogBox from within a DialogBox

    Thanks for the info. I'm doing something similar to that now also. --Norm
  19. NormRumac

    WinXp automatically locking the screen after some idle time

    Oops! I spoke to soon... It seems that your suggestion itswork, does not work for me. jthiessen, I was unclear about your solution. When I go to user accounts, I do not see any way of changing the screen saver properties. Maybe I'm confused. Could you elaborate on what your solution is? --Norm
  20. NormRumac

    WinXp automatically locking the screen after some idle time

    itswork, I think you are correct. I tried what you said, and (so far...) I dont seem to be getting the problem now. I'll wait and see. Thanks, --Norm

Part and Inventory Search

Back
Top