![]() | Oracle System Handbook - ISO 7.0 May 2018 Internal/Partner Edition | ||
|
|
![]() |
||||||||||||||
Solution Type Technical Instruction Sure Solution 2213073.1 : How To Clean Subscribers Profiles From SPR Database for GEO/Non GEO Systems
In this Document
Applies to:Oracle Communications Subscriber Data Management (SDM) - Version SDM 9.0 to SDM 9.3 [Release SDM 9.0]Tekelec GoalThis document provides instructions on How to clean all the subscribers profiles from SPR Database for GEO/Non GEO system SolutionPrecaution: 1. Stop all the provisioning and SH traffic Procedure: 1. Take the complete backup mysql -u root -p bluedbvol hsssprrepositorydata > /tmp/hsssprrepositorydata.sql;
mysql -u root -p bluedb hsssprprofilerepositorydata > /tmp/hsssprprofilerepositorydata.sql; mysql -u root -p poldb IdMap > /tmp/IdMap.sql; mysql -u root -p spdb subscription > /tmp/subscription.sql; mysql -u root -p bluedbvol hssasnotifysubscription > /tmp/hssasnotifysubscription.sql; 3. Get the count from all the DBs echo " select count(*) from bluedbvol.hsssprrepositorydata" | mysql -uroot -proot
echo " select count(*) from bluedb.hsssprprofilerepositorydata" | mysql -uroot -proot echo " select count(*) from poldb.IdMap" | mysql -uroot -proot echo " select count(*) from spdb.subscription" | mysql -uroot -proot echo " select count(*) from bluedbvol.hssasnotifysubscription" | mysql -uroot -proot 4. Delete the subscribers details from all the DBs echo " delete from bluedbvol.hsssprrepositorydata" | mysql -uroot -proot
echo " delete from bluedb.hsssprprofilerepositorydata" | mysql -uroot -proot echo " delete from poldb.IdMap" | mysql -uroot -proot echo " delete from spdb.subscription" | mysql -uroot -proot echo " delete from bluedbvol.hssasnotifysubscription" | mysql -uroot -proot
POST CHECK
echo " select count(*) from bluedbvol.hsssprrepositorydata" | mysql -uroot -proot
echo " select count(*) from bluedb.hsssprprofilerepositorydata" | mysql -uroot -proot echo " select count(*) from poldb.IdMap" | mysql -uroot -proot echo " select count(*) from spdb.subscription" | mysql -uroot -proot echo " select count(*) from bluedbvol.hssasnotifysubscription" | mysql -uroot -proot 2. All above output should come 0. echo " select count(*) from bluedbvol.hsssprrepositorydata" | mysql -uroot -proot
echo " select count(*) from bluedb.hsssprprofilerepositorydata" | mysql -uroot -proot echo " select count(*) from poldb.IdMap" | mysql -uroot -proot echo " select count(*) from spdb.subscription" | mysql -uroot -proot echo " select count(*) from bluedbvol.hssasnotifysubscription" | mysql -uroot -proot
Attachments This solution has no attachment |
||||||||||||||
|