On the Repos Server SELECT target_name FROM sysman.MGMT_TARGETS where 1=1 and target_type = 'oracle_emd' and target_name like '%mis%' order by 1 commit execute sysman.mgmt_admin.cleanup_agent('target_name:port>'); If this hangs then kill it and run ... update sysman.MGMT_TARGETS_DELETE set delete_complete_time = sysdate where target_name like '%slofosdb01.odl.com:3872%' On the Agent Machine
|
Monday, 29 September 2008
OEM Agent - Cleaning out
Posted by Ook at 03:50 0 comments
Labels: Oracle
Tuesday, 23 September 2008
Speaking Imap (in telnet)
http://support.microsoft.com/kb/189326 Telnet IP address of Mail server (Exchange) 143 LOGIN NTDOMAIN/NTACCOUNT/ALIAS PASSWORD ? LIST "" "*" ? Select Folder (where Folder is the mailbox folder that you want, such as Inbox or Deleted Items) ? FETCH message number> All (where message number is 1, 2, 3, and so on) ? FETCH message number Body (where message number is 1, 2, 3, and so on) ? LOGOUT |
Posted by Ook at 07:19 0 comments
MS Server 2003 : Getting an RDP session
To use the command line hacks, you might need to run them from another server if your local operating system doesn't include the commands. You will also need to make sure that you are logged onto that server with an administrative account. The easiest way to do that is just map a drive (you don't have to use a drive letter unless you choose to) net use /user:[username] \\servername\share Here's a command line hack that you can use to figure out what Now we know that the session ID of the offending session is 2. We can use that in the next step, which is using the reset command to log off that user. reset session [ID] /server:servername |
Posted by Ook at 07:15 0 comments
Friday, 19 September 2008
NTLM in Firefox
|
Posted by Ook at 08:27 0 comments
Wednesday, 17 September 2008
Adding an 11G RAC service
alter system register |
Posted by Ook at 06:19 0 comments
Tuesday, 16 September 2008
Grep for rows after and before a pattern
Gnu gre. grep -A 2 ORA-01555 bdump/alert_LIVE1.log | grep -B2 SYS.EXU9R -A = After -B = Before |
Posted by Ook at 04:28 0 comments
Friday, 5 September 2008
SmartCVS - ignoring files in foundation edition
Create the file .cvsignore in your home directory with exclusion pattern per line For windows this is %USERPROFILE% and you need to rename the file to .cvsignore at the command prompt as explorer does not like files with only suffixes |
Posted by Ook at 06:04 0 comments