<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.janforman.com/lib/exe/css.php?s=feed" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>wiki.janforman.com oracle</title>
    <subtitle></subtitle>
    <link rel="alternate" type="text/html" href="https://wiki.janforman.com/"/>
    <id>https://wiki.janforman.com/</id>
    <updated>2026-04-21T11:58:22+00:00</updated>
    <generator>FeedCreator 1.8 (info@mypapit.net)</generator>
    <link rel="self" type="application/atom+xml" href="https://wiki.janforman.com/feed.php" />
    <entry>
        <title>oracle:archivemode</title>
        <link rel="alternate" type="text/html" href="https://wiki.janforman.com/oracle:archivemode"/>
        <published>2016-03-16T21:16:12+00:00</published>
        <updated>2016-03-16T21:16:12+00:00</updated>
        <id>https://wiki.janforman.com/oracle:archivemode</id>
        <author>
            <name>Anonymous</name>
            <email>anonymous@undisclosed.example.com</email>
        </author>
        <category  term="oracle" />
        <content>Flash Recovery Area

Noarchive log mode

If the database is in noarchive log mode, online redo logs can (and will) be overwritten without making sure they are saved. This implies that a database cannot be recovered even if backups were made.



Archive log mode</content>
        <summary>Flash Recovery Area

Noarchive log mode

If the database is in noarchive log mode, online redo logs can (and will) be overwritten without making sure they are saved. This implies that a database cannot be recovered even if backups were made.



Archive log mode</summary>
    </entry>
    <entry>
        <title>oracle:backup</title>
        <link rel="alternate" type="text/html" href="https://wiki.janforman.com/oracle:backup"/>
        <published>2017-11-02T13:57:21+00:00</published>
        <updated>2017-11-02T13:57:21+00:00</updated>
        <id>https://wiki.janforman.com/oracle:backup</id>
        <author>
            <name>Anonymous</name>
            <email>anonymous@undisclosed.example.com</email>
        </author>
        <category  term="oracle" />
        <content>Linux backup scripts

/asmfs/rman_cmds/backup.sh


#!/bin/bash

if [ ! $1 ]
then
echo no parameter
exit 1
fi

export PATH=$PATH:/usr/local/bin

. /usr/local/bin/oraenv &lt;&lt;EOF
$2
EOF
export ORASID=$2

export ORACLE_SID=${2}1
rman nocatalog cmdfile=/asmfs/rman_cmds/$1 using $ORASID</content>
        <summary>Linux backup scripts

/asmfs/rman_cmds/backup.sh


#!/bin/bash

if [ ! $1 ]
then
echo no parameter
exit 1
fi

export PATH=$PATH:/usr/local/bin

. /usr/local/bin/oraenv &lt;&lt;EOF
$2
EOF
export ORASID=$2

export ORACLE_SID=${2}1
rman nocatalog cmdfile=/asmfs/rman_cmds/$1 using $ORASID</summary>
    </entry>
    <entry>
        <title>oracle:install</title>
        <link rel="alternate" type="text/html" href="https://wiki.janforman.com/oracle:install"/>
        <published>2021-02-23T16:07:53+00:00</published>
        <updated>2021-02-23T16:07:53+00:00</updated>
        <id>https://wiki.janforman.com/oracle:install</id>
        <author>
            <name>Anonymous</name>
            <email>anonymous@undisclosed.example.com</email>
        </author>
        <category  term="oracle" />
        <content>Oracle ASM

&lt;https://www.oracle.com/linux/downloads/linux-asmlib-rhel7-downloads.html&gt;
&lt;https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kmod-oracleasm-2.0.8-28.0.1.el7.x86_64.rpm&gt;

yum install sg3_utils -y

&lt;https://docs.oracle.com/en/database/oracle/oracle-database/12.2/tdprc/preparing-your-cluster.html&gt;

Set OS Limits


/usr/sbin/groupadd -g 1000 oinstall
/usr/sbin/groupadd -g 1001 dba
/usr/sbin/groupadd -g 1002 asmdba

/usr/sbin/useradd -u 1100 –g oinstall -G dba,asmdba -…</content>
        <summary>Oracle ASM

&lt;https://www.oracle.com/linux/downloads/linux-asmlib-rhel7-downloads.html&gt;
&lt;https://yum.oracle.com/repo/OracleLinux/OL7/latest/x86_64/getPackage/kmod-oracleasm-2.0.8-28.0.1.el7.x86_64.rpm&gt;

yum install sg3_utils -y

&lt;https://docs.oracle.com/en/database/oracle/oracle-database/12.2/tdprc/preparing-your-cluster.html&gt;

Set OS Limits


/usr/sbin/groupadd -g 1000 oinstall
/usr/sbin/groupadd -g 1001 dba
/usr/sbin/groupadd -g 1002 asmdba

/usr/sbin/useradd -u 1100 –g oinstall -G dba,asmdba -…</summary>
    </entry>
    <entry>
        <title>oracle:startup</title>
        <link rel="alternate" type="text/html" href="https://wiki.janforman.com/oracle:startup"/>
        <published>2018-02-28T13:10:18+00:00</published>
        <updated>2018-02-28T13:10:18+00:00</updated>
        <id>https://wiki.janforman.com/oracle:startup</id>
        <author>
            <name>Anonymous</name>
            <email>anonymous@undisclosed.example.com</email>
        </author>
        <category  term="oracle" />
        <content>CentOS/RedHat 6


#!/bin/sh
# chkconfig: 345 99 10
# description: Oracle auto start-stop script.
#
# Set ORA_OWNER to the user id of the owner of the
# Oracle database software.

ORA_HOME=/opt/oracle/product/12.1.0/dbhome_1
ORA_OWNER=oracle

case &quot;$1&quot; in
    'start')
        # Start the Oracle databases:
        # The following command assumes that the oracle login
        # will not prompt the user for any values
        # Remove &quot;&amp;&quot; if you don't want startup as a background process
        su …</content>
        <summary>CentOS/RedHat 6


#!/bin/sh
# chkconfig: 345 99 10
# description: Oracle auto start-stop script.
#
# Set ORA_OWNER to the user id of the owner of the
# Oracle database software.

ORA_HOME=/opt/oracle/product/12.1.0/dbhome_1
ORA_OWNER=oracle

case &quot;$1&quot; in
    'start')
        # Start the Oracle databases:
        # The following command assumes that the oracle login
        # will not prompt the user for any values
        # Remove &quot;&amp;&quot; if you don't want startup as a background process
        su …</summary>
    </entry>
</feed>
