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!

Search results for query: *

  • Users: richrich05
  • Content: Threads
  • Order by date
  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

    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?
  4. 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...
  5. 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")%>" ~
  6. 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?
  7. 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. "...
  8. 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
  9. richrich05

    Changing worksheet name in DTS

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

    Convert varchar to Money

    I'm trying to convert a varchar field into a money but I'm running into problems because the column contains some rows that are credits that have () around them. The expression I'm trying is listed below. Select cast(E_Amt As Money) AS Amount From Tbl_Expenses Oder by E_Amt Your help would...
  11. richrich05

    Border Around A Row

    I know this is simple but i've been beating my head into the walk trying remember and figure it out. How do i create a border around rows that are returned from the user's request?
  12. richrich05

    user confirmation page

    Can anyone point me in the right direction? I want to display to the user the data their getting ready to submit to confirm if there sure or not prior to submitting. Anyone know a easy way to do it?
  13. richrich05

    Setting A subject field

    I need help i'm trying to control the subject of a email on a form using set text plus a drop down field value. function getsubject() { var Request = document.FrontPage_Form2.Request for (i=0; i < Request.length; i++) { if (Request.options[i].selected) { var...
  14. richrich05

    Setting A subject field

    I need help i'm trying to control the subject of a email on a form using set text plus a drop down field value. function getsubject() { var Request = document.FrontPage_Form2.Request for (i=0; i < Request.length; i++) { if (Request.options[i].selected) { var...
  15. richrich05

    Better then Procomm

    Is there anything out there better then procomm?
  16. richrich05

    Good Books

    Does anyone know any good books to help with scripting for procomm? ~Rich~

Part and Inventory Search

Back
Top