This page was last edited on July 17, 2020, at 15:52.
Comments or questions about this documentation? Contact us for support!
Purpose: This page presents the SQL queries used for set-based maintenance of the UCS database on an Oracle RDBMS.
See Archiving and Pruning the DB for prerequisites. In particular, before using these queries you must first run archiving from UCS Manager.
# tnsnames.ora Network Configuration File: D:\app\Administrator\product\11.1.0\db_1\network\admin\tnsnames.ora
# Generated by Oracle configuration tools.
UCS =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = bsgenuscdb.emea.lucent.com)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = UCS)
)
)
UCSARCH =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = bsgenuscdbarch.emea.lucent.com)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = UCSArch)
)
)
In this example, the UCS entry is for the main database and UCSARCH is for the archive database. Note the following:
(1) These names must match the names of the databases used. (2) Because is no need for a link from archive to main, you do not have to modify the tnsnames.ora on the archive database machine.create database link arch using 'ucsarch';
Replace ucsarch with the name that you configured in the tnsnames.ora file.
desc interaction@arch;
drop database link arch;
create database link arch using 'ucsarch'; insert into interaction@arch select * from interaction_arch; insert into emailin@arch select * from emailin_arch; insert into emailout@arch select * from emailout_arch; insert into phonecall@arch select * from phonecall_arch; insert into callback@arch select * from callback_arch; insert into chat@arch select * from chat_arch; insert into ixncontent@arch select * from ixncontent_arch; insert into ixnContentSentReceived@arch select * from ixnContentSentReceived_arch; insert into document@arch select * from document_arch; insert into cobrowseurl@arch select * from cobrowseurl_arch; insert into attachment@arch select * from attachment_arch; drop database link arch;
drop table interaction_arch; drop table emailin_arch; drop table emailout_arch; drop table phonecall_arch; drop table callback_arch; drop table cobrowseurl_arch; drop table chat_arch; drop table attachment_arch; drop table ixncontent_arch; drop table ixnContentSentReceived_arch; drop table document_arch;
Archiving is now complete. Return to Archiving and Pruning the DB for descriptions of limitations and failure recovery methods.