Fernkurs Systemadministration Folge 843
April 16th, 2011 by TheBonsai
Category: deutsch, Unsinn | 2 Comments »
Something about
a weird mind
on the net
April 16th, 2011 by TheBonsai
Category: deutsch, Unsinn | 2 Comments »
March 24th, 2011 by TheBonsai
SQL*Plus connect strings/logon strings have a couple of special characters, notably these two:
If you need to use those characters literally in the logon string, you need to tag them with literal double quotes (literal means: the quotes need to be passed to SQL*Plus, I’m not talking about the UNIX shell):
$ sqlplus USER/\"PASS/WORD\"
$ sqlplus USER/'"PASS/WORD"'
Category: english, Oracle | No Comments »
January 27th, 2011 by TheBonsai
For some systems a downtime is complicated to organize, or bad at all. We have such a system, a RAC database.
In the past, all storage migration operations there had two problems that lead to downtime:
In December I migrated the system to something more modern
The use of a modern Linux kernel (especially a modern SCSI stack) and 11gR2 infrastructure fixed all my trouble from the past.
With 11gR2 Grid Infrastructure, the clusterware manages its vital files (VD, OCR) using an ASM instance. A migration of the ASM diskgroups holding these files is now as easy as a migration of a normal diskgroup. ASM takes care of moving the votedisks and the OCR and collaborates with CRS here.
The new Linux kernels with a finally sane SCSI stack and native multipathing helps with the second problem. It’s not a problem anymore to remove old device references from the stack:
# see /dev/mapper/* for the name
dmsetup remove mpathX# X:X:X:X LUN number echo 1 > /sys/bus/scsi/X:X:X:X/delete
After that, you can safely edit the FC zone – no errors should occur in any logs.
Category: english, Oracle, Work | No Comments »