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 Mike Lewis 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. nimrodman

    32 bit and 64 bit PowerCenter

    Does anyone know where I can find detail information about the differences between a 32bit and 64bit PowerCenter?
  2. nimrodman

    convert SQL function to DB2

    Does anyone have an idea on how to convert a SQL Server function to work in DB2? I do really appreciate any assistance, thanks. The function I want to convert is in the link below, thanks you so much. http://aspadvice.com/blogs/plitwin/archive/2005/12/23/14445.aspx
  3. nimrodman

    GUI access to Linux from Windows

    Yes I need to access the GUI desktop, thanks.
  4. nimrodman

    GUI access to Linux from Windows

    Does anyone have an idea or tools that can be used to access a Linux server remotely, that is to see the KDE or Gnome desktop? VNC is not allowed in my organization, go figure...any help will be highly appreciated.
  5. nimrodman

    xrdp on RHEL 5.2

    Does anyone know why rdp will not paint when it connects to MSTSC? I have it installed and configured, it starts up fine on hte server, I can connect to it from my desktop running Windows Vista, but it will not paint the remote desktop, does anyone have any ideas why? Any help would be highly...
  6. nimrodman

    Oracle 9 decommission

    There is a process method, like archiving the data, preserving log files and so on, that is what I meant.
  7. nimrodman

    Oracle 9 decommission

    Can anyone give me a synopsis of the best way to go about decommissioning an Oracle 9 database, thanks.
  8. nimrodman

    expect dilemma

    I made the expect part as a function and called that function.
  9. nimrodman

    expect dilemma

    Could anyone tell me any reason why the following does not work, please: \#!/usr/local/bin/expect -f set PASSWORD "xxxxxxx" print "spawn sftp $user@rnode" print "expect \"password:\r\"" print "send \"$PASSWORD\r\" ... expect eof It this expect script is embedded into a ksh script, but seems...
  10. nimrodman

    remote variable question

    Anni, you are my hero! The second option you suggested is working great, thanks a lot.
  11. nimrodman

    remote variable question

    The last piece is not working still, that is the cp section.
  12. nimrodman

    remote variable question

    Below are the two methods I have used to extract the files into a storage area and then cat the files and tried to copy them into a repository, the last bit is the part that I cannot get to work, that is the cp part. ls_files=`ssh -t $USERID@$RSYSTEM "cd $REMOTE_DIR; ls -l | grep 867 >...
  13. nimrodman

    remote variable question

    Anni.. everything is sent to the remote node from the local node, everything works fine including the cat you suggested a solution to, and thanks for that, but the only piece of the code that does not work is that final cp piece, it is not seeing the return $files holds, that escapes into...
  14. nimrodman

    remote variable question

    Anni, thank you for your input; I see that it worked the way you have it, my frustration so far is that it is not working for me maybe because I used find to select certain files from a list and parse that list to a new file and I am trying to make it read from that file. In brief, that cp...
  15. nimrodman

    remote variable question

    cp \$files $GET_DIR; done"` This is the part that does not work, the variable is empty, I have done all kinds of quoting and back slash, any help with this would be highly appreciated, thanks.
  16. nimrodman

    remote variable question

    I am having a hard time making the cp section to wrk, it is not picking up the $files variable, it is the last part of the code that is giving me my worst nightmare...any suggestions?
  17. nimrodman

    remote variable question

    Does anyone know why the following variable will not work if used on remote node, I have grappled with it for hours without any success, thanks. MAKE_LIST=`ssh –t $USER@$RNODE “for files in cat $the_files do; cp $files $GET_DIR done”` Echo “$MAKE_LIST”
  18. nimrodman

    remote find for ftp

    I am having an issue that I know does have a simple solution, but I cannot seem to get it resolved, this is it; I have a script that I have written which works perfectly well, it calls a script on a remote server to find files depending on certain file mask, but what I want to do is to make both...
  19. nimrodman

    sftp and function

    I have a working script which I have written, but I want to make an adjustment to call a function after invoking sftp, it is something like this sftp user$node prompt lcd $LOCAL_DIR do_this # that is the function bye sftp eof it is ot calling the function, any ideas?
  20. nimrodman

    catching screen output in a script

    I was wondering if anyone can tell me how I can catch and use the return of a command, if I run a command and the return says SUCCESS, how can I catch that and say something like : If the result is success do something if not exit, I know how to do the conditional statement, but I do not know...

Part and Inventory Search

Back
Top