Edit (07,2013): I recommend using FRA for automatic deletion of archivelogs on a physical standby database. 
Let's see an example of configuring automatic maintenance of the archived logs on a standby database:
1. Enable the fast recovery area on the standby database by setting the DB_RECOVERY_FILE_DEST and DB_RECOVERY_FILE_DEST_SIZE parameters:

SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE=500G;
SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST='/data/FRA'; 
If we're using ASM, we can specify a disk group as DB_RECOVERY_FILE_DEST.
SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST='+FRA';
2. Set the LOG_ARCHIVE_DEST_1 parameter as follows so that the archived logfiles will be created at the DB_RECOVERY_FILE_DEST parameter:
SQL> ALTER SYSTEM SET LOG_ARCHIVE_DEST_1='LOCATION=USE_DB_RECOVERY_ FILE_DEST';
3. Set the RMAN archived log deletion policy as follows. With this setting, the applied archived logs will be automatically deleted when there is a space constraint in FRA, depending on DB_RECOVERY_FILE_DEST_SIZE. If the archived logs are not applied, they will not be deleted.
RMAN> CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;



---------------------------------------

Original Post:
The shell script below, can be used to automate the deletion of applied archivelogs on unix standby servers. In this case archivelogs on the primary database are automatically deleted by rman after the backup operation. This shell script is being used in crontab of the standby machine to automate applied arhivelog deletion. It finds the last applied log using alertlog file, then deletes archivelogs smaller then the "last archivelog number - 10" in the archive directory.

#!/usr/bin/ksh
ARCH_DIR=/archive/orcl

#take the log number to be applied
LogNo=`tail -30000 /oracle/app/oracle/product/10.2.0/admin/orcl/bdump/alert* | grep "Media Recovery Log" | cut -d " " -f 4 | cut -d "_" -f 5 | tail -1 `
echo "Oracle applied LogNo is $LogNo"

#extract 10
let SecLogNo=${LogNo}-10
echo "new backlog log No: $SecLogNo"

#delete small numbers from this in arch dir
cd $ARCH_DIR
for i in `ls *.arc`
do

Newi=`echo $i | cut -d "_" -f 4`

if [ $Newi -lt $SecLogNo ] ; then
echo "$i to be deleted..."
rm $i
fi
done

---------------------------------------
This script is special for my enviroment, it should be modified for any other environments. Archive log directory and name format effects the field numbers in the cut commands. If you need help for modifying the script for your env. please write me the "Media Recovery Log" lines in the alert log file.
The important think here is the idea.

(Thanks to my friend Selcuk Karaca who owns the idea and the script)

61 Responses so far.

  1. Unknown says:

    Hi Emre,

    Thanks for sharing this script. I had disk space problem on one of our physical standby servers and wanted to code a script to remove the applied logs automatically. I googled and found your document.

    Searching the applied log files in the alert log is a good idea. I have used that idea and created my own simple script. Here it is:


    #!/bin/bash

    ALERT=/oracle/app/oracle/diag/rdbms/dgbrm/dgbrm/trace/alert_dgbrm.log

    tail -30000 $ALERT | grep "Media Recovery Log" | cut -d " " -f 4 | head --lines=-2 > files.txt

    awk '{ system( "rm -rf " $_ ) }' files.txt


    regards

    Gokhan

  2. Hi Gokhan, you're welcome
    i'm glad this post helped you in some way.. my friend, Selcuk Karaca had the idea and also wrote this script, so thanks to him :)

    Also, thank you for sharing your shorter altenative :)

    Regards

    Emre

  3. Scofield says:

    Hi Emre
    Thanks for enlightening blog.
    I tried your script but "LogNo" doesnt produce any output from my alert log.

    My alert log is like:

    Media Recovery Log /ora_archive/pcdg_0000001784_1.arc
    Media Recovery Waiting for thread 1 seq# 1785
    Media Recovery Log /ora_archive/pcdg_0000001785_1.arc
    Media Recovery Waiting for thread 1 seq# 1786
    Media Recovery Log /ora_archive/pcdg_0000001786_1.arc
    Media Recovery Waiting for thread 1 seq# 1787


    How should I modify the script?

  4. Hi Scofield;
    Try with the following lines;

    (I'm sure you changed the alert_log and archive directories for your env.)

    LogNo=`tail -100 /oracle/app/oracle/product/10.2.0/admin/usagedb/bdump/alert* | grep "Media Recovery Log" | cut -d " " -f 4 | cut -d "_" -f 3 | tail -1 `

    Just changed the the number 5 to 3. Because when cutting with delimiter _ you need the 3th part.

    And also you should change the number 4 to 2 in the following line:

    Newi=`echo $i | cut -d "_" -f 2`

    Please try with these changes and let me know if it works or not. I'll also edit the post to specify that my script is special for my enviroment, it should be modified for any other environments. The important think here is the idea.

    Thanks&Regards
    Emre

  5. Anonymous says:

    This solution is not very good.
    There is maximum number of archive logs, and if you delete them in shell, oracle doesn't know of this and still continue to number them until maximum number, then database stops :).

    you must delete them using rman.

  6. Anonymous says:

    I suggest you to be sure before writing a comment like this and study some Oracle before dataguard.
    Why I'm saying this? Because you wrote your post so surely that i was going to believe...:)

    Oracle names-creates the archivelogs on the primary database then sends these archivelog files to standby database to apply. In the case that you backup your archivelogs on the primary side, the applied archivelogs on the standby side are some trash that you should get rid of. RMAN or no one need to know where they are. What you say is something that would never occur.

  7. Fayyaz says:

    I changed the script and used RMAN to delete archive logs. Here is my script
    --------------------
    #!/usr/bin/ksh
    ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1; export ORACLE_HOME
    ARCH_DIR=/u01/oradata/flash_recovery_area/SIDE/localstby/; export ARCH_DIR
    rm test.rman
    #take the log number to be applied
    LogNo=`tail -30000 $ORACLE_HOME/admin/side_dr/bdump/alert_side_dr.log | grep "Media Recovery Log" | cut -d " " -f 4 | cut -d
    "_" -f 5 | tail -1 `
    echo "Oracle applied LogNo is $LogNo"

    #extract 10
    let SecLogNo=${LogNo}-10
    echo "new backlog log No: $SecLogNo"

    #delete small numbers from this in arch dir
    cd $ARCH_DIR
    for i in `ls *.arc`
    do

    Newi=`echo $i | cut -d "_" -f 3`
    if [ $Newi -lt $SecLogNo ] ; then
    echo "$i to be deleted..."
    fi
    done
    echo "delete archivelog sequence between $SecLogNo and $Newi;" >> test.rman
    $ORACLE_HOME/bin/rman target / @test.rman
    ~

    ---------------------

  8. Anonymous says:

    Hi I would suggest, query the database before you delete any files.

    Here is my script...

    # Functionality : Script to purge Archivelog from Physical standby database.
    # Modified : Aug 27,2007
    # Changes : Praveen Added functionality to purge archivelog based on last applied sequence on Standby DB.
    # Oct 15,2007 " Added functionality to accept parameter for archivelog deletion.
    # set -x
    export ORACLE_SID=$1
    CMDFILE1=/tmp/purge_standby_arc_${ORACLE_SID}.rman
    timefile=/tmp/purge_standby_arc_${ORACLE_SID}.time.txt

    lastapplied_seq_=/tmp/purge_standby_arc_${ORACLE_SID}.tmp

    sqlplus -s /"as sysdba" << EOF > ${lastapplied_seq_}
    set pagesize 0
    set feedback off
    select ' delete archivelog until sequence '||to_char( max(sequence#)-${2}) ||' thread '|| to_char( thread# ) ||';'
    from v\$log_history group by thread#;
    exit;
    EOF


    echo " " > $CMDFILE1
    echo " run { " >> $CMDFILE1
    echo " allocate channel c1 device type disk; " >> $CMDFILE1
    cat ${lastapplied_seq_} >> $CMDFILE1
    echo " " >> $CMDFILE1
    echo "}" >> $CMDFILE1

    rman target / nocatalog cmdfile ${CMDFILE1}

    exit
    ++++++++++++

    cronjob :-
    10 * * * * /apps/orautil/app/oracle/admin/bin/PhysicalStdby/clean_arc.myStandbyDB0.run >/tmp/clean_arc.myStandbyDB.run.tmp 2>&1


    Run file :
    #!/bin/ksh
    # Created : Praveen K Ponna,
    # Functionality : Script to purge Archivelog from Physical standby database.
    # Modified : Aug 27,2007
    # Changes : Praveen Added functionality to purge archivelog based on last applied sequence on Standby DB.
    #
    # set -x

    export ORACLE_BASE=/u01/app/oracle
    export RUNTIME=`date '+%Y%m%d.%H%M%S'`
    export HOSTNAME=`hostname|cut -d"." -f1`
    export ORACLE_SID=gptprd0
    export LOG=${ORACLE_BASE}/admin/${ORACLE_SID}/logbook/YYYYMMDD/${HOSTNAME}.${ORACLE_SID}.clean_arc.${RUNTIME}

    echo \
    > ${LOG}
    env \
    >> ${LOG}
    echo \
    >> ${LOG}
    . ~/.bash_profile.1020 \
    >> ${LOG} 2>&1
    ORACLE_SID=gptprd0
    echo \
    >> ${LOG}
    env \
    >> ${LOG}
    echo \
    >> ${LOG}

    echo \
    >> ${LOG}
    find ${ORACLE_BASE}/admin/${ORACLE_SID}/logbook/YYYYMMDD/ -name "*.clean_arc.*" -mtime +1 -exec rm {} \;

    echo $? \
    >> ${LOG}
    echo \
    >> ${LOG}

    # /apps/orautil/app/oracle/admin/bin/PhysicalStdby/clean_archive_standby_v2.ksh ${ORACLE_SID} 9 >> ${LOG} 2>&1
    /apps/orautil/app/oracle/admin/bin/PhysicalStdby/clean_archive_standby_v2.ksh ${ORACLE_SID} 1 >> ${LOG} 2>&1
    exit_=$?
    echo \
    >> ${LOG}
    echo ${exit_} \
    >> ${LOG}

    ls -al ${LOG} \
    >> ${LOG}

    echo ${LOG}
    # Purge old log files.
    find ${ORACLE_BASE}/admin/${ORACLE_SID}/logbook/YYYYMMDD/ -name "*clean_arc.*" -mtime +12 -exec rm -f {} \;

    exit ${exit_}
    ~

  9. Thanks for your all sharings; I'm sure these information will help people searching for a solution on this topic.

  10. Mr. Z says:

    Hi Emre,

    Thanks for sharing the script.

    For any one interested in a batch script to delete the applied archive logs on primary and standby servers, the link is given below

    http://syedzulfikar.blogspot.com/2010/08/remove-applied-archive-logs-on-primary.html

    Thanks,
    Syed

  11. Anonymous says:

    Hi Emre,

    How do i delete the applied archive logs which are older than 3 days?.

  12. Jerome says:

    Marvelous work.Just wanted to drop a comment and say I am new to your blog and really like what I am reading.

  13. Unknown says:

    Hi Emre,
    Thanks for this :) I'm a newbie in the field of Oracle database.

  14. Anonymous says:

    Cleaning old archivelog files from standby database.
    del_date=`sqlplus -s sys/xxxx@dbname as sysdba << EOF
    SET HEADING OFF
    select max(FIRST_TIME)-3
    from v\\$log_history;
    EOF`

    rman <>$OUT
    connect target /

    delete noprompt archivelog until time '$del_date';

    crosscheck archivelog all ;

    EOF

  15. Anonymous says:

    Dear Emre,

    When does Oracle 11g decide that there's a `space constraint`?

    We often get warnings from CloudControl that our FRA is 90% full, so we go and clean the logs manually. Should we let them approach 100% so Oracle would claim the space by itself?

    Thank you for any answer you could provide.

    Regards,

    S.

  16. shivani says:

    Astonishing web diary I visit this blog it's incredibly magnificent. Strangely, in this blog content made doubtlessly and sensible. The substance of information is instructive.
    Oracle Fusion Financials Online Training
    Oracle Fusion HCM Online Training
    Oracle Fusion SCM Online Training
    oracle Fusion Technical online training

  17. McAfee.com/Activate Since the world is developing each day with new computerized advances, digital dangers, malware, information, and harming diseases have additionally turned out to be increasingly more progressed with every day. These digital contaminations harm a gadget or documents in different ways.McAfee.com/Activate

  18. I really enjoyed reading your blog, you have lots of great content. Please visit here:
    McAfee.com/Activate
    Bruce Wayne

  19. I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well.

    oracle fusion functional training
    oracle integration cloud service online training

  20. Utilizing the provided controller, press the HOME or MENU button.
    Choose Video, Application, My Apps or Apps, contingent upon your model.
    Choose the Prime Video application.
    Choose Sign In and Start Watching and note the enlistment code that shows up on the system.
    Utilizing the web, go to the Amazon™ sign-in page

    amazon.com/mytv
    www.amazon.com/mytv enter code sign in
    www.amazon.com/mytv
    www.primevideo.com/mytv
    amazon prime login
    www.primevideo.com/mytv register code

  21. Activate amazon mytv login activate by giving the activation link activate primevideo mytv in your tv and enjoy amazon popular shows such as movies & web series.Visit given link primevideo.com mytv..

  22. Factory default reset removes any saved configurations and profiles in your apple router. Resetting apple router is easy process. You need to disconnect the base station from power. While holding down the reset button, connect the base station to power and continue to hold the reset button. Wait about a minute and release it.

  23. If you want to take pankaj garg ca final audit classes at best price then visit smartnstudy they offer all faculties pendrive & google drive classes at one place, contact on - 97688 94000


  24. Being a Digital Marketer and Software Engineer by profession. My core interests include programming, troubleshooting and blogging. Check me out below:
    We've already written a few posts on how to fix these problems and easily install Office on your PC/Mac by simply clicking the below links:
    office.com/setup
    office.com/setup
    office.com/setup
    office.com/setup

  25. Microsoft 365 is a collaboration cloud that allows you to follow your passion while still running your company. Microsoft 365 is more than just Word, Excel, and PowerPoint; it combines best-in-class productivity applications with powerful cloud services, mobile management, and enhanced security in one seamless experience.
    Get Microsoft365 Home & Student installed through below links:
    office.com/setup home and student 2019
    office.com/setup home and business 2019

  26. Unknown says:

    https://sites.google.com/setmachome.com/aolmaillogin/ is an American web portal and online service provider based in New York City. works best with the latest versions of the browsers. You're using an outdated or unsupported browser and some AOL features may not work properly. AOL latest headlines, entertainment, sports, articles for business, health and world news.



  27. web.whatsapp allows you to send and receive your WhatsApp chat & messages online on your Tablet or Desktop PC. web.whatsapp WhatsApp Web is the PC version of Whatsapp Messenger which is based on a desktop browser. web.whatsapp Also, there is no other account required to use the web version of WhatsApp, your Phone’s account opens on Computer PC. web.whatsapp WhatsApp is a very famous messaging app and available for almost all the android & iPhone devices except some older ones Using a Canon printer service phone, you can get a full installation of the ij.start.canon printer and go to the installed Canon printer to download the driver.



  28. NBC stands for National Broadcasting Company, and it is one of the best famous business broadcast TV networks in the US. You Can Activate NBC on your devices by visiting nbc.com/activate Open the web browser, and visit espn.cpm/activate Type the activation code in the given field, which was provided earlier on the streaming device. Tap on the “Continue” option to proceed further. 12. capitalone.com/activate Card – Guys!! If you want to Activate your New Capital One Card Online? If yes, consider yourself lucky because you are in the correct place. Activate your new credit card when it arrives to start earning rewards. walmart.capitalone.com/activate I have a Capital One online account. Sign In & Activate. I don't have a Capital One online account. Enroll & Activate. How to activate TNT Drama on your device via tndrama.com/activate TNT Drama allows the users to watch their favorite TV channel shows on one platform. You can watch them without a cable TV.

  29. Not having enough cash in your paypal.com/login balance can lead to late payments or prevent you from making quick transactions to other accounts. Many people get addicted to wetv.com/activate Also, not everyone can watch We TV on a TV screen due to busy several technical reasons, so they prefer to install We TV on various devices after signing up and activating in TV provider. Open Google Play Store in your smart TV. Install the Bravo TV program. Open the Bravo TV program. Copy the activation code. Go to bravotv.com/link from web browser and enter the activation code. You are ready to start streaming. The principal thing you need to visit the history.com/activate web initiation page utilizing internet browser. Open your smart TV and Launch the TDS app. Note down your Tbs activation code appear on TV screen. Go to tbs.com/activate on web browser. Choose the android smart TV and enter the confirmation code. Once you click on the submit button.

  30. TurboTax is a software package for preparation of American income tax returns, produced by Intuit. Turbo tax is one of the best online tax preparation software. The software keeps on updating, to attract more and more user, and to avoid any hacking or malware functions. TurboTax free file service is aimed at the average American with simple tax affairs. When you make a purchase of the software you need to Install and activate turbotax at activate.turbotax.com. Americanexpress is an official site to confirm American express card online. Americanexpress is online confirm card site where you can confirm amex card easily. Amex confirm card at american express/confirmcard. Webroot Antivirus is a powerful antivirus, designed to fight malaria and other threats. You can protect your computer, PC, and other devices from malware, viruses, spyware, etc. Webroot gives you excellent PC security. Your antivirus software also allows downloading Webroot with keycode. If you want to download and install Webroot Security on your device, go to webroot.com/safe and your Webroot Safe Download starts automatically. Shop walmart online shopping for Every Day Low Prices. Free Shipping on Orders or Pickup In Store and get a Pickup Discount. Click walmart online shopping for more updates. TinyTask provides quick and easy automation by recording and playback. It is a case study in minimalist programming. Turn your recordings into standalone programs. You can open, record, and compile the recordings on PC. For more details visit tinytask now.

  31. Roku gadgets are easy to setup and simple to use. They accompany a straight forward remote, and incredible highlights like Roku Search which makes it easy to discover what you need to watch. You need a Roku record to activate your Device and access diversion. There are no month to month gear rental expenses. Including an installment technique lets you effectively lease purchase motion pictures or buy in to well known administrations. Activate Roku link, go to roku.com/link account enter Roku link code showed on Roku TV. Roku offers the accompanying seven gushing Device. There are five set-top gushing boxes, the Roku Ultra, Roku Premiere, Roku Premire+, Roku Express, and Express+. At that point there are two sticks, the Roku Streaming Stick and Roku Streaming Stick Plus. You need a Roku record to activate your Device and access diversion. There are no month to month gear rental expenses. Including an installment technique lets you effectively lease/purchase motion pictures or buy in to well known administrations. Activate Roku link, go to roku.com/link account enter Roku link code showed on Roku TV. Hulu gives you access to the biggest spilling library to watch a great many shows and motion pictures, elite Originals, past seasons, ebb and flow scenes, and more on your preferred gadgets. You can even include Live TV for sports, news, and can't-miss occasions. Start the Hulu channel activation using hulu.com/activate and then, you will surely enjoy the programs telecast on the channel. Hulu is a streaming device, lets you watch thousands of paid & free video content on your TV screen via the Internet. It allow its users to add channels and download movies and much more at one place. All you need to redeem hulu activation code through which you can easily get started. Hulu activation code is an alphanumeric code used to activate hulu devices. Visit: hulu.com/activate and enter hulu activation code to activate your hulu account. In Hulu you will get normal susbcription and limited channels to visit however in Hulu plus is addtional version of hulu in which more TV shows and movies are added. You will find latest series such as game of throne. You can watch full movies and seasons instead only 5 to 6 episodes. You can watch hulu on your computer devices as well. To activate hulu code you need to enter hulu activation code on hulu.com/activate. Before activating login in to your hulu account with the credentials which you registered.

  32. With the Hulu channel on your device, users can easily stream different on-demand and pre-loaded shows on their devices without having to worry about getting ads in between. With Hulu, one can easily open the gates of entertainment no matter which smart device he has. Now, that you know a few basic details about the Hulu channel, let us move forward on our way to activate Hulu using the hulu.com/activate enter code. AVG antivirus software provides virus protection to your device and digital data. To protect your computer, Windows, Mac, laptop, tablet, or mobile phone, you need to proceed AVG download, install, and activate. AVG antivirus provides 100% safe virus protection with its advanced technologies. With Avg.com/retail , you can securely buy that blocks spam, scams, & phishing emails and Avoid fake websites. If you have any kind issue or you want more knowledge about AVG antivirus you just visit to the official website via Avg.com/retail. AVG is the most well-known antivirus software that provides first-class antivirus management and network security. Get you AVG retail software online from Avg.com/retail which is the official website for avg. Or you can directly purchase an AVG Retail card from an offline vendor. In both cases all you need is to visit the avg website and enter activation code for avg after creating an avg account. Hackers always try to finds the way, through which they take your advantage. Their main motive is to make money by whatever means. So it is entirely your responsibility to take care of your devices like laptops and PC etc. The simplest way through which you can protect your device is by installing AVG antivirus via Avg.com/retail .

  33. komalweb says:
    This comment has been removed by the author.
  34. komalweb says:

    Norton Antivirus provides protection from viruses, malware, online threats without harming device performance. It also blocks harmful websites. You can get Norton.com/setup product from retail store and also download and install Norton Antivirus with product key from Norton.com/setup. And to do this, you can visit the website given by us at Norton.com/setup or link. Our entire team is available to help you.
    Norton.com/setup
    Norton.com/setup

  35. komalweb says:

    website to setup your printer. Get started withyour new printer by downloading the software.We Support you for 123.hp.com/setup Network Printer Connection which can be done by either USB or Wireless Connection.website to setup your printer get started with your new printer by downloading the software.You will be able to connect the printer to a network and print across devices.

  36. komalweb says:

    Download System Mechanic Professional for Windows to optimize, repair, and protect your PC against Internet threats. System Mechanic is a quick, simple way to clear unwanted files from your PC .System Mechanic Download enables the users to make your device perform more efficiently and without any issues. Visit iolo system mechanic downloadand get the software for your device.

  37. shilpi says:

    Download and install and office setup from office.com/setup . log in and enter office 25 digit product key to activate your office product. if you are new user then
    you need to create a office account to get more benefits of office.com/setup subscription. Ms office is a new sensatin office.com/setup in the market that left every
    body awestruck with its best products.
    office.com/setup
    office.com/setup
    office.com/setup
    office.com/setup
    office.com/setup
    office.com/setup
    office.com/setup

  38. shilpi says:

    Webroot SecureAnywhere Antivirus is a powerful antivirus, designed to fight malaria and other threats. You can protect your computer, PC, and other devices from
    malware, viruses, spyware, etc. You can download, install and install webroot via webroot.com/safe . To install Webroot go to webroot.com/safe . If you do not have an
    account, go to Find My Webroot Account and create an account. If you want to know more about it, then you can visit the webroot.com/safe website.
    webroot.com/safe

  39. shilpi says:

    Download the McAfee antivirus mcafee.com/activate key to protect your device from being spoiled by the harmful viruses as it starts finding the way to remove them from
    the device as soon as possible.If you have code, you enter mcafee activation code and if you have any problems redeeming your activation code, you can contact our team
    through this website mcafee.com/activate and get the information Can.For more information, you can visit our website mcafee.com/activate and enjoy.
    mcafee.com/activate


  40. Microsoft 365 provides more security than a basic Office 365 subscription, with features such as Enhanced Security Features, wireless cleaning, and app safety and security that prevents duplication.. Instead of using Microsoft Word and Excel, Microsoft 365 offers a range of useful features.
    microsoft365.com/setup
    office.com/renew
    microsoft365.com/setup
    office.com/renew
    office365.com/setup
    office365.com/setup

  41. shiviwebh says:

    "Microsoft 365 is the productivity cloud designed to help you pursue your passion and run your business. More than just apps like Word, Excel, PowerPoint, Microsoft 365 brings together best-in-class productivity apps with powerful cloud services, device management, and advanced security in one, connected experience.

    office.com/setup"

  42. Download and install and office setup from office.com/setup . log in and enter office 25 digit product key to activate your office product. if you are new user then you need to create a office account to get more benefits of office.com/setup subscription. Ms office is a new sensatin office.com/setup in the market that left every body awestruck with its best products.
    office.com/setup

  43. You can download and install norton setup from Norton.com/setup . Norton may receive annual renewal billing, cancellations, refunds, subscriptions, credit card updates, purchases by Norton membership. Visit Norton.com/setup to activate or renew your Norton membership. And a valid Norton membership ensures that your security is always updated. You should activate or renew your subscription before the trial or membership period ends so that all Norton features can continue to be used and your computer is protected. For more information, you can contact our team at Norton.com/setup and get more and more information.
    Norton.com/setup

  44. Roku empowers you to watch free and Roku.com/link paid video content on your TV by methods for the Internet. For Activating Roku, go to www.roku.com/associate record enter Roku com association code appeared on Roku TV. Initiate Roku tv, go to rokucom link Roku.com/link record enter Roku com connection code showed on Roku TV.
    roku.com/link

  45. Kaspersky Anti-Virus features include real-time protection, detection and removal of viruses, trojans, worms, spyware, adware, keyloggers, malicious tools and auto-dialers, as well as detection and removal of rootkits
    Kaspersky.com/activation

  46. Disney+ Hotstar is currently the most popular OTT service in India. Disney+ is a subscription-based streaming video service owned by Disney that’s similar to Netflix, Apple TV+, and Amazon Prime Video.
    disneyplus.com/begin

  47. yuvi says:

    Select the office product you want to download and install on the device. Go to the [url=https://installmsoffices.blogspot.com/]office.com/setup[/url] option. To upgrade Office, press on the products of office.com/setup and start downloading and installing Office products on the device.log in and enter office 25 digit product key to activate your office product. if you are new user then you need to create a office account to get more benefits of office.com/setup subscription.

  48. You can download and install norton setup from Norton.com/setup
    . Norton may receive annual renewal billing, cancellations, refunds, subscriptions, credit card updates, purchases by Norton membership. Visit Norton.com/setup
    to activate or renew your Norton membership. And a valid Norton membership ensures that your security is always updated. You should activate or renew your subscription before the trial or membership period ends so that all Norton features can continue to be used and your computer is protected. For more information, you can contact our team at Norton.com/setupand get more and more information.

    Norton.com/setup
    Norton.com/setup
    Norton.com/setup
    Norton.com/setup
    Norton.com/setup
    Norton.com/setup

  49. shilpiweb says:

    Kaspersky Anti-Virus features include real-time protection, detection and removal of viruses, trojans, worms, spyware, adware, keyloggers, malicious tools and auto-dialers, as well as detection and removal of rootkits.
    Kaspersky.com/activation
    Kaspersky.com/activation
    Kaspersky.com/activation
    Kaspersky.com/activation
    Kaspersky.com/activation
    Kaspersky.com/activation

  50. shilpiweb says:

    Roku Streaming players are an increasingly advantageous Roku.com/link and financially savvy approach to sit in front of the TV. Simply plug it into your TV, associate with the web, set up a Roku record, and start spilling your top choices.Roku gadgets are easy to set-up and simple to-utilize. roku/link They accompany a straightforward remote, and incredible highlights like Roku Search which makes it easy to discover what you need to watch.
    roku.com/link
    roku.com/link
    roku.com/link
    roku.com/link

  51. shilpiweb says:

    Amazon Prime TV, and MyTV code. To register your device on the Amazon website you go to our website and enter the given code. The program requires the customer to have an Amazon account and a streaming device or TV. Amazon Prime Video is available on almost all streaming devices like Roku, Amazon Fire TV, Chromecast. For this, you just have to go to Amazon Amazon.com/mytv with the help of the amazon activation code. You can visit our website for details of the entire process. You can do this by installing the Amazon.com/mytv Video application on your smart TV, or the digital media player or video game console connected to your TV by visiting the link provided by us in the de cription.or more information, you can contact our team at Amazon.com/mytv and get more and more information.
    amazon.com/mytv
    amazon.com/mytv

  52. shiviweb says:

    Select the office product you want to download and install on the device. Go to the office.com/setup option. To upgrade Office, press on the products of office.com/setup and start downloading and installing Office products on the device.log in and enter office 25 digit product key to activate your office product. if you are new user then you need to create a office account to get more benefits of office.com/setup subscription.

    office.com/setup
    office.com/setup

  53. shiviweb says:

    Roku Streaming players are an increasingly advantageous roku.com/link and financially savvy approach to sit in front of the TV. Simply plug it into your TV, associate with the web, set up a Roku record, and start spilling your top choices.Roku gadgets are easy to set-up and simple to-utilize.
    roku.com/link They accompany a straightforward remote, and incredible highlights like Roku Search which makes it easy to discover what you need to watch.
    roku.com/link
    roku.com/link
    roku.com/link

  54. shiviweb says:

    Norton Antivirus provides protection from viruses, malware, online threats without harming device performance. It also blocks harmful websites. You can get Norton.com/setup product from retail store and also download and install Norton Antivirus with product key from Norton.com/setup. And to do this, you can visit the website given by us at Norton.com/setup or link. Our entire team is available to help you.

    Norton.com/setup
    Norton.com/setup
    Norton.com/setup
    Norton.com/setup
    Norton.com/setup
    Norton.com/setup

  55. Amazon Prime TV, and MyTV code. To register your device on the Amazon website you go to our website and enter the given code. The program requires the customer to have an Amazon account and a streaming device or TV. Amazon Prime Video is available on almost all streaming devices like Roku, Amazon Fire TV, Chromecast. For this, you just have to go to Amazon amazon.com/mytv with the help of the amazon activation code. You can visit our website for details of the entire process. You can do this by installing the Amazon.com/mytv Video application on your smart TV, or the digital media player or video game console connected to your TV by visiting the link provided by us in the de cription.or more information, you can contact our team at amazon.com/mytv and get more and more information.


    Hulu is one amongst the foremost common streaming services, holding you watch movies, shows, live matches, and on-demand tv. the appliance provides additional importance to originals and new TV shows than to documentaries and flicks.
    hulu.com/activate

  56. cash app is a online money transfer service . It is available for only mobile application.If you want to send money and receive money securely and quickly . if you want to know about cash app refund process then you can contact cash app customer support. I will provide best solution for your queries.

  57. Hello, I am Kandra John. We are a Cash app technical service provider. If you are dealing with How To Borrow Money From Cash App issues on your device then you can contact our trained professionals through the Cash app customer helpline number for all Cash app related questions. We make sure that you will be satisfied with our guidelines.




  58. Coinbase Pro was designed as a virtual currency exchange for professionals and institutions to trade some of the world's most popular digital assets. Customers with a Coinbase Pro account may be able to access exclusive features that are no longer available on any other platform. This platform caters to big volume and seasoned traders rather than novices. Coinbase Pro appears to offer and assist with bitcoin usage.
    coinbase login |
    coinbase pro login |
    coinbase sign in |

  59. Unknown says:

    Hello ,

    could you please help me with shell script to not to delete archives if standby database
    is shutdown

    Thanks
    Sumeet

Powered by Blogger.

Page Views

- Copyright © Emre Baransel - Oracle Blog -Metrominimalist- Powered by Blogger - Designed by Johanes Djogan -