Tags: trace
May
19
Listing all the preocess ids: # /usr/bin/ps -ef | sed 1d | awk '{print $2}' Mapping the files to ports using the PID: # /usr/proc/bin/pfiles 2>/dev/null | /usr/xpg4/bin/grep or # /usr/bin/ps -o pid -o args -p | sed 1d Mapping the sockname to po… more »
May
18
1. netstat -Aan | grep <Port Name> - This shows if the specified is being used. The hex number in the first column is the address of protocol control block (PCB) bash-3.00# netstat -Aan | grep 32775 f100060000942398 tcp4 0 0 *.32775 … more »
Aug
07
1.EXPORT:
exp system@test owner=test123 file=d:\oracle\user.dmp log=d:\oracle\userdump.log
rows=y statistics=none feedback=100 indexes=y consistent=y compress=n;
(for individual tables=table1,table2,.....)
2.IMPORT:
imp system@test fromu… more »
Recent comments