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!

Recent content by richrich05

  1. richrich05

    Unable to load translation shared library error

    Hi I'm trying to build a DTS using SQL 2000 to import data from a informix server. installed and configured the driver on my sql2k server and was able to build my DTS but when i run it i get a error stating "[Informix][Informix ODBC Driver]Unable to load translation shared library (DLL)" anyone...
  2. richrich05

    RESTORE LOG Issue

    Hi I have accidentally dropped six key tables from my database and i'm trying to recover them from the transaction log. Whenever i use the following command in sql query analyzer. USE Master RESTORE LOG TSIT FROM DISK = 'D:\Databases\Microsoft SQL Server\TeamDB\Data\MSSQL\Data\TeamDB_Log.LDF'...
  3. richrich05

    Encrypting files using PGP in SQL

    Thanks all for the advise. I've started playing with open pgp and think that i'll use that for my PGP encryption needs.
  4. richrich05

    Encrypting files using PGP in SQL

    Hi All, I'm totally lost where to start. i need to start encrypting files sent daily to my supplier. I currently have a DTS that controls the creation and transfer of the file. How do i encrypt a file using SQL 2000 instances?
  5. richrich05

    Ftp excel files through DTS Issue

    Anyone run into any problems downloading excel files through the FTP.exe process in a DTS? For some odd reason the excel files that i importing seem to show up corrupted. I use Execute Process task to run the script: Win32 process: ftp.exe Parameters: -i...
  6. richrich05

    Capturing Logged In User

    I wrote <%Response.Write(Request.ServerVariables("LOGON_USER"))%> and it returned a blank string my server allows for Anonymous Access to the sites on it.
  7. richrich05

    Capturing Logged In User

    Does anyone know away i can pull the logged in username from a computer for a webform? this is what i did to pull from the cookie ~ <input type="text" name="EmailID" maxlength="10" size="10" Value="<%=Request.Cookies("NPSC")("UserName")%>" ~
  8. richrich05

    Delete File on FTp Site

    Thanks that was very helpfully for me too.
  9. richrich05

    FTPing file with dates in their names

    Hi so i figured out how to FTP files using automated scripts but now i need to figure out how to send files with dates in there name eg. filename08-27-07.txt any one run into this challenge?
  10. richrich05

    coalesce function causing invalid column error

    grrr i hate it when i forget simple things like adding coalesce else where in my statement.
  11. richrich05

    coalesce function causing invalid column error

    Hi i'm running into a weird issue when i add a coalesce function to my select statement. I'm getting a error that saids "Column 'NPSC_Reporting..TBL_SupplierInvoices.SI_InputDate' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause. "...
  12. richrich05

    Calculate Total Time

    Well I'm trying to convert a date field called endtime from '6/10/2007 8:15 AM' and the starttime field into some kind of total of hours and minutes.
  13. richrich05

    Calculate Total Time

    actually i do have some dates in my table as 1/1/1900 i figured i would use a else statment and show the column as a blank row.
  14. richrich05

    Calculate Total Time

    I'm trying to to calculate two datetime fields into total minutes and hours. Anyone know a way to do this function? Something like (Starttime)(Endtime) = Totaltime
  15. richrich05

    Changing worksheet name in DTS

    Does any one know a way to change a worksheet name in a DTS?

Part and Inventory Search

Back
Top