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 IamaSherpa 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. melberti

    Can't drop into ComponentServices after SP2 upgrade

    I'm unable to drop a DLL into ComponentServices since the install of SP2 on our Windows 2003 server. I get the following: An error occurred while processing the last operation. Error code 80131700. The event log may contain additional troubleshooting information. It appears that it may be...
  2. melberti

    function returning error

    *red face* I looked closer at my function and discovered I had my return variable declared as a varchar instead of an int. Thanks anyway.
  3. melberti

    function returning error

    I have a pagehit function returning the error: "Syntax error converting the varchar value '*' to a column of data type int." The function does a count() on an integer column (pagehits), with a where clause matching pagename, and returns the integer pagehits. The function is actually...
  4. melberti

    Date/Time as Date Only

    Transact SQL, I guess... I'm building a dynamic querystring. I'm trying to compare a date provided by a user with a date/time stamp stored in the database -- I want to disregard the time and look only at the date itself. I know there's no DATE_PART_ONLY_OF -- I was simply trying to show where...
  5. melberti

    Date/Time as Date Only

    I'm trying to do the same thing, essentially. Here's the gist of my SQL: SELECT * FROM TABLE WHERE DATE_PART_ONLY_OF(datetime column name) = '09/20/2002'; I tried format(columname,'mm/dd/yyyy') and it errors on me, that format is not a recognized function name. Thanks for any help.
  6. melberti

    sending file via ftp w/ batch file

    ddnvleu, you need to add a line "prompt" in your text file after the connection is established to toggle off the prompt mode. If you write the line again later, it will toggle back on.
  7. melberti

    sending file via ftp w/ batch file

    I'm using this to do FTP, but I need to return a file listing (results from LS command)... how might I do this? Any ideas?

Part and Inventory Search

Back
Top