Steps for Cold Backup..

Hi,
I am new for DBA, i need to take cold backup, can some help me what are all step (commands) i need to follow to perform the successful cold backup.
Advance Thanks
Suresh

Hi Suresh,
A cold backup is very simple.Hope your Database is test or Development or practise one,If it is production Database You have inform users for suitable downtime depending on size of your Database. You have to peform these basic steps,Which I'm doing it for you:
Step 1:Find the location of all the physical file(Datafiles,controlfiles,redologs):
For Datafile:
SQL> select file_name||' '||tablespace_name||' '||bytes from dba_data_files;
FILE_NAME||''||TABLESPACE_NAME||''||BYTES
D:\ORADATA\BOSCHDB\USER123.DBF USER123 104857600
D:\ORADATA\BOSCHDB\EXAMPLE01.DBF EXAMPLE 104857600
D:\ORADATA\BOSCHDB\USERS01.DBF USERS 5242880
D:\ORADATA\BOSCHDB\SYSAUX01.DBF SYSAUX 304087040
D:\ORADATA\BOSCHDB\UNDOTBS01.DBF UNDOTBS1 26214400
D:\ORADATA\BOSCHDB\SYSTEM01.DBF SYSTEM 513802240
For logfile:
SQL> select group#||' '||member from v$logfile;
GROUP#||''||MEMBER
3 D:\ORADATA\BOSCHDB\REDO03.LOG
2 D:\ORADATA\BOSCHDB\REDO02.LOG
1 D:\ORADATA\BOSCHDB\REDO01.LOG
SQL> sho parameter %control%
NAME TYPE VALUE
control_file_record_keep_time integer 7
control_files string D:\ORADATA\BOSCHDB\CONTROL01.C
TL, D:\ORADATA\BOSCHDB\CONTROL
02.CTL, D:\ORADATA\BOSCHDB\CON
TROL03.CTL
Step 2: Shutdown the database (IMMEDIATE or NORMAL option):
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
Step 3: Use OS commands or utilities to copy the database datafiles and control files to your backup destination:
Note 1:Make sure this Backup destination is having enough space
Note 2:If you are doing in any unix flavour use command cp
D:\oradata\BoschDB>copy /b *.DBF D:\TESTDB_BACKUP
EXAMPLE01.DBF
SYSAUX01.DBF
SYSTEM01.DBF
TEMP01.DBF
UNDOTBS01.DBF
USER123.DBF
USERS01.DBF
7 file(s) copied.
D:\oradata\BoschDB>copy /b *.LOG D:\TESTDB_BACKUP
REDO01.LOG
REDO02.LOG
REDO03.LOG
3 file(s) copied.
D:\oradata\BoschDB>copy /b *.CTL D:\TESTDB_BACKUP
CONTROL01.CTL
CONTROL02.CTL
CONTROL03.CTL
3 file(s) copied.
Step 3. Startup the database.
SQL> startup
ORACLE instance started.
Total System Global Area 289406976 bytes
Fixed Size 1248600 bytes
Variable Size 130024104 bytes
Database Buffers 155189248 bytes
Redo Buffers 2945024 bytes
Database mounted.
Database opened.
Step 4:Verify your Backup.
D:\>cd TESTDB_BACKUP
D:\TESTDB_BACKUP>dir
Volume in drive D is PEACY_DATA
Volume Serial Number is 9CAF-C076
Directory of D:\TESTDB_BACKUP
02/25/2011 11:00 AM <DIR> .
02/25/2011 11:00 AM <DIR> ..
02/23/2011 12:15 PM <DIR> Archives
02/25/2011 10:53 AM 7,389,184 CONTROL01.CTL
02/25/2011 10:53 AM 7,389,184 CONTROL02.CTL
02/25/2011 10:53 AM 7,389,184 CONTROL03.CTL
02/25/2011 10:53 AM 104,865,792 EXAMPLE01.DBF
02/25/2011 10:53 AM 52,429,312 REDO01.LOG
02/25/2011 10:53 AM 52,429,312 REDO02.LOG
02/25/2011 10:53 AM 52,429,312 REDO03.LOG
02/25/2011 10:53 AM 304,095,232 SYSAUX01.DBF
02/25/2011 10:53 AM 513,810,432 SYSTEM01.DBF
02/10/2011 10:03 PM 20,979,712 TEMP01.DBF
02/25/2011 10:53 AM 26,222,592 UNDOTBS01.DBF
02/25/2011 10:53 AM 104,865,792 USER123.DBF
02/25/2011 10:53 AM 5,251,072 USERS01.DBF
13 File(s) 1,259,546,112 bytes
3 Dir(s) 2,820,775,936 bytes free
Hope it helps.
Best regards,
Rafi.
http://rafioracledba.blogspot.com

Similar Messages

  • Stop and start database for cold backup

    Hi,
    Database :Oracle 10g R1
    OS : Red hat 3
    I have a RAC database with 2 nodes.
    I build this script to make a cold backup of the database. (I will put it in the cron tab).
    My question is the SRVCTL will work in this scripts??
    # ***** COLDBACKUP ORACLE DATABASE ON LINUX *****
    DIRECTORY=/u02/backup/script/; export DIRECTORY
    cd ${DIRECTORY}
    # ***** SHUTDOWN THE DATABASE *******
    export oracle_sid=RCDB
    srvctl stop database -d RCDB
    # *****cold backup for "RCDB" database on 13-FEB-07 ... *****
    # ***** COPY FILES *****
    # Redo logs
    cp /u02/oradata/RCDB/redo01.log ${DIRECTORY}
    cp /u02/oradata/RCDB/redo07.log ${DIRECTORY}
    cp /u02/oradata/RCDB/redo03.log ${DIRECTORY}
    cp /u02/oradata/RCDB/redo08.log ${DIRECTORY}
    # Datafiles
    #*********START UP DATABASE AND SERVICES********
    srvctl start database -d RCDB
    exit
    Message was edited by:
    ASkika
    Message was edited by:
    ASkika

    I need to put a quick policy backup ... and cold
    backup it's what I use and it works.And reduces the availability of your cluster.
    The problem about RMAN is that we never use it. I
    have to learn about it to make scripts to test....
    and this will tack me 2 or 3 days...I'd assume that installing RAC didn't go overnight, so why underfund the crucial part of any database system, the backup?
    There's even a step by step guide for backup on the Getting Started: DBAs page.
    Samples (and changes) on the latest version of RMAN can be found for example in RMAN Enhancements.
    Or take a look at this Oracle Magazine article:Faster Backup, Faster Recovery
    Backup and Recovery Basics in the user documentation may also be a good starting point.
    C.

  • Script for cold backup using RMAN

    Dear all,
    db_version:-10.2.0.4
    os_version:- Windows 2003 server
    I wish to schedule a script that will take cold backup of my database using RMAN.
    Any help is appreciated ..
    Edited by: user12000301 on May 18, 2011 5:02 AM

    Dear All,
    Thanks a lot for your valuable time :
    However i have managed to do it as follows :
    1. First i have configure the parameter of RMAN ( Since it is my UAT in Noarchive log mode), I have never tried RMAN cold backup on the same.
    Following is the out put of SHOW ALL;
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 2 DAYS;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'D:\DB\RMAN_BKP\BACKUPS%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO COMPRESSED BACKUPSET;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'D:\DB\RMAN_BKP\BACKUPS\DB_%U.%r';
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE ENCRYPTION FOR DATABASE OFF;
    CONFIGURE ENCRYPTION ALGORITHM 'AES128';
    CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'D:\DB\RMAN_BKP\BACKUPS\SNCFDB.ORA';
    2. I have created a rman_cold_bkp.bat file which has following entry :
    cd c:\oracle10g\bin
    set oracle_sid=DB
    rman target system/*** @D:\DB\RMAN_BKP\SCRIPT\rman_cold_bkp.rcv log=D:\DB\RMAN_BKP\SCRIPT\rman_cold_bkp.log
    exit
    3. Whereas rman_cold_bkp.rcv file contains following contents:
    run
    allocate channel C1 device type disk;
    shutdown immediate;
    startup mount;
    backup database;
    alter database open;
    release channel C1;
    exit
    I did checked it and it;s working fine for me :-)
    Regards,
    Girish

  • Script for cold backup on windows

    looking for a script that can be scheduled nightly to perform
    a cold backup to disk of a 8.1.7 database on windows.
    while i've seen many, i'm looking for one that will keep 3 days worth
    of backups... then write over the oldest etc...
    thanks
    dg

    set term off
    set head off
    set feedback off
    set verify off
    spool c:\coldbackup.bat
    select 'copy '||name||' c:\DBBACKUP' from v$datafile;
    select 'copy '||name||' c:\DBBACKUP' from v$controlfile;
    select 'copy '||name||' c:\DBBACKUP' from v$tempfile;
    select 'copy '||member||' c:\DBBACKUP' from v$logfile;
    spool off
    shutdown IMMEDIATE
    host c:\coldbackup.bat
    startup
    host del c:\coldbackup.bat
    set term on
    set head on
    set feedback on
    set verify on

  • Need clarification for cold backup and recovery

    Hello Everyone ..
    I have much confusion on cold backup and recovery topic.
    Already i posted a scanario regarding this and i want to know some clarity points to understand.
    1. I had cold backup two days before
    2. I am creating an object *(EMP)* and inserting some records then issue log switch continiously.
    3. Manually i removed all physical files (datafiles , control files , log files , redolog files ...)
    4. then i issued STARTUP FORCE MOUNT;
    5. here i am getting error identifying control file.
    6. cold backup two days before all files restored
    6. then i issue recover database using backup controlfile until cancel;
    7. i am trying to issue select * from emp; i am getting error
    select * from emp
    *ERROR at line 1:
    ORA-00942: table or view does not existMy QUESTION IS
    After cold backup finished , i created emp table ..
    when restoring old back " There is no emp table"
    *- then , can i recover emp table ? - If so , please explain about this ..*
    Note : REF - LINK https://forums.oracle.com/forums/message.jspa?messageID=11056341#11056341
    - Above link says what i did ? . In this thread i am asking concept & logic ..
    please do NOT consider as "*DUPLICATE*"

    When you recover the database using backup controlfile until cancel, you have to apply archived logs. Did you apply all of them?
    If the create command was in the online redo, not yet archived, and you lost the online redo, then you won't have it. This is why you want to have redo multiplexed, it is a critical piece.
    In some recovery scenarios, if you haven't lost the online redo, you need to specify those files as if they were archives.
    It is normally easier to just be sure you have the latest controlfiles and let Oracle figure it out automatically (which is why you want to use online RMAN backups rather than cold backups). But yes, it is important to understand what is going on for different scenarios. I used to have manual standbys, and one of the disaster instruction sets explained to try to get online redo over to the standby to lose as few transactions as possible. That could still be useful for some snapshot hardware type scenarios, assuming the business is too cheap to do proper failovers.

  • Database hangs in shutdown immediate for cold backup

    Dear experts ,
    we have scheduled cold backup for our database.
    is there any solution to resolve below mentioned errors other than RMAN hot backup or shutdown abort ?
    Sat Jan 26 00:20:55 2013
    Active call for process 3939 user 'oracle' program '[email protected]'
    SHUTDOWN: waiting for active calls to complete.
    Sat Jan 26 01:15:59 2013
    SHUTDOWN: Active sessions prevent database close operation
    Instance shutdown aborted

    Hi,
    should we daily kill these processes with LOCAL=NO
    what is proposed solution in such cases ?
    is it not harmful for OS or database to kill these processes daily ?Yon can create shell script to find kill session only when you find active calls in your database alert log. You need not have to kill it on daily basis.
    Refer MOS tech notes for more details:
    *Alert Log: Shutdown Waiting for Active Calls to Complete [ID 1039389.6]*
    *What Is The Fastest Way To Cleanly Shutdown An Oracle Database? [ID 386408.1]*
    thanks,
    X A H E E R

  • What are source directory for cold backup of apps 11.5.10 and 11.5.10.2

    Hello All,
    Application Version: 11.5.10
    OS : Sun Solaris 5.9
    Can you provide me information what should I include in my backup script?
    e.g we have done some customized reports so we need to include that also into backup
    So in case for hard disk failure we do not loose customization!!!.
    e.g RDBMS Oracle Home , APPL_TOP
    I am not sure how application spared
    I want to map all required directory into one folder then I just include that one folder into my backup script.
    Reg
    Chirag Patel
    Kenya

    Chirag, all the files should be located under the directories listed above by John. Even for custom objects (forms, reports, packages, ..etc).
    I want to map all required directory into one folder then I just include that one
    folder into my backup scriptWhy would you need to include it all in one folder? Once you get the directory structure of your Application you can simply include all the root directories in your backup script.

  • Script for cold backup

    Hello friends;
    I'm trying to run following script which I copied from somewhere using .sh file but the same is not running and showing errors:
    Script:
    #!/bin/sh
    dy=`date +%D`
    bk='/backup/test'
    cm_oracle='tar -czhf '$bk'/'$dy'_db_bkp.tar.gz /TEST/oracle'
    [oracle@visionerp ]$ sh cold_bkp.sh
    : command not found:
    : command not found:
    : command not found:
    OS Linux 5.8.
    Regards
    Aneel Ahmed

    Hi ,
    I see this : ^M: bad interpreter. Can you vi your file and see if you have ^M character ?
    you may need to remove this. Dont do it manually.
    follow any of the links below :
    https://www.google.co.in/search?q=remove+%5Em+linux&oq=remove+%5EM+&aqs=chrome.1.69i57j0l5.7360j0j7&sourceid=chrome&espv=210&es_sm=93&ie=UTF-8

  • Steps for database backup

    Hi all,
    I am new to Adobe LiveCycle.
    Could you please help me how to take the backup of the database of Adobe LiveCycle, as i am having ES2 and ES4.
    Thanks in advance.

    Please refer the below URL
    http://help.adobe.com/en_US/livecycle/9.0/adminHelp/admin.htm?content=000455.html --ES2
    http://help.adobe.com/en_US/livecycle/11.0/AdminHelp/WS92d06802c76abadb-5145d5d12905ce07e7 -7c77.2.html -- ES4
    Hope it helps
    Vipin

  • 11.5.10.2 Cold Backup

    Helo all my friend;
    I am soo new in backup thing,thatswhy i need ur help.I wanna take cold backup of my 11.5.10.2 system. But i dont know how i have to do it.I read some documents in here but its not so clear.
    I know if i want to take cold backup then i have to close APPS service,database and listener and then i will do what? Which folder i have to copy for cold backup?(eg:All my apps and database directory or just APPL_TOP's folder or $ORACLE_HOME's folders etc..)
    If anyone explain cold backup in 11.5.10.2 step by step it would be great ... I am waiting ur answers..
    Thanks
    helios

    Hi my friend i found something like in
    "how we backup a database forms"
    "Please have a look at the following links for a similar discussion:
    System Backup
    http://forums.oracle.com/forums/thread.jspa?messageID=1674975
    Apps Backup
    http://forums.oracle.com/forums/thread.jspa?messageID=1622999
    Backup Oracle Applications (11.5.10.2)
    http://forums.oracle.com/forums/thread.jspa?messageID=1765123
    Best Backup Strategy
    http://forums.oracle.com/forums/thread.jspa?messageID=1972656
    how to clone with rapid clone utilityNote: 230672.1 - Cloning Oracle Applications Release 11i with Rapid Clone
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=230672.1 " but its not what i am asking you...
    i was looking my system.Should i copy all my apps and database directory or
    i should copy my $APPS_TOP(by applvis user) and $ORACLE_HOME(by oravis user) ??
    But i checked my dbf file stored in visdata directory if i copy $ORACLE_HOME its mean i wont copy visdata directory and its makes me confused here...
    Plz help
    thanks

  • Cloning Using Cold Backups !!!!

    Dear All,
    Greetings,
    I Want To Ask What Are All The Files And Directories That I Need To Copy From The Original Server To The Destination To Perform A Cloning From Cold Backups ?
    The Second Thing, Can You Plz, Tell Me The Complete Steps To Perform This Cloning .
    Plz, It's Urgent
    Thank You .
    Guivara

    Hi Guivara,
    Sabar given urls that would be useful for your requirement.
    Generally for cold backups
    We need to take the below's from your original server.
    Control Files,
    Redo log files,
    all Data files
    After restore those files into your destination, you should edit/modify the original server files to destination server path.
    For example,
    System.dbf is located on /u01/oracle/product/9iR2/oradata/' but in destination server you want to put other location, then you should change the path using
    Alter database rename .....
    Cheers,
    Moorthy.GS

  • Oracle R12 12.1.3, how to make cold backup

    Hello guys
    After a month long efforts, I was able to deploy the 12.1.3 templates successfully and the full vision instance is accessible without any technical hickups. I have setup VM Server 3.1.1 and VM Manager 3.1.1 using Oracle VirtualBox. The application is running on a two node structure now and I would like to take cold backups for both apps and database tier, later merge them to a single node and move to Oracle Linux 6.2/6.3 so that I could take it around in my laptop for demonstration purposes (We are on 12.0.4) right now and dwelling the possibilities of migrating to 12.1.3)
    regards,
    raj

    I already have two node application R12 (12.1.3) structure, now what I want is
    I want to take a cold backup of application tier, and database tier.
    Then move the backup to a new server and setup a single node, which will be on Oracle Enterprise Linux 6.2
    So, basically I want to know how to take a cold backup and then setup a new server with the backup.You can use any of the commands mentioned in this link -- http://www.oracle-base.com/articles/misc/os-backup-commands.php
    You might also use rcp/scp.
    http://linux.about.com/od/commands/l/blcmdl1_rcp.htm
    http://www.linuxtutorialblog.com/post/ssh-and-scp-howto-tips-tricks
    Please note for cold backup you will need to shutdown the application/database properly (clean shutdown).
    Thanks,
    Hussein

  • Using tar with zip for Datafiles backup on windows machine

    Dear all,
    We have R12 e business suite instance on windows.
    I was implementing cold backup for this. Unfortunately i am not a windows guy.
    I do have MKS tools installed on my windows machine, which contains the tar command.
    Can i use tar -cvzf <bkp>.tgz <location of datafiles> for this?, My main concern is, is it going to harm the source like corruption etc..
    Thanks

    If MKS tools are supported under Windows it should not corrupt input files whether input files are Oracle database files or any other Windows files.
    You could try instead to use RMAN for cold backup if you have already RMAN experience:
    - RMAN does not backup empty blocks
    - RMAN can also compress backups
    - RMAN is fully supported on Windows if corresponding Oracle version is certified on your Windows server.
    See an example of cold backup for database running in NOARCHIVELOG mode in http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmquick.htm#BRADV90059.
    If your database runs in ARCHIVELOG mode just backup your database online: http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmquick.htm#i766544.

  • My cold backup shell script not working

    I have written a shell script for cold backup but. It says that line 42 has unexpected syntex error '{' and line 57 unexpected end of file. Please help
    BKUP_DIR=/u03/backups/abu/nightly_backup
    LOG_FILE=/u03/backups/abu/backup.log
    ORACLE_HOME= /u01/app/oracle/product/10.2; export ORACLE_HOME
    ORACLE_SID=SEED; export ORACLE_SID
    PATH="$PATH:$ORACLE_HOME/bin";export PATH
    # Execute the backup procedure
    echo ymd=`date +%Y%m%d` >> $LOG_FILE
    echo "Database BACKUP starting." >> $LOG_FILE
    ORACLE_HOME=/u01/app/oracle/product/10.2; export ORACLE_HOME
    ORACLE_SID=SEED; export ORACLE_SID
    PATH="$PATH:$ORACLE_HOME/bin";export PATH
    rman target=/ << EOF
    shutdown immediate
    EOF
    if [ $? -eq 0 ]
    then
    mkdir -p ${BKUP_DIR} # make directory
    echo "Database shut down.">> $LOG_FILE
    else echo "not shutdown".>> $LOG_FILE
    fi
    if [ ! -d ${BKUP_DIR} ]
    then
    echo "Not a directory: ${BKUP_DIR}">> $LOG_FILE
    exit 1
    fi
    echo "Previous Backup is being removed." >> $LOG_FILE
    rm ${BKUP_DIR}/${ymd-${seed}.gz >>$LOG_FILE
    echo "Cold backup being performed." >> $LOG_FILE
    cp /u01/app/oracle/admin/SEED/* ${BKUP_DIR}/$ymd-${cmsv}.gz #copying database files into new dir
    cp /u02/oradata/SEED/* ${BKUP_DIR}/$ymd-${cmsv}.gz
    cp /u03/oradata/SEED/* ${BKUP_DIR}/$ymd-${cmsv}.gz
    echo "Cold backup of archive logs being performed." >> $LOG_FILE
    mv /u01/app/oracle/product/10.2/dbs/arch/* ${BKUP_DIR}/$ymd-${cmsv}.gz
    gzip ${BKUP_DIR}/$ymd-${cmsv}
    echo "Restarting Database" >> $LOG_FILE
    rman target=/ << EOF
    startup
    EOF
    else
    echo "Database will NOT start up." >> $LOG_FILE
    fi
    echo 'ymd='date +%Y%m%d' >> $LOG_FILE
    echo "Database BACKUP has completed." >> $LOG_FILE
    exit

    I trying to write that script for our new production database. My script will create a folder automatically and will copy all database files into the folder. Now my script dont copy the files into the direcory that automatically create. I want my directory name with timestamp that i already speciy in my code. The scripts now generate an error that now such files or directory. I mean when it tries to copy files from source to destination folder. Please give me some suggestions.
    if [ $? -eq 0 ]
    then
    mkdir -p ${BKUP_DIR} # make directory
    echo "Database shut down.">> $LOG_FILE
    else echo "not shutdown".>> $LOG_FILE
    fi
    if [ ! -d ${BKUP_DIR} ]
    then
    echo "Not a directory: ${BKUP_DIR}">> $LOG_FILE
    exit 1
    fi
    echo "Previous Backup is being removed." >> $LOG_FILE
    rm ${BKUP_DIR}/${ymd-${seed}.gz >>$LOG_FILE
    echo "Cold backup being performed." >> $LOG_FILE
    cp /u01/app/oracle/admin/SEED/* ${BKUP_DIR}/$ymd-${cmsv}.gz #copying database files into new dir
    cp /u02/oradata/SEED/* ${BKUP_DIR}/$ymd-${cmsv}.gz
    cp /u03/oradata/SEED/* ${BKUP_DIR}/$ymd-${cmsv}.gzecho "Cold backup of archive logs being performed." >> $LOG_FILE

  • Steps for Refresh the Test Database with cold-backup

    Hello everybody !
    Can any body write me the steps to referesh the test db ( T1 -> already there) from the cold backup of production database ( P1 on another machine ) . all the datafiles are there available in the backup of production ..controlfile or redolog files are not available of production database. Both databases are 9.2.0.8 and are on different machines with same OS of AIX.
    Thanks in advance !

    Steps
    1.) Before Shutting down P1 DB for cold back execute
    alter database backup controlfile to trace;
    2.) copy the created the trace file from udump to test server
    3.) shutdown the P1DB and take cold backup containing all datafiles
    4.) Copy dbf to test servers
    5.) Edit trc file copied in step no 2
    6.) As you are changing the name of db use option SET ( in place of REUSE)
    7.)Also remove unwanted portion
    8.) Change the name of trc file to <somthing>.sql
    9.) Startup test db in nomount stage
    10.) run the above created sql
    11.) tHis will create controlfiles, place db in mount stage
    12.) issue alter database open reset logs
    13) add tempfiles to temp tbsp
    regards
    Pravin

Maybe you are looking for

  • JSF sample application in WLP 10.3.2

    Hi All, I am new to JSF and trying to build a sample application in WLP 10.3.2. I created a jsp with simple form and submit. Created a JSF portlet with that JSP. When I try to deploy and run the portlet, I get this error on the console. +<Aug 15, 201

  • Multiple graphics cards on 2008 mac pro, won't work

    Hi, I have a 2008 Mac Pro 2 x 2.8 GHz Quad Core Intel Xeon with 14 GB 800 MHz DDR2 FB-DIMM. I have used a ATI Radeon HD 2600 Graphics card connected to 2 x BenQ E2400HD screens. Now, I want 4 screens so I bought a NVidia Geforce 8800 GT graphics card

  • What went wrong in script?

    Hi Gurus Please let me know how to achive data deletion in destination app nothing gets deleted when i run this script , is there something that i need to include? my script is XDIM_MEMBERSET TIME = %TIME_SET% *XDIM_MEMBERSET VERSION = %VERSION_SET%

  • Exchange 2010: Sender address rejected: Access denied

    hi friends i have been recently experiencing an issue with one of my customer which i send email i get bounce message while i can receive their emails with no issue. i have exchange 2010 installed and im using Anti spam device too. my domain is ok.co

  • Database performance: avg. DB time is high

    My system is ECC6, MSSQL 2005 64 bit. I got a ERA report from my solution manager and it showed that we had a performance problem. Our performance overview is red because of the database performance. The avg. DB time in ms is 2768890,3. It's very hig