Sometimes the faster you type the slower you are.
Yesterday I was working on a configuration file, commenting and uncommenting about 10 different lines. Being a somewhat fast typist, the keyboard gymnastics required to add "--" to the beginning of 10 lines of code wasn't daunting enough to make me consider better ways to get the job done.
Those keyboard gymnastics consisted of the following 6 keypresses per line commented out:
i to insert
-- to comment the line out
ESC to go back to command mode
down arrow
then zero to go to the beginning of the line
I suppose if this had been 25 or 50 or whatever that unknowable mental threshold of "too many lines", I would have used awk or sed to get the job done.
My new coworker saw what I was doing, and asked why I didn't use the repeat command. Que? I asked?
Apparently hitting a period while in command mode will repeat the last insert/append that took place in edit mode. So simply made the change once in edit mode, then hit "." to repeat on the next line.
Ok, maybe not the "trick of the year". Maybe trick of the day is more appropriate, but I'm sure this is one of those tips that I'll be using on a daily basis -- a somewhat year changing event.
Thursday, May 26, 2011
Thursday, May 19, 2011
Thanks to this blog post and metalink doc 741004.1, learned some fun stuff about how an Oracle agent determines the amount of free memory available on a Solaris host.
Now how to figure out why this would be so wildly different than vmstat...
ORACLE_HOME=/u01/app/oracle/product/agent11g
export ORACLE_HOME
PATH=$ORACLE_HOME/bin:$PATH
export PATH
$ORACLE_HOME/bin/nmupm osLoad | awk -F"|" '{print $14}'
Now how to figure out why this would be so wildly different than vmstat...
Friday, May 13, 2011
Insert update and deleting records in a view
Recently a vendor gave me a vague request to grant "write access" to a view. Remembering an error a user had shown me in the past, I replied off the cuff that one can't simply write to a view.
I created the following test to prove that I was right, and you'll see that I proved myself wrong:
So as it turns out you absolutely can insert / update / delete into views. Still trying to make sense of it, but it *is* possible.
I created the following test to prove that I was right, and you'll see that I proved myself wrong:
drop user u_owner;
create user u_owner identified by pass2pass;
alter user u_owner default tablespace users;
alter user u_owner quota unlimited on users;
grant create session to u_owner;
grant create table to u_owner;
grant create view to u_owner;
drop user u_viewer;
create user u_viewer identified by pass2pass;
grant create session to u_viewer;
conn u_owner/pass2pass;
create table tb_test (v_int1 int);
create view vw_test as select v_int1 from tb_test;
grant select, insert, update, delete on vw_test to u_viewer;
conn u_viewer/pass2pass;
select * from u_owner.vw_test;
insert into u_owner.vw_test values (1);
select * from u_owner.vw_test;
update u_owner.vw_test set v_int1 = 2;
select * from u_owner.vw_test;
delete u_owner.vw_test where v_int1 = 2;
select * from u_owner.vw_test;
conn / as sysdba;
drop user u_owner cascade;
drop user u_viewer;
exit;
So as it turns out you absolutely can insert / update / delete into views. Still trying to make sense of it, but it *is* possible.
Wednesday, March 30, 2011
Grid control claims App Server 10.1.2 is down wen console says it's up
I'm currently going through moving all of my targets from grid control repositories and in the process of doing that I'm cleaning up anything that doesn't need to be there, or anything that reports as being down. For some reason I like to see the fully green pie chart.
I had added one of my oracle mid tiers that had a version of 10.1.2.3 running to support our forms application and grid control reported that the app server was down, but I knew for a fact it was not. All the subcomponents were reporing as up, opmnctl reported everything up, and the iasconsole on the server itself reported everything was up. In summary, it was up.
After much digging through perl code and metalink docs I have resolved the issue and figured out it had to do with Solaris 10 security of /usr/ucb/ps command not being able to report extended process info without being the owner of the process. There was a pretty good metalink document that put me on this trail, but didn't solve the problem itself. Here's a metalink ID roundup for what helped (or didn't but was related).
395013.1 - Application Server shown as Down in Grid Control even though all of its Components are shown as up
276350.1 - How to Enable the Metric Browser/Agent Browser for the Oracle Management Agent [Video]
752944.1 - CMSDK ORACLE_IAS TARGET DOWN WHEN IT IS UP
Enabling the metric browser was essential for this, in addition to running the perl scripts manually from the host.
So the problem ended up being this, the agent checks for forms processes on the host and reports back the sid.
Run this as your agent owner, and then also as root to see the difference.
Since the process is owned by a different user than the agent, it can't get the extended process info like root can. So to solve that two things had to be done.
First set up sudo privileges for your agent user to run /usr/ucb/ps as root
Second, modify the perl code in $AGENT_HOME/sysman/admin/scripts/formsinit.pl to use sudo.
Change
To
Restart the agent force an upload and check all your metrics again. You can do that via the metric browser, the commandline or wait for grid control to register the target again.
If anyone finds a metalink document that covers this exactly please add something in the comments.
I had added one of my oracle mid tiers that had a version of 10.1.2.3 running to support our forms application and grid control reported that the app server was down, but I knew for a fact it was not. All the subcomponents were reporing as up, opmnctl reported everything up, and the iasconsole on the server itself reported everything was up. In summary, it was up.
After much digging through perl code and metalink docs I have resolved the issue and figured out it had to do with Solaris 10 security of /usr/ucb/ps command not being able to report extended process info without being the owner of the process. There was a pretty good metalink document that put me on this trail, but didn't solve the problem itself. Here's a metalink ID roundup for what helped (or didn't but was related).
395013.1 - Application Server shown as Down in Grid Control even though all of its Components are shown as up
276350.1 - How to Enable the Metric Browser/Agent Browser for the Oracle Management Agent [Video]
752944.1 - CMSDK ORACLE_IAS TARGET DOWN WHEN IT IS UP
Enabling the metric browser was essential for this, in addition to running the perl scripts manually from the host.
So the problem ended up being this, the agent checks for forms processes on the host and reports back the sid.
Run this as your agent owner, and then also as root to see the difference.
/usr/ucb/ps -axww | grep oc4j.jar | grep OC4J_BI_Forms | grep <$ORACLE_HOME>
Since the process is owned by a different user than the agent, it can't get the extended process info like root can. So to solve that two things had to be done.
First set up sudo privileges for your agent user to run /usr/ucb/ps as root
gridagent ALL=(root)NOPASSWD: /usr/ucb/ps
Second, modify the perl code in $AGENT_HOME/sysman/admin/scripts/formsinit.pl to use sudo.
Change
elsif ( $os eq "SunOS" )
{
$PS = "/usr/ucb/ps -axww";
To
elsif ( $os eq "SunOS" )
{
$PS = "sudo /usr/ucb/ps -axww";
Restart the agent force an upload and check all your metrics again. You can do that via the metric browser, the commandline or wait for grid control to register the target again.
If anyone finds a metalink document that covers this exactly please add something in the comments.
Tuesday, March 8, 2011
OCM patch required even though you're not using OCM
While installing OAS 10gR3 patch 8626084 to upgrade OAS to 10.1.3.5, I received an error that step "Run One-off OPatches" had failed.
Looking at the log file, I found the following:
Doing a bit of digging, I found this recommendation to go ahead and run setupCCR in disconnected mode.
What's frustrating is that I requested that OCM not be installed or configured.
The following did the trick and I was able to complete the patch installation.
Looking at the log file, I found the following:
This is a OCM patch.
Home has OCM installed but not configured.
To run in silent mode, OPatch requires a response file for Oracle Configuration Manager (OCM).
Run /u01/app/oracle/product/oas10gr3/OPatch/ocm/bin/emocmrsp to generate an OCM response file. The generated response file can be reused on different platforms and in multiple OPatch silent installs.
To regenerate an OCM response file, rerun /u01/app/oracle/product/oas10gr3/OPatch/ocm/bin/emocmrsp.
ERROR: OPatch failed because of cmd. args. problem.
Doing a bit of digging, I found this recommendation to go ahead and run setupCCR in disconnected mode.
What's frustrating is that I requested that OCM not be installed or configured.
The following did the trick and I was able to complete the patch installation.
/u01/app/oracle/product/oas10gr3/ccr/bin/setupCCR -s -d
Thursday, February 24, 2011
Clean up old xauth entries
In a followup to a previous post on forwarding x sessions and su, here's a quick way to clean up old xauth entries.
You'll recall that cleanup will not happen automatically for the sessions that got su'ed to, so if you have several entries hanging around the one-liner will make quick work of them.
> xauth list | cut -f1 -d\ | xargs -i xauth remove {}
You'll recall that cleanup will not happen automatically for the sessions that got su'ed to, so if you have several entries hanging around the one-liner will make quick work of them.
Labels:
unix
On the subject of support requests
Last night I was working on providing some information to a tech on MOS, and part of their request was screenshots. While I don't mind taking screenshots, it's actually a little quicker to take a screencast.
I used to use CamStudio or Wink, but now that I'm primarily using a Mac, I find that it's much simpler to use the java app at http://screencast-o-matic.com/.
Screencast-o-matic is drop dead simple to use, creates a reasonably small file, and allows you to provide more information to Oracle support with less effort. Edit: It's free for up to 15 minute long files.
Highly recommended.
I used to use CamStudio or Wink, but now that I'm primarily using a Mac, I find that it's much simpler to use the java app at http://screencast-o-matic.com/.
Screencast-o-matic is drop dead simple to use, creates a reasonably small file, and allows you to provide more information to Oracle support with less effort. Edit: It's free for up to 15 minute long files.
Highly recommended.
Subscribe to:
Posts (Atom)