Added database scripts used for htobackup, standby, log shipping, etc.

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@4804 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
hardya
2008-04-16 10:16:57 +00:00
parent 60fd32941e
commit f6077a6741
11 changed files with 411 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
REM $Id: applylog.sql 3443 2008-02-01 15:56:18Z hardya $
set echo on
spool activatestandby.log
connect &&user/&&password as sysdba
alter database activate standby;
shutdown immediate;
startup mount;
alter database open;
spool off;
exit