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 wOOdy-Soft 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: Tim2525
  • Content: Threads
  • Order by date
  1. Tim2525

    Two Reports as one...

    Hi All, I'm not sure if this can be done or not. What I want to do is... I have two reports (rptPhysicianDir and rptPhysicianSpecialty). I want rptPhysicianDir to run first and once it's completed have rptPhysicianSpcialty to run picking up the next page number. Can this be done and how...
  2. Tim2525

    Apostrophes with INSERT statements

    Hi All, I'm doing an INSERT of data from a temp table to another table. My issue is one of my fields has data with an apostrophe in it and it's messing up my insert. Is there a way of working around this where the data is inserted into the field including the apostrophe. Below is my insert...
  3. Tim2525

    ADO recordset to variable

    Hi All, Trying to load a result from a query to a variable - currRate. When I get to code line "currRate = objRec.GetString(adClipString, ColumnDelimeter:=" ", RowDelimeter:=vbCrLf)", I get the following error. Run-time error '3021': Either BOF or EOF is True, or the current record has been...
  4. Tim2525

    Loop Select for Selected Values

    Hi All, Here is my problem. I'm trying to get the value(s) from a select box-multiple which are selected and store them to a variable. How would I do this? In my loop I'm seeing all items in the select box. I tried using venOption[venIndex].text but it only picked up the first value. Here...
  5. Tim2525

    Update Statement

    Hi All, This should be a very easy one. I'm having trouble getting my update statement to run. I come from an Oracle background so this stuff is still greek to me. UPDATE catentry SET catentry.field4 = 'KM' From manurel, catentry, catentdesc WHERE manurel.manunbr IN (2495,1135) AND...
  6. Tim2525

    setTimeout() Issue

    Hi All, Trying to get my code to re-execute a function every 5 secs - setTimeout(urlTest = getThuleInfo(), 5000); Everything works fine for the first loop. After that it just sits there. If anyone has any suggestions, I would appreciate it. Also, I'm try to get the document.write('NO not...
  7. Tim2525

    Getting URL from a frame

    Hi All, Trying to figure out how to get the url contents from another frame. The frames url changes evertime the user makes a selection from a series of drop down menus. This is what I have so far. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <SCRIPT...
  8. Tim2525

    Passing Variable via HTTP Address Line

    Hi All, I have a jsp page calling another jsp page. I want to pass information to the called page via the http address line. Example: document.forms[frmName].action = "/tools/test/new.jsp?new,x"; How would I retrieve "new" and "x" from the http line in my new jsp. TIA, T
  9. Tim2525

    Standard out/Error out

    Hi All, My apologies for the VERY simple qs. Want to send echo messages to a log file. Is my code right? Can this be done with printf function? Currently what is happening is the message appears on my screen with the path following it and backup.log file not created. Message that appears...
  10. Tim2525

    SQLSTATE Error Backing up DB

    Hi All, I'm attempting to force application via script. I get a message stating completed. When I attempt to backup the DB, I get a get a SQLSTATE error. I am very new to db2. If anyone has any suggestions, they would be most welcome. Error... FORCING APPLICATION TO CLOSE... DB20000I...
  11. Tim2525

    Shell Script Issues

    Hi All, Attempting to write my first shell script. Getting an error telling me on line "echo Started back up on `date` >> /db2_backup/timer.txt" my script can't create the file. I'm also getting an unmatched "if". But I think there is something else going on. Can one of you gurus take a...
  12. Tim2525

    rsync failing - No such file or directory

    Hi All, Attempting to run rsync but getting "no such file or directory" message. What looks like is happening is solaris is removing the "space" between ../db2_backup and db2inst1@enolagay.. As a result rsync creates a new dir on the same box with the files in it. Not sure what to do. VERY...
  13. Tim2525

    Check if file loaded to another box

    Hi All, Here is another simple qs. I am using rsync to tranfers a backup file to another Solaris 8 box. How would I check to see if the file transfered successfully. ##SSH the file. rsync -a -e ssh /export/home/db2inst1/backupCampmor sample@anotherbox: /db2_backup if [ <file transferred...
  14. Tim2525

    Rsync Fail on Solaris 8

    Hi All, Newbie qs. I'm getting an error, see below, when I attempt to rsync -a -e ssh to another box. I'm on Solaris 8. rsync -a -e ssh /test/original testuser@desination: /home/backup The error is : ld.so.1: rsync: fatal: libpopt.so.0: open failed: No suck file or directory TIA
  15. Tim2525

    Backup Database Error Unix

    Hi All, I am very new to db2 and trying to backup my database to test dirctory. db2 backup database testDB5 to /u/d01/home/home/db2inst1/TestBkup/testDB5.1 But I get "The path for the file or device "u/d01/home/home/db2inst1/TestBkup/testDB5.1" is not valid. What am I doing wrong? Please...
  16. Tim2525

    Find latest file

    Hi All, Excuse my simple qs. I am VERY new to scripting and writing a script that would find the latest file (time) created in this format "db2_backup_08/31/05_14:39". I would need to find the file and once found, parse out the date time. Can someone give me suggestions on the best way of...
  17. Tim2525

    Hard drive on-line in Solaris 8

    Hi All, One of my co-workers asked me to post this question. How do you bring a hard drive that is currently off-line to on-line in Solaris 8? If you need other information, please let me know as I'm not sure what to ask. TIA, Tim
  18. Tim2525

    NetAccess Remote Error

    Hi All, I'm sure this is a simple question. I'm seeing an Error in the Event Viewer that states "The NetAccess Remote service has reported an invalid current state 0." What does this mean? And can I prevent/fix this to stop it from showing up in the event log? If so, how would I do fix it...
  19. Tim2525

    Format Date Field

    Hi All, Calling a date field form Access and loading it to a table row via: <%# DataBinder.Eval(Container.DataItem, "eventBeginDate") %> It displays mm/dd/yyyy hh:mi:ss AM. I want it to display only mm/dd/yyyy. How would I format this? TIA, Tim
  20. Tim2525

    Could not find installable ISAM

    Hi All, I'm attempting to load some data from my Access DB. I get the ISAM issue at objConn.Open(); Could someone help me out. Below is my code... void Page_Load() { OleDbConnection objConn; OleDbCommand objCmd; OleDbDataReader objRdr; string strSQL; strSQL = "SELECT...

Part and Inventory Search

Back
Top