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 TouchToneTommy 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: watergrinder
  • Content: Threads
  • Order by date
  1. watergrinder

    datafile increase initial size

    Hello, we have a datafile of initial size 500MB on a 8i DMT. Auto increment of 500MB. Max size is 2GB. Can we increase initial size to 1GB? How complicated is the procedure?
  2. watergrinder

    remove spaces from string

    Can we remove spaces from a string variable? Ex: If $var has 10 20 2003, it should become 10202003. Thanks.
  3. watergrinder

    crontab problem

    I have a script that does ssh connection to a remote server and runs well. I put the same script in cron. It doesn't seem to connect to the remote server. The script runs displaying all but the remote command output. I am using user crontab from my user login. Any ideas why the script is running...
  4. watergrinder

    join two commands

    Could somebody tell how to execute the following at once from a script? ssh userid@serverb sqlplus system/dem@servb If I use them as shown above, script logs in the remote system and remains idle with prompt. I want to login to remote system and immediately give sqlplus command. Also, please...
  5. watergrinder

    su - oracle logout

    When I try to su - oracle from a script, it is automatically logging out. I debugged using set -x and can see "logout". Any ideas? The following script always prints root su - oracle 2>/dev/null echo `whoami`
  6. watergrinder

    chroot

    Could somebody tell about chroot? When should it be used?
  7. watergrinder

    tablespace free space

    I have a tablespace that has two data files. The second data file is 2gb. Initially it is 500 mb and is autoextensible. The following script takes the initial 500 mb only to give free space details. Can somebody give a script which takes the entire 2gb into consideration? SELECT...
  8. watergrinder

    remote administration question

    Could somebody please help me with this? I was trying to connect to a remote system via ssh. When I run the script from my user account, ssh connects to remote system successfully. By doing this, I am able to execute remote commands. As the cron is run under root, I tried running the same...
  9. watergrinder

    remote administration question

    Could somebody please help me with this? I was trying to connect to a remote system via ssh. When I run the script from my user account, ssh connects to remote system successfully. By doing this, I am able to execute remote commands. As the cron is run under root, I tried running the same...
  10. watergrinder

    su root as user

    I was trying to connect to a remote system via ssh. When I run the script from my user account, ssh connects to remote system successfully. If I try running the same script as root, ssh asks for root password as ssh does't automatically login as root (unless I enable it in sshd2_config). I also...
  11. watergrinder

    Unable to open //.ssh2/identification

    Hi I generated ssh public keys using ssh-keygen. I tried using scp to transfer it to another server but ended up with the following. Any clues? debug: server offers auth methods 'publickey,password'. debug: SshConfig/sshconfig.c:2432: Unable to open //.ssh2/identification debug...
  12. watergrinder

    Unable to open //.ssh2/identification

    Hi I generated ssh public keys using ssh-keygen. I tried using scp to transfer it to another server but ended up with the following. Any clues? debug: server offers auth methods 'publickey,password'. debug: SshConfig/sshconfig.c:2432: Unable to open //.ssh2/identification debug...
  13. watergrinder

    remove line

    Is it ok to do it this way? grep -v 'SQL>' tmp.out > tmp1.out && mv tmp1.out tmp.out Thanks.
  14. watergrinder

    multidimensional array

    Hello I want to read a multidimensional array like this /home input testh1 test2 testh3 test4 testh5 test6 testh7 test8 The # lines and fields are not constant. Next step is to idenify each row and column. Can somebody help? I was using this cat $DIR/files.dat | awk '{...
  15. watergrinder

    sqlplus not working

    Hi, Could anybody please tell why this is happening? sqlplus command works in my user login, but when logged in as root, it won't work. I changed root's .profile to include oracle environment variables (root and user login have same lines). It's still not working. Any ideas? Thanks
  16. watergrinder

    commands not found

    On this system sqlplus and omnistat work in my user account but not as root. May I know why and how could this be corrected? Thanks.
  17. watergrinder

    script exits prematurely

    I am using a script to administer current system as well as remote system disk space. When the script checks remote system, it exits completely without checking the current server. Any ideas?
  18. watergrinder

    ssh passphrase

    This question has been bugging me for a while. The crontab on a server runs under root. And I want to use ssh to remotely do actions on another server. In order to skip password each time a connection is made, ssh-keygen passphrase can be ignored. It may not pose a big security risk when done...
  19. watergrinder

    digital certificate

    Could anybody please explain how we can disable the security alert message when a secure site is accessed? Do I have to change any settings?
  20. watergrinder

    ssl certificate

    Could anybody please explain how we can disable the security alert message when a secure site is accessed? Do I have to change any settings?

Part and Inventory Search

Back
Top