联通数据库切换验证

打印 上一主题 下一主题

主题 850|帖子 850|积分 2550

背景

近况:
数据库与业务分别设立在不同的单板上(suse10 + ora11g)
调整:
把数据库切换到AIX机器上,业务单板稳定。
表示图如下:


数据迁徙流程图


操作过程

数据库A应用数据全表导出

脚本:
shell
  1. #!/bin/sh
  2. #定义备份时间
  3. backupdate=`date +'%Y%m%d_%H%M%S'`
  4. #定义备份路径
  5. BakPath=/opt/oracle/oracle_table_bak
  6. if [ ! -d $ORACLE_BASE/oracle_table_bak ];then
  7. mkdir -p $ORACLE_BASE/oracle_table_bak
  8. fi
  9. # 定义oracle用户名和密码
  10. ACCOUNT=mmsg        #用户名称
  11. PASSWORD=mmsg       #用户密码
  12. SID=mmsgdb          #数据库别名
  13. echo "Please input user name,password and SID to connect to oracle"
  14. #读入用户名
  15. echo "username(mmsg)"
  16. read U_INPUT
  17. if [ "x$U_INPUT" != "x" ]; then
  18.     ACCOUNT=$U_INPUT
  19. fi
  20. #读入密码
  21. echo "password(mmsg)"
  22. read U_INPUT
  23. if [ "x$U_INPUT" != "x" ]; then
  24.     PASSWORD=$U_INPUT
  25. fi
  26. #读入SID
  27. echo "SID( mmsgdb)"
  28. read U_INPUT
  29. if [ "x$U_INPUT" != "x" ]; then
  30.     SID=$U_INPUT
  31. fi
  32. #系统所在路径
  33. APPHOME=`dirname $0`
  34. if [ $APPHOME = "." ]; then
  35.    APPHOME=`pwd`
  36. fi
  37. cd $APPHOME
  38. #执行导出操作
  39. exp $ACCOUNT/$PASSWORD@$SID file=${ORACLE_BASE}/oracle_table_bak/fullbak_$backupdate.dmp  log=${ORACLE_BASE}/oracle_table_bak/fullbak_$backupdate.log full=y
复制代码
导出

1、oracle用户上传fullbak_mmsg.sh脚本,并为fullbak_mmsg.sh脚本增加可实行权限
chmod +x fullbak_mmsg.sh
2、使用oracle用户实行fullbak_mmsg.sh脚本
sh fullbak_mmsg.sh

3、导出过程日志信息片段如下
shell
  1. Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
  2. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  3. Export done in ZHS16GBK character set and UTF8 NCHAR character set
  4. About to export the entire database ...
  5. . exporting tablespace definitions
  6. . exporting profiles
  7. . exporting user definitions
  8. . exporting roles
  9. . exporting resource costs
  10. . exporting rollback segment definitions
  11. . exporting database links
  12. . exporting sequence numbers
  13. . exporting directory aliases
  14. . exporting context namespaces
  15. . exporting foreign function library names
  16. . exporting PUBLIC type synonyms
  17. . exporting private type synonyms
  18. . exporting object type definitions
  19. . exporting system procedural objects and actions
  20. . exporting pre-schema procedural objects and actions
  21. . exporting cluster definitions
  22. . about to export SYSTEM's tables via Conventional Path ...
  23. . . exporting table                    DEF$_AQCALL          0 rows exported
  24. . . exporting table                   DEF$_AQERROR          0 rows exported
  25. . . exporting table                  DEF$_CALLDEST          0 rows exported
  26. . . exporting table               DEF$_DEFAULTDEST          0 rows exported
  27. …………………………………………………………………………………………
  28. . . exporting table                 VPNUNITECORPID          1 rows exported
  29. . exporting synonyms
  30. . exporting views
  31. . exporting referential integrity constraints
  32. . exporting stored procedures
  33. . exporting operators
  34. . exporting indextypes
  35. . exporting bitmap, functional and extensible indexes
  36. . exporting posttables actions
  37. . exporting triggers
  38. . exporting materialized views
  39. . exporting snapshot logs
  40. . exporting job queues
  41. . exporting refresh groups and children
  42. . exporting dimensions
  43. . exporting post-schema procedural objects and actions
  44. . exporting user history table
  45. . exporting default and system auditing options
  46. . exporting statistics
  47. Export terminated successfully without warnings.
复制代码
大概出现的题目解决方法

ORA-06550、EXP-00008、PLS-0020、ORA-06512错误

在导出过程中假如出现如下错误:
shell
  1. EXP-00008: ORACLE error 6550 encountered
  2. ORA-06550: line 1, column 19:
  3. PLS-00201: identifier 'SYS.DBMS_DEFER_IMPORT_INTERNAL' must be declared
  4. ORA-06550: line 1, column 7:
  5. PL/SQL: Statement ignored
  6. ORA-06512: at "SYS.DBMS_SQL", line 1575
  7. ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 97
  8. ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 126
  9. ORA-06512: at line 1
  10. . . exporting table                   DEF$_AQERROR
  11. EXP-00008: ORACLE error 6510 encountered
  12. ORA-06510: PL/SQL: unhandled user-defined exception
  13. ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 50
  14. ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 126
  15. ORA-06512: at line 1
  16. . . exporting table                  DEF$_CALLDEST
  17. EXP-00008: ORACLE error 6550 encountered
  18. ORA-06550: line 1, column 19:
  19. PLS-00201: identifier 'SYS.DBMS_DEFER_IMPORT_INTERNAL' must be declared
  20. ORA-06550: line 1, column 7:
  21. PL/SQL: Statement ignored
  22. ORA-06512: at "SYS.DBMS_SQL", line 1575
  23. ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 97
  24. ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 126
  25. ORA-06512: at line 1
  26. . . exporting table               DEF$_DEFAULTDEST
  27. EXP-00008: ORACLE error 6510 encountered
  28. ORA-06510: PL/SQL: unhandled user-defined exception
  29. ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 50
  30. ORA-06512: at "SYS.DBMS_EXPORT_EXTENSION", line 126
  31. ORA-06512: at line 1
复制代码
请使用如下方法解决:
1、将DBMS_EXPORT_EXTENSION和DBMS_DEFER_IMPORT_INTERNAL实行权限赋予导出用户
shell
  1. grant execute on DBMS_EXPORT_EXTENSION to 导出用户;
  2. grant execute on DBMS_DEFER_IMPORT_INTERNAL to 导出用户;
复制代码
2、成功赋予权限后,实行应用全表导出操作
shell
  1. sh fullbak_mmsg.sh
复制代码
应用全表导入到数据库B

注:


  • 在将数据库A中表数据导入到数据库B中 之前,请务必先备份数据库B中数据,备份操作请参考“数据库A应用数据全表导出”部分内容。
1、删除原有数据库中全部应用表

注:


  • 本段的操作,必须是在正确完成上述应用数据库B中数据的导出工作后进行!
删除原有数据库中全部应用表操作步调
A、准备存储过程

新增一存储过程drop_tbl_table,sql脚本代码如下:
shell
  1. create or replace procedure drop_tbl_table(tname in varchar)
  2. is
  3.     v_sql      varchar(100);    -- 动态SQL语句
  4.     v_count    number(10);      -- 数据库中drop过的表数
  5. begin
  6.     v_count := 0;
  7.    
  8.     for v1 in (select * from all_tables where owner = 'MMSG')
  9.     loop
  10.         v_sql := 'drop table ' || v1.table_name;
  11.         v_count := v_count + 1;
  12.         execute immediate v_sql;
  13.     end loop;
  14.     dbms_output.put_line(v_count);
  15. end drop_tbl_table;
  16. /
复制代码
将上述脚本拷贝到文件中,以asc方式上传到oracle数据库某节点下,并将该文件定名为ora_proc_drop_tbl_tables.sql,如下:
注:


  • sql脚本中select * from all_tables where owner = 'MMSG' 的 MMSG为表的属主,请根据现网环境选择正确属主,否则会造成误删不相干的表,造成数据丢失。
B、创建存储过程

oracle用户成功登录终端,以应用用户(如数据库应用用户mmsg)与数据库建立连接,实行ora_proc_drop_tbl_tables.sql脚本
shell
  1. oracle@mmsg:~> cat ora_proc_drop_tbl_tables.sql | sqlplus mmsg/mmsg@mmsgdb
  2. SQL*Plus: Release 11.1.0.7.0 - Production on 星期一 7月 12 18:08:17 2010
  3. Copyright (c) 1982, 2008, Oracle.  All rights reserved.
  4. 连接到:
  5. Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
  6. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  7. SQL>   2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17   18   19  
  8. 过程已创建。
  9. SQL> 从 Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
  10. With the Partitioning, OLAP, Data Mining and Real Application Testing options 断开
  11. oracle@mmsg:~>
复制代码
C、实行存储过程

实行存储过程,删除全部应用表。
shell
  1. oracle@mmsg:~> sqlplus mmsg/mmsg@mmsgdb
  2. SQL*Plus: Release 11.1.0.7.0 - Production on 星期一 7月 12 17:52:44 2010
  3. Copyright (c) 1982, 2008, Oracle.  All rights reserved.
  4. 连接到:
  5. Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
  6. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  7. SQL> exec drop_tbl_table(0)
  8. PL/SQL 过程已成功完成。
  9. SQL>
复制代码
注意事项:


  • 1、存储过程的实行过程必要一定的时间(尤其应用表数量较多时),请耐心等待。切勿实行退出命令,否则会导致表删除不全。
  • 2、存储过程实行完毕后,输入sqlplus中输入如下命令查看表是否删除完毕:select count(0) from all_tables where owner = 'MMSG';
    假如查询效果是0,则 表删除完毕。
2、导入

imp username/passwd@sid file=XXX.dmp ignore=y commit=y full=y
大概
imp username/passwd@dbname fromuser=XXX touser=XXX file= XXX.dmp ignore=y commit=y full=y
此中:


  • fromuser 该选项用于指定从导出文件中摘取并导入特定用于的对象;
  • touser 该选项用于指定将特定方案对象导入到其他用户。
比方:
shell
  1. imp wyz/wyz@iagw fromuser=mmsg touser=wyz file=./fullbak_20100507_091121.dmp ignore=y commit=y log= fullbak_20100506_194731.log
复制代码
假如导入导出的用户名一致,可以直接使用如下命令进行导入:
shell
  1. imp mmsg/mmsg@mmsgdb  file=./ fullbak_20100507_091121.dmp  ignore=y commit=y  full=y
复制代码
注:


  • .dmp文件必须以bin方式从数据库A ftp到数据库B
大概出现的题目解决方法

假如在导入过程中并未出现下列题目,请跳过下列步调,直接验证导入后数据完备性。
IMP-00013错误

假如在导入过程中出现IMP-00013错误,如下:
shell
  1. % imp wyz/wyz@iagw fromuser=mmsg touser=wyz file=./fullbak_20100506_200334.dmp ignore=y commit=y
  2. Import: Release 11.1.0.6.0 - Production on 星期四 5月 6 20:13:59 2010
  3. Copyright (c) 1982, 2007, Oracle.  All rights reserved.
  4. Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
  5. With the Partitioning, Oracle Label Security, OLAP, Data Mining,
  6. Oracle Database Vault and Real Application Testing option
  7. Export file created by EXPORT:V11.01.00 via conventional path
  8. IMP-00013: only a DBA can import a file exported by another DBA
  9. IMP-00000: Import terminated unsuccessfully
  10. %
复制代码
原因:
导入用户不具有dba权限
解决方法:
赋予导入用户dba和imp_full_Database权限
操作如下:
shell
  1. % sqlplus / as sysdba
  2. SQL*Plus: Release 11.1.0.6.0 - Production on 星期五 5月 7 09:54:40 2010
  3. Copyright (c) 1982, 2007, Oracle.  All rights reserved.
  4. Connected to:
  5. Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
  6. With the Partitioning, Oracle Label Security, OLAP, Data Mining,
  7. Oracle Database Vault and Real Application Testing options
  8. SQL> grant dba to wyz;
  9. Grant succeeded.
  10. SQL> grant imp_full_Database to wyz;
  11. Grant succeeded.
  12. SQL> exit
复制代码
IMP-00003、ORA-01658错误

重新实行导入操作,假如在导入过程中出现如下错误
shell
  1. IMP-00003: ORACLE error 1658 encountered
  2. ORA-01658: 无法为表空间 MMSG 中的段创建 INITIAL 区
复制代码
原因:
1、表空间WYZ不足;
2、数据从A数据库导入到B数据库,但是没有使用B数据库对应的表空间。
解决方法如下:
1、请确保被导入数据的数据库所对应的表空间充足大,假如表空间不足,请使用如下方法进行相应的表空间扩展。
Suse平台扩展Oracle表空间操作
当按照安装规划创建的表空间无法顺应于当前性能测试必要时,可以通过如下方法扩大相应逻辑卷,增加空间。
Suse操作系统下扩展Oracle表空间一样平常情况我们通过扩展裸设备巨细的操作,而不是通过增加裸设备个数的操作来实现。由于Suse中的裸设备raw**是必要跟lv文件进行绑定的,该绑定操作必要在系统重启的时候实行。而绑定关系是设置在启动文件中的(该部分可以参考安装指南)。假如增加了裸设备还必要修改绑定关系,为了减少操作,我们一样平常使用修改lv/裸设备巨细的方式进行。
假设临时表空间必要扩展表空间,步调如下:
扩展lv巨细。先找出临时表空间用到哪个裸设备,假设为raw2,然后在安装文档或/etc/raw文件中找到raw2对应绑定的lv的名称,假设为/dev/datavg/lvora_temp1,那么可以将该lv增大2G。
# lvextend -L +2G /dev/datavg/lvora_temp1
datafile是针对一样平常表空间
当扩展的是临时表空间时,更换成tmpfile
扩展表空间
当表空间已经满时,实行数据库操作数据库会报错,比方:
shell
  1. ORA-01653: 表 MMSG.TMP_BASE_RESULT 无法通过 8 (在表空间 MMSG 中) 扩展
  2. ORA-06512: 在 "MMSG.LOG2DB_UTIL", line 92
  3. ORA-06512: 在 line 1
  4. 需要扩展表空间
  5. ORA-01653
  6. node1:oracle:mmsgdb > oerr ora 01653
  7. 01653, 00000, "unable to extend table %s.%s by %s in tablespace %s"
  8. // *Cause:  Failed to allocate an extent of the required number of blocks for
  9. //          a table segment in the tablespace indicated.
  10. // *Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more
  11. //          files to the tablespace indicated.
  12. node1:oracle:mmsgdb >
复制代码
扩展操作命令如下:
shell
  1. alter database datafile '/opt/oracle/admin/mmsgdb/mmsgdata/mmsgdata01' AUTOEXTEND ON NEXT 50M MAXSIZE UNLIMITED;
复制代码
下面的两个命令也可以:
shell
  1. alter tablespace mmsg add datafile '/opt/oracle/admin/mmsgdb/mmsgdata/mmsgdata01' size 1024M reuse;
  2. alter database datafile '/opt/oracle/admin/mmsgdb/mmsgdata/mmsgdata01' resize 2048M;
复制代码
扩展后重启实例,查看相干表空间是否已经扩展,
shell
  1. select * from dba_tablespace_usage_metrics;
复制代码
Oracle用imp导入用户表时选择表空间的题目

当前表空间为WYZ,但是提示信息显示无法为表空间 MMSG 中的段创建 INITIAL 区,说明数据固然导入到了wyz用户下,但是使用的表空间依然是MMSG,而我们所必要的是表空间WYZ,而非MMSG,解决方法如下:
shell
  1. % sqlplus / as sysdba
  2. SQL*Plus: Release 11.1.0.6.0 - Production on 星期五 5月 7 11:08:51 2010
  3. Copyright (c) 1982, 2007, Oracle.  All rights reserved.
  4. Connected to:
  5. Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
  6. With the Partitioning, Oracle Label Security, OLAP, Data Mining,
  7. Oracle Database Vault and Real Application Testing options
  8. SQL> grant resource,connect to wyz;
  9. Grant succeeded.
  10. SQL> grant dba to wyz;     // 赋 DBA 权限
  11. Grant succeeded.
  12. SQL> revoke unlimited tablespace from wyz;  // 撤销此权限
  13. Revoke succeeded.
  14. SQL> alter user wyz quota 0 on system;  //将用户在 System 表空间的配额置为 0
  15. User altered.
  16. SQL> alter user wyz quota unlimited on wyz; //设置用户在 wyz 表空间配额不受限。
  17. User altered.
  18. SQL> exit
复制代码
上述题目解决后,重新实行数据导入操作
数据导入

shell
  1. imp wyz/wyz@iagw fromuser=mmsg touser=wyz file=./fullbak_20100507_091121.dmp ignore=y commit=y log=imp_20100507_091121.log
复制代码
导入验证

日志信息
shell
  1. Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
  2. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  3. Export done in ZHS16GBK character set and UTF8 NCHAR character set
  4. About to export the entire database ...
  5. . exporting tablespace definitions
  6. . exporting profiles
  7. . exporting user definitions
  8. . exporting roles
  9. . exporting resource costs
  10. . exporting rollback segment definitions
  11. . exporting database links
  12. . exporting sequence numbers
  13. . exporting directory aliases
  14. . exporting context namespaces
  15. . exporting foreign function library names
  16. . exporting PUBLIC type synonyms
  17. . exporting private type synonyms
  18. . exporting object type definitions
  19. . exporting system procedural objects and actions
  20. . exporting pre-schema procedural objects and actions
  21. . exporting cluster definitions
  22. . about to export SYSTEM's tables via Conventional Path ...
  23. . . exporting table                    DEF$_AQCALL          0 rows exported
  24. . . exporting table                   DEF$_AQERROR          0 rows exported
  25. . . exporting table                  DEF$_CALLDEST          0 rows exported
  26. . . exporting table               DEF$_DEFAULTDEST          0 rows exported
  27. . . exporting table               DEF$_DESTINATION          0 rows exported
  28. . . exporting table                     DEF$_ERROR          0 rows exported
  29. . . exporting table                       DEF$_LOB          0 rows exported
  30. . . exporting table                    DEF$_ORIGIN          0 rows exported
  31. . . exporting table                DEF$_PROPAGATOR          0 rows exported
  32. . . exporting table       DEF$_PUSHED_TRANSACTIONS          0 rows exported
  33. . . exporting table                  DEF$_TEMP$LOB          0 rows exported
  34. . . exporting table                            OL$
  35. . . exporting table                       OL$HINTS
  36. . . exporting table                       OL$NODES
  37. . . exporting table           QUEST_SOO_AT_APPNAME          0 rows exported
  38. . . exporting table    QUEST_SOO_AT_EXECUTION_PLAN          0 rows exported
  39. . . exporting table        QUEST_SOO_AT_OPERATIONS          0 rows exported
  40. . . exporting table      QUEST_SOO_AT_PARSE_CURSOR          0 rows exported
  41. . . exporting table       QUEST_SOO_AT_PARSE_ERROR          0 rows exported
  42. . . exporting table       QUEST_SOO_AT_PARSE_WAITS          0 rows exported
  43. . . exporting table        QUEST_SOO_AT_SESSION_ID          0 rows exported
  44. . . exporting table         QUEST_SOO_AT_SQL_BINDS          0 rows exported
  45. . . exporting table    QUEST_SOO_AT_SQL_EXECUTIONS          0 rows exported
  46. . . exporting table    QUEST_SOO_AT_SQL_EXEC_ERROR          0 rows exported
  47. . . exporting table         QUEST_SOO_AT_SQL_FETCH          0 rows exported
  48. . . exporting table     QUEST_SOO_AT_SQL_STATEMENT          0 rows exported
  49. . . exporting table   QUEST_SOO_AT_SQL_STMT_PIECES          0 rows exported
  50. . . exporting table         QUEST_SOO_AT_SQL_WAITS          0 rows exported
  51. . . exporting table        QUEST_SOO_AT_TRACE_FILE          0 rows exported
  52. . . exporting table        QUEST_SOO_AT_WAIT_NAMES          0 rows exported
  53. . . exporting table          QUEST_SOO_BUFFER_BUSY          0 rows exported
  54. . . exporting table     QUEST_SOO_EVENT_CATEGORIES       1445 rows exported
  55. . . exporting table            QUEST_SOO_LOCK_TREE          0 rows exported
  56. . . exporting table     QUEST_SOO_PARSE_TIME_TRACK          1 rows exported
  57. . . exporting table           QUEST_SOO_PLAN_TABLE          0 rows exported
  58. . . exporting table       QUEST_SOO_SB_BUFFER_BUSY          0 rows exported
  59. . . exporting table             QUEST_SOO_SB_EVENT          0 rows exported
  60. . . exporting table           QUEST_SOO_SB_IO_STAT          0 rows exported
  61. . . exporting table      QUEST_SOO_SCHEMA_VERSIONS          1 rows exported
  62. . . exporting table              QUEST_SOO_VERSION          1 rows exported
  63. . . exporting table        REPCAT$_AUDIT_ATTRIBUTE          2 rows exported
  64. . . exporting table           REPCAT$_AUDIT_COLUMN          0 rows exported
  65. . . exporting table           REPCAT$_COLUMN_GROUP          0 rows exported
  66. . . exporting table               REPCAT$_CONFLICT          0 rows exported
  67. . . exporting table                    REPCAT$_DDL          0 rows exported
  68. . . exporting table             REPCAT$_EXCEPTIONS          0 rows exported
  69. . . exporting table              REPCAT$_EXTENSION          0 rows exported
  70. . . exporting table                REPCAT$_FLAVORS          0 rows exported
  71. . . exporting table         REPCAT$_FLAVOR_OBJECTS          0 rows exported
  72. . . exporting table              REPCAT$_GENERATED          0 rows exported
  73. . . exporting table         REPCAT$_GROUPED_COLUMN          0 rows exported
  74. . . exporting table      REPCAT$_INSTANTIATION_DDL          0 rows exported
  75. . . exporting table            REPCAT$_KEY_COLUMNS          0 rows exported
  76. . . exporting table           REPCAT$_OBJECT_PARMS          0 rows exported
  77. . . exporting table           REPCAT$_OBJECT_TYPES         28 rows exported
  78. . . exporting table       REPCAT$_PARAMETER_COLUMN          0 rows exported
  79. . . exporting table               REPCAT$_PRIORITY          0 rows exported
  80. . . exporting table         REPCAT$_PRIORITY_GROUP          0 rows exported
  81. . . exporting table      REPCAT$_REFRESH_TEMPLATES          0 rows exported
  82. . . exporting table                 REPCAT$_REPCAT          0 rows exported
  83. . . exporting table              REPCAT$_REPCATLOG          0 rows exported
  84. . . exporting table              REPCAT$_REPCOLUMN          0 rows exported
  85. . . exporting table         REPCAT$_REPGROUP_PRIVS          0 rows exported
  86. . . exporting table              REPCAT$_REPOBJECT          0 rows exported
  87. . . exporting table                REPCAT$_REPPROP          0 rows exported
  88. . . exporting table              REPCAT$_REPSCHEMA          0 rows exported
  89. . . exporting table             REPCAT$_RESOLUTION          0 rows exported
  90. . . exporting table      REPCAT$_RESOLUTION_METHOD         19 rows exported
  91. . . exporting table  REPCAT$_RESOLUTION_STATISTICS          0 rows exported
  92. . . exporting table    REPCAT$_RESOL_STATS_CONTROL          0 rows exported
  93. . . exporting table          REPCAT$_RUNTIME_PARMS          0 rows exported
  94. . . exporting table              REPCAT$_SITES_NEW          0 rows exported
  95. . . exporting table           REPCAT$_SITE_OBJECTS          0 rows exported
  96. . . exporting table              REPCAT$_SNAPGROUP          0 rows exported
  97. . . exporting table       REPCAT$_TEMPLATE_OBJECTS          0 rows exported
  98. . . exporting table         REPCAT$_TEMPLATE_PARMS          0 rows exported
  99. . . exporting table     REPCAT$_TEMPLATE_REFGROUPS          0 rows exported
  100. . . exporting table         REPCAT$_TEMPLATE_SITES          0 rows exported
  101. . . exporting table        REPCAT$_TEMPLATE_STATUS          3 rows exported
  102. . . exporting table       REPCAT$_TEMPLATE_TARGETS          0 rows exported
  103. . . exporting table         REPCAT$_TEMPLATE_TYPES          2 rows exported
  104. . . exporting table    REPCAT$_USER_AUTHORIZATIONS          0 rows exported
  105. . . exporting table       REPCAT$_USER_PARM_VALUES          0 rows exported
  106. . . exporting table        SQLPLUS_PRODUCT_PROFILE          0 rows exported
  107. . about to export OUTLN's tables via Conventional Path ...
  108. . . exporting table                            OL$          0 rows exported
  109. . . exporting table                       OL$HINTS          0 rows exported
  110. . . exporting table                       OL$NODES          0 rows exported
  111. . about to export TSMSYS's tables via Conventional Path ...
  112. . . exporting table                           SRS$          0 rows exported
  113. . about to export MMSG's tables via Conventional Path ...
  114. . . exporting table                       AREAINFO        374 rows exported
  115. . . exporting table                     AREANUMBER        364 rows exported
  116. . . exporting table               AREANUMBERPREFIX          2 rows exported
  117. . . exporting table                BEARERVALUELIST          3 rows exported
  118. . . exporting table                    CARRIERINFO          1 rows exported
  119. . . exporting table               CHARGINGKPCONFIG         28 rows exported
  120. . . exporting table                 CONNECTIONINFO          0 rows exported
  121. . . exporting table                    COUNTRYCODE         21 rows exported
  122. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  123. . . exporting table               DETAILSTATUSCODE        247 rows exported
  124. . . exporting table                     DNSSRVINFO          0 rows exported
  125. . . exporting table                  DRMACCESSCODE          0 rows exported
  126. . . exporting table                     ECTOSIINFO          0 rows exported
  127. . . exporting table                    ENUMSRVINFO          1 rows exported
  128. . . exporting table                  EXP_CACHESTAT          0 rows exported
  129. . . exporting table                    HISTORYFLOW          0 rows exported
  130. . . exporting table      INTERFACEACCOUNT_20100428        736 rows exported
  131. . . exporting table      INTERFACEACCOUNT_20100429        302 rows exported
  132. . . exporting table      INTERFACEACCOUNT_20100430          0 rows exported
  133. . . exporting table      INTERFACEACCOUNT_20100501          0 rows exported
  134. . . exporting table      INTERFACEACCOUNT_20100502          0 rows exported
  135. . . exporting table      INTERFACEACCOUNT_20100503          0 rows exported
  136. . . exporting table      INTERFACEACCOUNT_20100504          0 rows exported
  137. . . exporting table      INTERFACEACCOUNT_20100505          0 rows exported
  138. . . exporting table      INTERFACEACCOUNT_20100506          0 rows exported
  139. . . exporting table                    INTERPREFIX         21 rows exported
  140. . . exporting table               IPRANGEPARTITION         93 rows exported
  141. . . exporting table                        MESSAGE          0 rows exported
  142. . . exporting table               MESSAGEREFERENCE          0 rows exported
  143. . . exporting table            MESSAGESENDSCHEDULE         15 rows exported
  144. . . exporting table                     MIBLEAFINT         79 rows exported
  145. . . exporting table                     MIBLEAFSTR         10 rows exported
  146. . . exporting table                       MISCINFO          2 rows exported
  147. . . exporting table                MISCROUTERTABLE          8 rows exported
  148. . . exporting table                      MMBOXTYPE          5 rows exported
  149. . . exporting table           MMINTERFACELEVELINFO          2 rows exported
  150. . . exporting table                       MMSCINFO          2 rows exported
  151. . . exporting table                     MMSCIPINFO          0 rows exported
  152. . . exporting table             MMSGMMSCMSGIDMAP00          0 rows exported
  153. . . exporting table             MMSGMMSCMSGIDMAP01          0 rows exported
  154. . . exporting table             MMSGMMSCMSGIDMAP02          0 rows exported
  155. . . exporting table             MMSGMMSCMSGIDMAP03          0 rows exported
  156. . . exporting table             MMSGMMSCMSGIDMAP04          0 rows exported
  157. . . exporting table             MMSGMMSCMSGIDMAP05          0 rows exported
  158. . . exporting table             MMSGMMSCMSGIDMAP06          0 rows exported
  159. . . exporting table             MMSGMMSCMSGIDMAP07          0 rows exported
  160. . . exporting table             MMSGMMSCMSGIDMAP08          0 rows exported
  161. . . exporting table             MMSGMMSCMSGIDMAP09          0 rows exported
  162. . . exporting table             MMSGMMSCMSGIDMAP10          0 rows exported
  163. . . exporting table             MMSGMMSCMSGIDMAP11          0 rows exported
  164. . . exporting table             MMSGMMSCMSGIDMAP12          0 rows exported
  165. . . exporting table             MMSGMMSCMSGIDMAP13          0 rows exported
  166. . . exporting table             MMSGMMSCMSGIDMAP14          0 rows exported
  167. . . exporting table             MMSGMMSCMSGIDMAP15          0 rows exported
  168. . . exporting table             MMSGMMSCMSGIDMAP16          0 rows exported
  169. . . exporting table             MMSGMMSCMSGIDMAP17          0 rows exported
  170. . . exporting table             MMSGMMSCMSGIDMAP18          0 rows exported
  171. . . exporting table             MMSGMMSCMSGIDMAP19          0 rows exported
  172. . . exporting table             MMSGMMSCMSGIDMAP20          0 rows exported
  173. . . exporting table             MMSGMMSCMSGIDMAP21          0 rows exported
  174. . . exporting table             MMSGMMSCMSGIDMAP22          0 rows exported
  175. . . exporting table             MMSGMMSCMSGIDMAP23          0 rows exported
  176. . . exporting table             MMSGMMSCMSGIDMAP24          0 rows exported
  177. . . exporting table             MMSGMMSCMSGIDMAP25          0 rows exported
  178. . . exporting table             MMSGMMSCMSGIDMAP26          0 rows exported
  179. . . exporting table             MMSGMMSCMSGIDMAP27          0 rows exported
  180. . . exporting table             MMSGMMSCMSGIDMAP28          0 rows exported
  181. . . exporting table             MMSGMMSCMSGIDMAP29          0 rows exported
  182. . . exporting table             MMSGMMSCMSGIDMAP30          0 rows exported
  183. . . exporting table             MMSGMMSCMSGIDMAP31          0 rows exported
  184. . . exporting table             MMSGMMSCMSGIDMAP32          0 rows exported
  185. . . exporting table             MMSGMMSCMSGIDMAP33          0 rows exported
  186. . . exporting table             MMSGMMSCMSGIDMAP34          0 rows exported
  187. . . exporting table             MMSGMMSCMSGIDMAP35          0 rows exported
  188. . . exporting table             MMSGMMSCMSGIDMAP36          0 rows exported
  189. . . exporting table             MMSGMMSCMSGIDMAP37          0 rows exported
  190. . . exporting table             MMSGMMSCMSGIDMAP38          0 rows exported
  191. . . exporting table             MMSGMMSCMSGIDMAP39          0 rows exported
  192. . . exporting table             MMSGMMSCMSGIDMAP40          0 rows exported
  193. . . exporting table             MMSGMMSCMSGIDMAP41          0 rows exported
  194. . . exporting table             MMSGMMSCMSGIDMAP42          0 rows exported
  195. . . exporting table             MMSGMMSCMSGIDMAP43          0 rows exported
  196. . . exporting table             MMSGMMSCMSGIDMAP44          0 rows exported
  197. . . exporting table             MMSGMMSCMSGIDMAP45          0 rows exported
  198. . . exporting table             MMSGMMSCMSGIDMAP46          0 rows exported
  199. . . exporting table             MMSGMMSCMSGIDMAP47          0 rows exported
  200. . . exporting table             MMSGMMSCMSGIDMAP48          0 rows exported
  201. . . exporting table             MMSGMMSCMSGIDMAP49          0 rows exported
  202. . . exporting table             MMSGMMSCMSGIDMAP50          0 rows exported
  203. . . exporting table             MMSGMMSCMSGIDMAP51          0 rows exported
  204. . . exporting table             MMSGMMSCMSGIDMAP52          0 rows exported
  205. . . exporting table             MMSGMMSCMSGIDMAP53          0 rows exported
  206. . . exporting table             MMSGMMSCMSGIDMAP54          0 rows exported
  207. . . exporting table             MMSGMMSCMSGIDMAP55          0 rows exported
  208. . . exporting table             MMSGMMSCMSGIDMAP56          0 rows exported
  209. . . exporting table             MMSGMMSCMSGIDMAP57          0 rows exported
  210. . . exporting table             MMSGMMSCMSGIDMAP58          0 rows exported
  211. . . exporting table             MMSGMMSCMSGIDMAP59          0 rows exported
  212. . . exporting table             MMSGMMSCMSGIDMAP60          0 rows exported
  213. . . exporting table             MMSGMMSCMSGIDMAP61          0 rows exported
  214. . . exporting table             MMSGMMSCMSGIDMAP62          0 rows exported
  215. . . exporting table             MMSGMMSCMSGIDMAP63          0 rows exported
  216. . . exporting table             MMSGMMSCMSGIDMAP64          0 rows exported
  217. . . exporting table             MMSGMMSCMSGIDMAP65          0 rows exported
  218. . . exporting table             MMSGMMSCMSGIDMAP66          0 rows exported
  219. . . exporting table             MMSGMMSCMSGIDMAP67          0 rows exported
  220. . . exporting table             MMSGMMSCMSGIDMAP68          0 rows exported
  221. . . exporting table             MMSGMMSCMSGIDMAP69          0 rows exported
  222. . . exporting table             MMSGMMSCMSGIDMAP70          0 rows exported
  223. . . exporting table             MMSGMMSCMSGIDMAP71          0 rows exported
  224. . . exporting table             MMSGMMSCMSGIDMAP72          0 rows exported
  225. . . exporting table             MMSGMMSCMSGIDMAP73          0 rows exported
  226. . . exporting table             MMSGMMSCMSGIDMAP74          0 rows exported
  227. . . exporting table             MMSGMMSCMSGIDMAP75          0 rows exported
  228. . . exporting table             MMSGMMSCMSGIDMAP76          0 rows exported
  229. . . exporting table             MMSGMMSCMSGIDMAP77          0 rows exported
  230. . . exporting table             MMSGMMSCMSGIDMAP78          0 rows exported
  231. . . exporting table             MMSGMMSCMSGIDMAP79          0 rows exported
  232. . . exporting table             MMSGMMSCMSGIDMAP80          0 rows exported
  233. . . exporting table             MMSGMMSCMSGIDMAP81          0 rows exported
  234. . . exporting table             MMSGMMSCMSGIDMAP82          0 rows exported
  235. . . exporting table             MMSGMMSCMSGIDMAP83          0 rows exported
  236. . . exporting table             MMSGMMSCMSGIDMAP84          0 rows exported
  237. . . exporting table             MMSGMMSCMSGIDMAP85          0 rows exported
  238. . . exporting table             MMSGMMSCMSGIDMAP86          0 rows exported
  239. . . exporting table             MMSGMMSCMSGIDMAP87          0 rows exported
  240. . . exporting table             MMSGMMSCMSGIDMAP88          0 rows exported
  241. . . exporting table             MMSGMMSCMSGIDMAP89          0 rows exported
  242. . . exporting table             MMSGMMSCMSGIDMAP90          0 rows exported
  243. . . exporting table             MMSGMMSCMSGIDMAP91          0 rows exported
  244. . . exporting table             MMSGMMSCMSGIDMAP92          0 rows exported
  245. . . exporting table             MMSGMMSCMSGIDMAP93          0 rows exported
  246. . . exporting table             MMSGMMSCMSGIDMAP94          0 rows exported
  247. . . exporting table             MMSGMMSCMSGIDMAP95          0 rows exported
  248. . . exporting table             MMSGMMSCMSGIDMAP96          0 rows exported
  249. . . exporting table             MMSGMMSCMSGIDMAP97          0 rows exported
  250. . . exporting table             MMSGMMSCMSGIDMAP98          0 rows exported
  251. . . exporting table             MMSGMMSCMSGIDMAP99          0 rows exported
  252. . . exporting table          MMSGSVCLOG_0428_1_O_0        715 rows exported
  253. . . exporting table          MMSGSVCLOG_0428_1_O_1        654 rows exported
  254. . . exporting table          MMSGSVCLOG_0428_1_O_2        725 rows exported
  255. . . exporting table          MMSGSVCLOG_0428_1_O_3        820 rows exported
  256. . . exporting table          MMSGSVCLOG_0428_1_O_4        508 rows exported
  257. . . exporting table          MMSGSVCLOG_0428_1_O_5        642 rows exported
  258. . . exporting table          MMSGSVCLOG_0428_1_O_6        719 rows exported
  259. . . exporting table          MMSGSVCLOG_0428_1_O_7        807 rows exported
  260. . . exporting table          MMSGSVCLOG_0428_1_O_8        663 rows exported
  261. . . exporting table          MMSGSVCLOG_0428_1_O_9        650 rows exported
  262. . . exporting table          MMSGSVCLOG_0429_1_O_0        104 rows exported
  263. . . exporting table          MMSGSVCLOG_0429_1_O_1         43 rows exported
  264. . . exporting table          MMSGSVCLOG_0429_1_O_2         56 rows exported
  265. . . exporting table          MMSGSVCLOG_0429_1_O_3         99 rows exported
  266. . . exporting table          MMSGSVCLOG_0429_1_O_4         77 rows exported
  267. . . exporting table          MMSGSVCLOG_0429_1_O_5         69 rows exported
  268. . . exporting table          MMSGSVCLOG_0429_1_O_6         88 rows exported
  269. . . exporting table          MMSGSVCLOG_0429_1_O_7         40 rows exported
  270. . . exporting table          MMSGSVCLOG_0429_1_O_8         38 rows exported
  271. . . exporting table          MMSGSVCLOG_0429_1_O_9         42 rows exported
  272. . . exporting table        MMSGSVCLOG_20100428_1_S        976 rows exported
  273. . . exporting table        MMSGSVCLOG_20100429_1_S         94 rows exported
  274. . . exporting table                      MMSTARIFF          1 rows exported
  275. . . exporting table                      MODULECMD         18 rows exported
  276. . . exporting table                        MODULES         16 rows exported
  277. . . exporting table                 MONITOREDUSERS          0 rows exported
  278. . . exporting table                MONITORPERFSTAT          0 rows exported
  279. . . exporting table               MONTHORDERINFO_0          0 rows exported
  280. . . exporting table               MONTHORDERINFO_1          0 rows exported
  281. . . exporting table               MONTHORDERINFO_2          1 rows exported
  282. . . exporting table               MONTHORDERINFO_3          0 rows exported
  283. . . exporting table               MONTHORDERINFO_4          0 rows exported
  284. . . exporting table               MONTHORDERINFO_5          0 rows exported
  285. . . exporting table               MONTHORDERINFO_6          0 rows exported
  286. . . exporting table               MONTHORDERINFO_7          0 rows exported
  287. . . exporting table               MONTHORDERINFO_8          0 rows exported
  288. . . exporting table               MONTHORDERINFO_9          0 rows exported
  289. . . exporting table                   NATIVEPREFIX          1 rows exported
  290. . . exporting table                    NETWORKCODE         24 rows exported
  291. . . exporting table              PORTALLOG20100428         57 rows exported
  292. . . exporting table              PORTALLOG20100429         12 rows exported
  293. . . exporting table              PORTALLOG20100506         15 rows exported
  294. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  295. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  296. . . exporting table                   REALTIMEFLOW          0 rows exported
  297. . . exporting table                  RENTALFEEINFO          1 rows exported
  298. . . exporting table                      RIGHTINFO        250 rows exported
  299. . . exporting table                           ROLE          4 rows exported
  300. . . exporting table                   ROLEMAPRIGHT        519 rows exported
  301. . . exporting table                    ROUTERTABLE          5 rows exported
  302. . . exporting table                 RPT_BUSYSERVER        198 rows exported
  303. . . exporting table                  RPT_DELAYTIME          0 rows exported
  304. . . exporting table         RPT_DELAYTIME_20100428        206 rows exported
  305. . . exporting table         RPT_DELAYTIME_20100429         88 rows exported
  306. . . exporting table         RPT_DELAYTIME_20100430          0 rows exported
  307. . . exporting table         RPT_DELAYTIME_20100501          0 rows exported
  308. . . exporting table         RPT_DELAYTIME_20100502          0 rows exported
  309. . . exporting table         RPT_DELAYTIME_20100503          0 rows exported
  310. . . exporting table         RPT_DELAYTIME_20100504          0 rows exported
  311. . . exporting table         RPT_DELAYTIME_20100505          0 rows exported
  312. . . exporting table         RPT_DELAYTIME_20100506          0 rows exported
  313. . . exporting table                  RPT_INTERFACE          0 rows exported
  314. . . exporting table         RPT_INTERFACE_20100428        359 rows exported
  315. . . exporting table         RPT_INTERFACE_20100429         60 rows exported
  316. . . exporting table         RPT_INTERFACE_20100430          0 rows exported
  317. . . exporting table         RPT_INTERFACE_20100501          0 rows exported
  318. . . exporting table         RPT_INTERFACE_20100502          0 rows exported
  319. . . exporting table         RPT_INTERFACE_20100503          0 rows exported
  320. . . exporting table         RPT_INTERFACE_20100504          0 rows exported
  321. . . exporting table         RPT_INTERFACE_20100505          0 rows exported
  322. . . exporting table         RPT_INTERFACE_20100506          0 rows exported
  323. . . exporting table               RPT_MM7_VASPSUCC         50 rows exported
  324. . . exporting table                   RPT_MMSCSUCC         28 rows exported
  325. . . exporting table              RPT_MMSC_20100428          0 rows exported
  326. . . exporting table              RPT_MMSC_20100429          0 rows exported
  327. . . exporting table              RPT_MMSC_20100430          0 rows exported
  328. . . exporting table              RPT_MMSC_20100501          0 rows exported
  329. . . exporting table              RPT_MMSC_20100502          0 rows exported
  330. . . exporting table              RPT_MMSC_20100503          0 rows exported
  331. . . exporting table              RPT_MMSC_20100504          0 rows exported
  332. . . exporting table              RPT_MMSC_20100505          0 rows exported
  333. . . exporting table              RPT_MMSC_20100506          0 rows exported
  334. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  335. . . exporting table                   RPT_USECOUNT          0 rows exported
  336. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  337. . . exporting table              RPT_VASP_20100428          0 rows exported
  338. . . exporting table              RPT_VASP_20100429          0 rows exported
  339. . . exporting table              RPT_VASP_20100430          0 rows exported
  340. . . exporting table              RPT_VASP_20100501          0 rows exported
  341. . . exporting table              RPT_VASP_20100502          0 rows exported
  342. . . exporting table              RPT_VASP_20100503          0 rows exported
  343. . . exporting table              RPT_VASP_20100504          0 rows exported
  344. . . exporting table              RPT_VASP_20100505          0 rows exported
  345. . . exporting table              RPT_VASP_20100506          0 rows exported
  346. . . exporting table        SERVICEACCOUNT_20100428         79 rows exported
  347. . . exporting table        SERVICEACCOUNT_20100429        188 rows exported
  348. . . exporting table        SERVICEACCOUNT_20100430          0 rows exported
  349. . . exporting table        SERVICEACCOUNT_20100501          0 rows exported
  350. . . exporting table        SERVICEACCOUNT_20100502          0 rows exported
  351. . . exporting table        SERVICEACCOUNT_20100503          0 rows exported
  352. . . exporting table        SERVICEACCOUNT_20100504          0 rows exported
  353. . . exporting table        SERVICEACCOUNT_20100505          0 rows exported
  354. . . exporting table        SERVICEACCOUNT_20100506          0 rows exported
  355. . . exporting table                         SIINFO          0 rows exported
  356. . . exporting table                    SMSNOTEINFO          4 rows exported
  357. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  358. . . exporting table                SPECIALCUSTINFO          0 rows exported
  359. . . exporting table                  SUBMITRESINFO        128 rows exported
  360. . . exporting table                    SYSOPERATOR         13 rows exported
  361. . . exporting table                SYSTEMPARAMETER        340 rows exported
  362. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  363. . . exporting table              TERMINALBLACKLIST          2 rows exported
  364. . . exporting table              TMP_ATTACH_RESULT        201 rows exported
  365. . . exporting table                TMP_BASE_RESULT         73 rows exported
  366. . . exporting table                     TMP_RESULT          0 rows exported
  367. . . exporting table                   TMP_RESULTID          0 rows exported
  368. . . exporting table                  TMP_RESULTMEM          0 rows exported
  369. . . exporting table                   TRACEMSGINFO          0 rows exported
  370. . . exporting table                      UAPROFILE          2 rows exported
  371. . . exporting table                       VASPINFO         12 rows exported
  372. . . exporting table                  VASPLEVELINFO          2 rows exported
  373. . . exporting table               VASPPRIORITYINFO          5 rows exported
  374. . . exporting table                VASPRIORITYINFO          5 rows exported
  375. . . exporting table                VASPSERVICE_SUP         15 rows exported
  376. . . exporting table              VASSERVEDAREALIST          1 rows exported
  377. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  378. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  379. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  380. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  381. . . exporting table                    VPNCORP_100          3 rows exported
  382. . . exporting table                    VPNCORP_300          3 rows exported
  383. . . exporting table                  VPNSUBSCRIBER          6 rows exported
  384. . . exporting table                 VPNUNITECORPID          1 rows exported
  385. . about to export MYENUM's tables via Conventional Path ...
  386. . about to export YKLOG's tables via Conventional Path ...
  387. . . exporting table         LOG_ROUTER201003010101          0 rows exported
  388. . . exporting table         LOG_ROUTER201003190101        156 rows exported
  389. . . exporting table         LOG_ROUTER201003230101         68 rows exported
  390. . . exporting table         LOG_ROUTER201003240101        332 rows exported
  391. . . exporting table         LOG_ROUTER201003250101        228 rows exported
  392. . . exporting table         LOG_ROUTER201003260101         64 rows exported
  393. . . exporting table         LOG_ROUTER201003270101        480 rows exported
  394. . . exporting table         LOG_ROUTER201003290101       1073 rows exported
  395. . . exporting table         LOG_ROUTER201003300101         64 rows exported
  396. . . exporting table         LOG_ROUTER201003310101        181 rows exported
  397. . . exporting table         LOG_ROUTER201004010101         62 rows exported
  398. . . exporting table         LOG_ROUTER201004060101         10 rows exported
  399. . . exporting table         LOG_ROUTER201004070101         60 rows exported
  400. . . exporting table         LOG_ROUTER201004080101         47 rows exported
  401. . . exporting table         LOG_ROUTER201004090101        734 rows exported
  402. . . exporting table         LOG_ROUTER201004100101         44 rows exported
  403. . . exporting table         LOG_ROUTER201004110101         16 rows exported
  404. . . exporting table         LOG_ROUTER201004120101        168 rows exported
  405. . . exporting table         LOG_ROUTER201004130101         62 rows exported
  406. . . exporting table         LOG_ROUTER201004140101        116 rows exported
  407. . . exporting table         LOG_ROUTER201004150101         60 rows exported
  408. . . exporting table         LOG_ROUTER201004160101         24 rows exported
  409. . . exporting table         LOG_ROUTER201004210101          1 rows exported
  410. . . exporting table         LOG_ROUTER201004220101          2 rows exported
  411. . . exporting table         LOG_ROUTER201004230101         75 rows exported
  412. . . exporting table         LOG_ROUTER201004240101         27 rows exported
  413. . . exporting table                   NOTIFYRESULT          0 rows exported
  414. . . exporting table                  OPERATERESULT          0 rows exported
  415. . . exporting table                   ROUTERRESULT         50 rows exported
  416. . . exporting table             STATUS_CHECK_TABLE          0 rows exported
  417. . about to export YJH's tables via Conventional Path ...
  418. . . exporting table                  VPNCORP _9999          0 rows exported
  419. . . exporting table                   VPNCORP_8888          0 rows exported
  420. . . exporting table                       AREAINFO        374 rows exported
  421. . . exporting table                     AREANUMBER        364 rows exported
  422. . . exporting table               AREANUMBERPREFIX          2 rows exported
  423. . . exporting table                BEARERVALUELIST          3 rows exported
  424. . . exporting table                    CARRIERINFO          1 rows exported
  425. . . exporting table               CHARGINGKPCONFIG         28 rows exported
  426. . . exporting table                 CONNECTIONINFO          0 rows exported
  427. . . exporting table                    COUNTRYCODE         21 rows exported
  428. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  429. . . exporting table               DETAILSTATUSCODE        247 rows exported
  430. . . exporting table                     DNSSRVINFO          0 rows exported
  431. . . exporting table                  DRMACCESSCODE          0 rows exported
  432. . . exporting table                     ECTOSIINFO          0 rows exported
  433. . . exporting table                    ENUMSRVINFO          1 rows exported
  434. . . exporting table                  EXP_CACHESTAT          0 rows exported
  435. . . exporting table                    HISTORYFLOW          0 rows exported
  436. . . exporting table      INTERFACEACCOUNT_20100426        347 rows exported
  437. . . exporting table      INTERFACEACCOUNT_20100427        633 rows exported
  438. . . exporting table      INTERFACEACCOUNT_20100428        809 rows exported
  439. . . exporting table      INTERFACEACCOUNT_20100429        419 rows exported
  440. . . exporting table      INTERFACEACCOUNT_20100430        308 rows exported
  441. . . exporting table      INTERFACEACCOUNT_20100501          0 rows exported
  442. . . exporting table      INTERFACEACCOUNT_20100502          0 rows exported
  443. . . exporting table      INTERFACEACCOUNT_20100503          0 rows exported
  444. . . exporting table      INTERFACEACCOUNT_20100504          0 rows exported
  445. . . exporting table      INTERFACEACCOUNT_20100505         61 rows exported
  446. . . exporting table      INTERFACEACCOUNT_20100506        157 rows exported
  447. . . exporting table      INTERFACEACCOUNT_20100507          0 rows exported
  448. . . exporting table                    INTERPREFIX         21 rows exported
  449. . . exporting table               IPRANGEPARTITION         93 rows exported
  450. . . exporting table                        MESSAGE          0 rows exported
  451. . . exporting table               MESSAGEREFERENCE          0 rows exported
  452. . . exporting table            MESSAGESENDSCHEDULE         15 rows exported
  453. . . exporting table                     MIBLEAFINT         79 rows exported
  454. . . exporting table                     MIBLEAFSTR          8 rows exported
  455. . . exporting table                       MISCINFO          2 rows exported
  456. . . exporting table                MISCROUTERTABLE          8 rows exported
  457. . . exporting table                      MMBOXTYPE          5 rows exported
  458. . . exporting table           MMINTERFACELEVELINFO          2 rows exported
  459. . . exporting table                       MMSCINFO          2 rows exported
  460. . . exporting table                     MMSCIPINFO          0 rows exported
  461. . . exporting table             MMSGMMSCMSGIDMAP00          0 rows exported
  462. . . exporting table             MMSGMMSCMSGIDMAP01          0 rows exported
  463. . . exporting table             MMSGMMSCMSGIDMAP02          0 rows exported
  464. . . exporting table             MMSGMMSCMSGIDMAP03          0 rows exported
  465. . . exporting table             MMSGMMSCMSGIDMAP04          0 rows exported
  466. . . exporting table             MMSGMMSCMSGIDMAP05          0 rows exported
  467. . . exporting table             MMSGMMSCMSGIDMAP06          0 rows exported
  468. . . exporting table             MMSGMMSCMSGIDMAP07          1 rows exported
  469. . . exporting table             MMSGMMSCMSGIDMAP08          0 rows exported
  470. . . exporting table             MMSGMMSCMSGIDMAP09          0 rows exported
  471. . . exporting table             MMSGMMSCMSGIDMAP10          0 rows exported
  472. . . exporting table             MMSGMMSCMSGIDMAP11          0 rows exported
  473. . . exporting table             MMSGMMSCMSGIDMAP12          0 rows exported
  474. . . exporting table             MMSGMMSCMSGIDMAP13          0 rows exported
  475. . . exporting table             MMSGMMSCMSGIDMAP14          0 rows exported
  476. . . exporting table             MMSGMMSCMSGIDMAP15          0 rows exported
  477. . . exporting table             MMSGMMSCMSGIDMAP16          0 rows exported
  478. . . exporting table             MMSGMMSCMSGIDMAP17          0 rows exported
  479. . . exporting table             MMSGMMSCMSGIDMAP18          0 rows exported
  480. . . exporting table             MMSGMMSCMSGIDMAP19          0 rows exported
  481. . . exporting table             MMSGMMSCMSGIDMAP20          0 rows exported
  482. . . exporting table             MMSGMMSCMSGIDMAP21          0 rows exported
  483. . . exporting table             MMSGMMSCMSGIDMAP22          0 rows exported
  484. . . exporting table             MMSGMMSCMSGIDMAP23          0 rows exported
  485. . . exporting table             MMSGMMSCMSGIDMAP24          0 rows exported
  486. . . exporting table             MMSGMMSCMSGIDMAP25          0 rows exported
  487. . . exporting table             MMSGMMSCMSGIDMAP26          0 rows exported
  488. . . exporting table             MMSGMMSCMSGIDMAP27          0 rows exported
  489. . . exporting table             MMSGMMSCMSGIDMAP28          0 rows exported
  490. . . exporting table             MMSGMMSCMSGIDMAP29          0 rows exported
  491. . . exporting table             MMSGMMSCMSGIDMAP30          0 rows exported
  492. . . exporting table             MMSGMMSCMSGIDMAP31          0 rows exported
  493. . . exporting table             MMSGMMSCMSGIDMAP32          0 rows exported
  494. . . exporting table             MMSGMMSCMSGIDMAP33          0 rows exported
  495. . . exporting table             MMSGMMSCMSGIDMAP34          0 rows exported
  496. . . exporting table             MMSGMMSCMSGIDMAP35          0 rows exported
  497. . . exporting table             MMSGMMSCMSGIDMAP36          0 rows exported
  498. . . exporting table             MMSGMMSCMSGIDMAP37          0 rows exported
  499. . . exporting table             MMSGMMSCMSGIDMAP38          0 rows exported
  500. . . exporting table             MMSGMMSCMSGIDMAP39          0 rows exported
  501. . . exporting table             MMSGMMSCMSGIDMAP40          0 rows exported
  502. . . exporting table             MMSGMMSCMSGIDMAP41          0 rows exported
  503. . . exporting table             MMSGMMSCMSGIDMAP42          0 rows exported
  504. . . exporting table             MMSGMMSCMSGIDMAP43          0 rows exported
  505. . . exporting table             MMSGMMSCMSGIDMAP44          0 rows exported
  506. . . exporting table             MMSGMMSCMSGIDMAP45          0 rows exported
  507. . . exporting table             MMSGMMSCMSGIDMAP46          0 rows exported
  508. . . exporting table             MMSGMMSCMSGIDMAP47          0 rows exported
  509. . . exporting table             MMSGMMSCMSGIDMAP48          0 rows exported
  510. . . exporting table             MMSGMMSCMSGIDMAP49          0 rows exported
  511. . . exporting table             MMSGMMSCMSGIDMAP50          0 rows exported
  512. . . exporting table             MMSGMMSCMSGIDMAP51          0 rows exported
  513. . . exporting table             MMSGMMSCMSGIDMAP52          0 rows exported
  514. . . exporting table             MMSGMMSCMSGIDMAP53          0 rows exported
  515. . . exporting table             MMSGMMSCMSGIDMAP54          0 rows exported
  516. . . exporting table             MMSGMMSCMSGIDMAP55          0 rows exported
  517. . . exporting table             MMSGMMSCMSGIDMAP56          0 rows exported
  518. . . exporting table             MMSGMMSCMSGIDMAP57          0 rows exported
  519. . . exporting table             MMSGMMSCMSGIDMAP58          0 rows exported
  520. . . exporting table             MMSGMMSCMSGIDMAP59          0 rows exported
  521. . . exporting table             MMSGMMSCMSGIDMAP60          0 rows exported
  522. . . exporting table             MMSGMMSCMSGIDMAP61          0 rows exported
  523. . . exporting table             MMSGMMSCMSGIDMAP62          0 rows exported
  524. . . exporting table             MMSGMMSCMSGIDMAP63          0 rows exported
  525. . . exporting table             MMSGMMSCMSGIDMAP64          0 rows exported
  526. . . exporting table             MMSGMMSCMSGIDMAP65          0 rows exported
  527. . . exporting table             MMSGMMSCMSGIDMAP66          0 rows exported
  528. . . exporting table             MMSGMMSCMSGIDMAP67          0 rows exported
  529. . . exporting table             MMSGMMSCMSGIDMAP68          0 rows exported
  530. . . exporting table             MMSGMMSCMSGIDMAP69          0 rows exported
  531. . . exporting table             MMSGMMSCMSGIDMAP70          0 rows exported
  532. . . exporting table             MMSGMMSCMSGIDMAP71          0 rows exported
  533. . . exporting table             MMSGMMSCMSGIDMAP72          0 rows exported
  534. . . exporting table             MMSGMMSCMSGIDMAP73          0 rows exported
  535. . . exporting table             MMSGMMSCMSGIDMAP74          0 rows exported
  536. . . exporting table             MMSGMMSCMSGIDMAP75          0 rows exported
  537. . . exporting table             MMSGMMSCMSGIDMAP76          0 rows exported
  538. . . exporting table             MMSGMMSCMSGIDMAP77          0 rows exported
  539. . . exporting table             MMSGMMSCMSGIDMAP78          0 rows exported
  540. . . exporting table             MMSGMMSCMSGIDMAP79          0 rows exported
  541. . . exporting table             MMSGMMSCMSGIDMAP80          0 rows exported
  542. . . exporting table             MMSGMMSCMSGIDMAP81          0 rows exported
  543. . . exporting table             MMSGMMSCMSGIDMAP82          0 rows exported
  544. . . exporting table             MMSGMMSCMSGIDMAP83          0 rows exported
  545. . . exporting table             MMSGMMSCMSGIDMAP84          0 rows exported
  546. . . exporting table             MMSGMMSCMSGIDMAP85          0 rows exported
  547. . . exporting table             MMSGMMSCMSGIDMAP86          0 rows exported
  548. . . exporting table             MMSGMMSCMSGIDMAP87          0 rows exported
  549. . . exporting table             MMSGMMSCMSGIDMAP88          0 rows exported
  550. . . exporting table             MMSGMMSCMSGIDMAP89          0 rows exported
  551. . . exporting table             MMSGMMSCMSGIDMAP90          0 rows exported
  552. . . exporting table             MMSGMMSCMSGIDMAP91          0 rows exported
  553. . . exporting table             MMSGMMSCMSGIDMAP92          0 rows exported
  554. . . exporting table             MMSGMMSCMSGIDMAP93          0 rows exported
  555. . . exporting table             MMSGMMSCMSGIDMAP94          0 rows exported
  556. . . exporting table             MMSGMMSCMSGIDMAP95          0 rows exported
  557. . . exporting table             MMSGMMSCMSGIDMAP96          0 rows exported
  558. . . exporting table             MMSGMMSCMSGIDMAP97          0 rows exported
  559. . . exporting table             MMSGMMSCMSGIDMAP98          0 rows exported
  560. . . exporting table             MMSGMMSCMSGIDMAP99          0 rows exported
  561. . . exporting table          MMSGSVCLOG_0505_1_O_0         16 rows exported
  562. . . exporting table          MMSGSVCLOG_0505_1_O_1         16 rows exported
  563. . . exporting table          MMSGSVCLOG_0505_1_O_2          9 rows exported
  564. . . exporting table          MMSGSVCLOG_0505_1_O_3          9 rows exported
  565. . . exporting table          MMSGSVCLOG_0505_1_O_4          8 rows exported
  566. . . exporting table          MMSGSVCLOG_0505_1_O_5         24 rows exported
  567. . . exporting table          MMSGSVCLOG_0505_1_O_6         51 rows exported
  568. . . exporting table          MMSGSVCLOG_0506_1_O_0         24 rows exported
  569. . . exporting table          MMSGSVCLOG_0506_1_O_3          8 rows exported
  570. . . exporting table          MMSGSVCLOG_0506_1_O_4         24 rows exported
  571. . . exporting table          MMSGSVCLOG_0506_1_O_5         15 rows exported
  572. . . exporting table          MMSGSVCLOG_0506_1_O_6         15 rows exported
  573. . . exporting table          MMSGSVCLOG_0506_1_O_9          9 rows exported
  574. . . exporting table        MMSGSVCLOG_20100505_1_S         16 rows exported
  575. . . exporting table        MMSGSVCLOG_20100506_1_S         12 rows exported
  576. . . exporting table                      MMSTARIFF          1 rows exported
  577. . . exporting table                      MODULECMD         18 rows exported
  578. . . exporting table                        MODULES         16 rows exported
  579. . . exporting table                 MONITOREDUSERS          0 rows exported
  580. . . exporting table                MONITORPERFSTAT          0 rows exported
  581. . . exporting table               MONTHORDERINFO_0          0 rows exported
  582. . . exporting table               MONTHORDERINFO_1          0 rows exported
  583. . . exporting table               MONTHORDERINFO_2          0 rows exported
  584. . . exporting table               MONTHORDERINFO_3          0 rows exported
  585. . . exporting table               MONTHORDERINFO_4          0 rows exported
  586. . . exporting table               MONTHORDERINFO_5          0 rows exported
  587. . . exporting table               MONTHORDERINFO_6          0 rows exported
  588. . . exporting table               MONTHORDERINFO_7          0 rows exported
  589. . . exporting table               MONTHORDERINFO_8          0 rows exported
  590. . . exporting table               MONTHORDERINFO_9          0 rows exported
  591. . . exporting table                   NATIVEPREFIX          1 rows exported
  592. . . exporting table                    NETWORKCODE         24 rows exported
  593. . . exporting table              PORTALLOG20100426        184 rows exported
  594. . . exporting table              PORTALLOG20100427        330 rows exported
  595. . . exporting table              PORTALLOG20100428        100 rows exported
  596. . . exporting table              PORTALLOG20100429         75 rows exported
  597. . . exporting table              PORTALLOG20100430         33 rows exported
  598. . . exporting table              PORTALLOG20100505        104 rows exported
  599. . . exporting table              PORTALLOG20100506          8 rows exported
  600. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  601. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  602. . . exporting table                   REALTIMEFLOW          0 rows exported
  603. . . exporting table                  RENTALFEEINFO          1 rows exported
  604. . . exporting table                      RIGHTINFO        250 rows exported
  605. . . exporting table                           ROLE          4 rows exported
  606. . . exporting table                   ROLEMAPRIGHT        519 rows exported
  607. . . exporting table                    ROUTERTABLE          5 rows exported
  608. . . exporting table                 RPT_BUSYSERVER         18 rows exported
  609. . . exporting table                  RPT_DELAYTIME          0 rows exported
  610. . . exporting table         RPT_DELAYTIME_20100426         64 rows exported
  611. . . exporting table         RPT_DELAYTIME_20100427        202 rows exported
  612. . . exporting table         RPT_DELAYTIME_20100428        245 rows exported
  613. . . exporting table         RPT_DELAYTIME_20100429        122 rows exported
  614. . . exporting table         RPT_DELAYTIME_20100430         82 rows exported
  615. . . exporting table         RPT_DELAYTIME_20100501          0 rows exported
  616. . . exporting table         RPT_DELAYTIME_20100502          0 rows exported
  617. . . exporting table         RPT_DELAYTIME_20100503          0 rows exported
  618. . . exporting table         RPT_DELAYTIME_20100504          0 rows exported
  619. . . exporting table         RPT_DELAYTIME_20100505         17 rows exported
  620. . . exporting table         RPT_DELAYTIME_20100506         44 rows exported
  621. . . exporting table         RPT_DELAYTIME_20100507          0 rows exported
  622. . . exporting table                  RPT_INTERFACE          0 rows exported
  623. . . exporting table         RPT_INTERFACE_20100426         10 rows exported
  624. . . exporting table         RPT_INTERFACE_20100427        195 rows exported
  625. . . exporting table         RPT_INTERFACE_20100428        385 rows exported
  626. . . exporting table         RPT_INTERFACE_20100429         65 rows exported
  627. . . exporting table         RPT_INTERFACE_20100430          0 rows exported
  628. . . exporting table         RPT_INTERFACE_20100501          0 rows exported
  629. . . exporting table         RPT_INTERFACE_20100502          0 rows exported
  630. . . exporting table         RPT_INTERFACE_20100503          0 rows exported
  631. . . exporting table         RPT_INTERFACE_20100504          0 rows exported
  632. . . exporting table         RPT_INTERFACE_20100505          0 rows exported
  633. . . exporting table         RPT_INTERFACE_20100506         75 rows exported
  634. . . exporting table         RPT_INTERFACE_20100507          0 rows exported
  635. . . exporting table               RPT_MM7_VASPSUCC          6 rows exported
  636. . . exporting table                   RPT_MMSCSUCC          4 rows exported
  637. . . exporting table              RPT_MMSC_20100426          0 rows exported
  638. . . exporting table              RPT_MMSC_20100427         26 rows exported
  639. . . exporting table              RPT_MMSC_20100428          0 rows exported
  640. . . exporting table              RPT_MMSC_20100429          0 rows exported
  641. . . exporting table              RPT_MMSC_20100430          0 rows exported
  642. . . exporting table              RPT_MMSC_20100501          0 rows exported
  643. . . exporting table              RPT_MMSC_20100502          0 rows exported
  644. . . exporting table              RPT_MMSC_20100503          0 rows exported
  645. . . exporting table              RPT_MMSC_20100504          0 rows exported
  646. . . exporting table              RPT_MMSC_20100505          0 rows exported
  647. . . exporting table              RPT_MMSC_20100506          0 rows exported
  648. . . exporting table              RPT_MMSC_20100507          0 rows exported
  649. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  650. . . exporting table                   RPT_USECOUNT          0 rows exported
  651. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  652. . . exporting table              RPT_VASP_20100426          0 rows exported
  653. . . exporting table              RPT_VASP_20100427         31 rows exported
  654. . . exporting table              RPT_VASP_20100428          0 rows exported
  655. . . exporting table              RPT_VASP_20100429          0 rows exported
  656. . . exporting table              RPT_VASP_20100430          0 rows exported
  657. . . exporting table              RPT_VASP_20100501          0 rows exported
  658. . . exporting table              RPT_VASP_20100502          0 rows exported
  659. . . exporting table              RPT_VASP_20100503          0 rows exported
  660. . . exporting table              RPT_VASP_20100504          0 rows exported
  661. . . exporting table              RPT_VASP_20100505          0 rows exported
  662. . . exporting table              RPT_VASP_20100506          0 rows exported
  663. . . exporting table              RPT_VASP_20100507          0 rows exported
  664. . . exporting table        SERVICEACCOUNT_20100426        157 rows exported
  665. . . exporting table        SERVICEACCOUNT_20100427        381 rows exported
  666. . . exporting table        SERVICEACCOUNT_20100428        246 rows exported
  667. . . exporting table        SERVICEACCOUNT_20100429        263 rows exported
  668. . . exporting table        SERVICEACCOUNT_20100430        255 rows exported
  669. . . exporting table        SERVICEACCOUNT_20100501          0 rows exported
  670. . . exporting table        SERVICEACCOUNT_20100502          0 rows exported
  671. . . exporting table        SERVICEACCOUNT_20100503          0 rows exported
  672. . . exporting table        SERVICEACCOUNT_20100504          0 rows exported
  673. . . exporting table        SERVICEACCOUNT_20100505         44 rows exported
  674. . . exporting table        SERVICEACCOUNT_20100506         18 rows exported
  675. . . exporting table        SERVICEACCOUNT_20100507          0 rows exported
  676. . . exporting table                         SIINFO          0 rows exported
  677. . . exporting table                    SMSNOTEINFO          4 rows exported
  678. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  679. . . exporting table                SPECIALCUSTINFO          0 rows exported
  680. . . exporting table                  SUBMITRESINFO        128 rows exported
  681. . . exporting table                    SYSOPERATOR         13 rows exported
  682. . . exporting table                SYSTEMPARAMETER        340 rows exported
  683. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  684. . . exporting table              TERMINALBLACKLIST          2 rows exported
  685. . . exporting table              TMP_ATTACH_RESULT          0 rows exported
  686. . . exporting table                TMP_BASE_RESULT          0 rows exported
  687. . . exporting table                     TMP_RESULT          0 rows exported
  688. . . exporting table                   TMP_RESULTID          0 rows exported
  689. . . exporting table                  TMP_RESULTMEM          0 rows exported
  690. . . exporting table                   TRACEMSGINFO          0 rows exported
  691. . . exporting table                      UAPROFILE          2 rows exported
  692. . . exporting table                       VASPINFO         12 rows exported
  693. . . exporting table                  VASPLEVELINFO          2 rows exported
  694. . . exporting table               VASPPRIORITYINFO          5 rows exported
  695. . . exporting table                VASPRIORITYINFO          5 rows exported
  696. . . exporting table                VASPSERVICE_SUP         15 rows exported
  697. . . exporting table              VASSERVEDAREALIST          1 rows exported
  698. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  699. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  700. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  701. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  702. . . exporting table                    VPNCORP_100          3 rows exported
  703. . . exporting table                    VPNCORP_300          3 rows exported
  704. . . exporting table                  VPNSUBSCRIBER          6 rows exported
  705. . . exporting table                 VPNUNITECORPID          1 rows exported
  706. . about to export WYZ's tables via Conventional Path ...
  707. . . exporting table                       AREAINFO        374 rows exported
  708. . . exporting table                     AREANUMBER        364 rows exported
  709. . . exporting table               AREANUMBERPREFIX          2 rows exported
  710. . . exporting table                BEARERVALUELIST          3 rows exported
  711. . . exporting table                    CARRIERINFO          1 rows exported
  712. . . exporting table               CHARGINGKPCONFIG         28 rows exported
  713. . . exporting table                 CONNECTIONINFO          0 rows exported
  714. . . exporting table                    COUNTRYCODE         21 rows exported
  715. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  716. . . exporting table               DETAILSTATUSCODE        247 rows exported
  717. . . exporting table                     DNSSRVINFO          0 rows exported
  718. . . exporting table                  DRMACCESSCODE          0 rows exported
  719. . . exporting table                     ECTOSIINFO          0 rows exported
  720. . . exporting table                    ENUMSRVINFO          1 rows exported
  721. . . exporting table                  EXP_CACHESTAT          0 rows exported
  722. . . exporting table                    HISTORYFLOW          0 rows exported
  723. . . exporting table      INTERFACEACCOUNT_20091223         56 rows exported
  724. . . exporting table                    INTERPREFIX         21 rows exported
  725. . . exporting table               IPRANGEPARTITION         93 rows exported
  726. . . exporting table                        MESSAGE          0 rows exported
  727. . . exporting table               MESSAGEREFERENCE          0 rows exported
  728. . . exporting table            MESSAGESENDSCHEDULE         15 rows exported
  729. . . exporting table                     MIBLEAFINT         79 rows exported
  730. . . exporting table                     MIBLEAFSTR         10 rows exported
  731. . . exporting table                       MISCINFO          1 rows exported
  732. . . exporting table                MISCROUTERTABLE          7 rows exported
  733. . . exporting table                      MMBOXTYPE          5 rows exported
  734. . . exporting table           MMINTERFACELEVELINFO          2 rows exported
  735. . . exporting table                       MMSCINFO          2 rows exported
  736. . . exporting table                     MMSCIPINFO          0 rows exported
  737. . . exporting table             MMSGMMSCMSGIDMAP00          0 rows exported
  738. . . exporting table             MMSGMMSCMSGIDMAP01          0 rows exported
  739. . . exporting table             MMSGMMSCMSGIDMAP02          0 rows exported
  740. . . exporting table             MMSGMMSCMSGIDMAP03          0 rows exported
  741. . . exporting table             MMSGMMSCMSGIDMAP04          0 rows exported
  742. . . exporting table             MMSGMMSCMSGIDMAP05          0 rows exported
  743. . . exporting table             MMSGMMSCMSGIDMAP06          0 rows exported
  744. . . exporting table             MMSGMMSCMSGIDMAP07          0 rows exported
  745. . . exporting table             MMSGMMSCMSGIDMAP08          0 rows exported
  746. . . exporting table             MMSGMMSCMSGIDMAP09          0 rows exported
  747. . . exporting table             MMSGMMSCMSGIDMAP10          0 rows exported
  748. . . exporting table             MMSGMMSCMSGIDMAP11          0 rows exported
  749. . . exporting table             MMSGMMSCMSGIDMAP12          0 rows exported
  750. . . exporting table             MMSGMMSCMSGIDMAP13          0 rows exported
  751. . . exporting table             MMSGMMSCMSGIDMAP14          0 rows exported
  752. . . exporting table             MMSGMMSCMSGIDMAP15          0 rows exported
  753. . . exporting table             MMSGMMSCMSGIDMAP16          0 rows exported
  754. . . exporting table             MMSGMMSCMSGIDMAP17          0 rows exported
  755. . . exporting table             MMSGMMSCMSGIDMAP18          0 rows exported
  756. . . exporting table             MMSGMMSCMSGIDMAP19          0 rows exported
  757. . . exporting table             MMSGMMSCMSGIDMAP20          0 rows exported
  758. . . exporting table             MMSGMMSCMSGIDMAP21          0 rows exported
  759. . . exporting table             MMSGMMSCMSGIDMAP22          0 rows exported
  760. . . exporting table             MMSGMMSCMSGIDMAP23          0 rows exported
  761. . . exporting table             MMSGMMSCMSGIDMAP24          0 rows exported
  762. . . exporting table             MMSGMMSCMSGIDMAP25          0 rows exported
  763. . . exporting table             MMSGMMSCMSGIDMAP26          0 rows exported
  764. . . exporting table             MMSGMMSCMSGIDMAP27          0 rows exported
  765. . . exporting table             MMSGMMSCMSGIDMAP28          0 rows exported
  766. . . exporting table             MMSGMMSCMSGIDMAP29          0 rows exported
  767. . . exporting table             MMSGMMSCMSGIDMAP30          0 rows exported
  768. . . exporting table             MMSGMMSCMSGIDMAP31          0 rows exported
  769. . . exporting table             MMSGMMSCMSGIDMAP32          0 rows exported
  770. . . exporting table             MMSGMMSCMSGIDMAP33          0 rows exported
  771. . . exporting table             MMSGMMSCMSGIDMAP34          0 rows exported
  772. . . exporting table             MMSGMMSCMSGIDMAP35          0 rows exported
  773. . . exporting table             MMSGMMSCMSGIDMAP36          0 rows exported
  774. . . exporting table             MMSGMMSCMSGIDMAP37          0 rows exported
  775. . . exporting table             MMSGMMSCMSGIDMAP38          0 rows exported
  776. . . exporting table             MMSGMMSCMSGIDMAP39          0 rows exported
  777. . . exporting table             MMSGMMSCMSGIDMAP40          0 rows exported
  778. . . exporting table             MMSGMMSCMSGIDMAP41          0 rows exported
  779. . . exporting table             MMSGMMSCMSGIDMAP42          0 rows exported
  780. . . exporting table             MMSGMMSCMSGIDMAP43          0 rows exported
  781. . . exporting table             MMSGMMSCMSGIDMAP44          0 rows exported
  782. . . exporting table             MMSGMMSCMSGIDMAP45          0 rows exported
  783. . . exporting table             MMSGMMSCMSGIDMAP46          0 rows exported
  784. . . exporting table             MMSGMMSCMSGIDMAP47          0 rows exported
  785. . . exporting table             MMSGMMSCMSGIDMAP48          0 rows exported
  786. . . exporting table             MMSGMMSCMSGIDMAP49          0 rows exported
  787. . . exporting table             MMSGMMSCMSGIDMAP50          0 rows exported
  788. . . exporting table             MMSGMMSCMSGIDMAP51          0 rows exported
  789. . . exporting table             MMSGMMSCMSGIDMAP52          0 rows exported
  790. . . exporting table             MMSGMMSCMSGIDMAP53          0 rows exported
  791. . . exporting table             MMSGMMSCMSGIDMAP54          0 rows exported
  792. . . exporting table             MMSGMMSCMSGIDMAP55          0 rows exported
  793. . . exporting table             MMSGMMSCMSGIDMAP56          0 rows exported
  794. . . exporting table             MMSGMMSCMSGIDMAP57          0 rows exported
  795. . . exporting table             MMSGMMSCMSGIDMAP58          0 rows exported
  796. . . exporting table             MMSGMMSCMSGIDMAP59          0 rows exported
  797. . . exporting table             MMSGMMSCMSGIDMAP60          0 rows exported
  798. . . exporting table             MMSGMMSCMSGIDMAP61          0 rows exported
  799. . . exporting table             MMSGMMSCMSGIDMAP62          0 rows exported
  800. . . exporting table             MMSGMMSCMSGIDMAP63          0 rows exported
  801. . . exporting table             MMSGMMSCMSGIDMAP64          0 rows exported
  802. . . exporting table             MMSGMMSCMSGIDMAP65          0 rows exported
  803. . . exporting table             MMSGMMSCMSGIDMAP66          0 rows exported
  804. . . exporting table             MMSGMMSCMSGIDMAP67          0 rows exported
  805. . . exporting table             MMSGMMSCMSGIDMAP68          0 rows exported
  806. . . exporting table             MMSGMMSCMSGIDMAP69          0 rows exported
  807. . . exporting table             MMSGMMSCMSGIDMAP70          0 rows exported
  808. . . exporting table             MMSGMMSCMSGIDMAP71          0 rows exported
  809. . . exporting table             MMSGMMSCMSGIDMAP72          0 rows exported
  810. . . exporting table             MMSGMMSCMSGIDMAP73          0 rows exported
  811. . . exporting table             MMSGMMSCMSGIDMAP74          0 rows exported
  812. . . exporting table             MMSGMMSCMSGIDMAP75          0 rows exported
  813. . . exporting table             MMSGMMSCMSGIDMAP76          0 rows exported
  814. . . exporting table             MMSGMMSCMSGIDMAP77          0 rows exported
  815. . . exporting table             MMSGMMSCMSGIDMAP78          0 rows exported
  816. . . exporting table             MMSGMMSCMSGIDMAP79          0 rows exported
  817. . . exporting table             MMSGMMSCMSGIDMAP80          0 rows exported
  818. . . exporting table             MMSGMMSCMSGIDMAP81          0 rows exported
  819. . . exporting table             MMSGMMSCMSGIDMAP82          0 rows exported
  820. . . exporting table             MMSGMMSCMSGIDMAP83          0 rows exported
  821. . . exporting table             MMSGMMSCMSGIDMAP84          0 rows exported
  822. . . exporting table             MMSGMMSCMSGIDMAP85          0 rows exported
  823. . . exporting table             MMSGMMSCMSGIDMAP86          0 rows exported
  824. . . exporting table             MMSGMMSCMSGIDMAP87          0 rows exported
  825. . . exporting table             MMSGMMSCMSGIDMAP88          0 rows exported
  826. . . exporting table             MMSGMMSCMSGIDMAP89          0 rows exported
  827. . . exporting table             MMSGMMSCMSGIDMAP90          0 rows exported
  828. . . exporting table             MMSGMMSCMSGIDMAP91          0 rows exported
  829. . . exporting table             MMSGMMSCMSGIDMAP92          0 rows exported
  830. . . exporting table             MMSGMMSCMSGIDMAP93          0 rows exported
  831. . . exporting table             MMSGMMSCMSGIDMAP94          0 rows exported
  832. . . exporting table             MMSGMMSCMSGIDMAP95          0 rows exported
  833. . . exporting table             MMSGMMSCMSGIDMAP96          0 rows exported
  834. . . exporting table             MMSGMMSCMSGIDMAP97          0 rows exported
  835. . . exporting table             MMSGMMSCMSGIDMAP98          0 rows exported
  836. . . exporting table             MMSGMMSCMSGIDMAP99          0 rows exported
  837. . . exporting table                      MMSTARIFF          1 rows exported
  838. . . exporting table                      MODULECMD         18 rows exported
  839. . . exporting table                        MODULES         16 rows exported
  840. . . exporting table                 MONITOREDUSERS          0 rows exported
  841. . . exporting table                MONITORPERFSTAT          0 rows exported
  842. . . exporting table               MONTHORDERINFO_0          0 rows exported
  843. . . exporting table               MONTHORDERINFO_1          0 rows exported
  844. . . exporting table               MONTHORDERINFO_2          0 rows exported
  845. . . exporting table               MONTHORDERINFO_3          0 rows exported
  846. . . exporting table               MONTHORDERINFO_4          0 rows exported
  847. . . exporting table               MONTHORDERINFO_5          0 rows exported
  848. . . exporting table               MONTHORDERINFO_6          0 rows exported
  849. . . exporting table               MONTHORDERINFO_7          0 rows exported
  850. . . exporting table               MONTHORDERINFO_8          0 rows exported
  851. . . exporting table               MONTHORDERINFO_9          0 rows exported
  852. . . exporting table                   NATIVEPREFIX          1 rows exported
  853. . . exporting table                    NETWORKCODE         22 rows exported
  854. . . exporting table              PORTALLOG20091223         26 rows exported
  855. . . exporting table              PORTALLOG20100106          8 rows exported
  856. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  857. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  858. . . exporting table                   REALTIMEFLOW          0 rows exported
  859. . . exporting table                  RENTALFEEINFO          2 rows exported
  860. . . exporting table                      RIGHTINFO        251 rows exported
  861. . . exporting table                           ROLE          4 rows exported
  862. . . exporting table                   ROLEMAPRIGHT        523 rows exported
  863. . . exporting table                    ROUTERTABLE          4 rows exported
  864. . . exporting table                 RPT_BUSYSERVER          1 rows exported
  865. . . exporting table                  RPT_DELAYTIME          0 rows exported
  866. . . exporting table         RPT_DELAYTIME_20091223         16 rows exported
  867. . . exporting table                  RPT_INTERFACE          0 rows exported
  868. . . exporting table         RPT_INTERFACE_20091223         31 rows exported
  869. . . exporting table               RPT_MM7_VASPSUCC          2 rows exported
  870. . . exporting table                   RPT_MMSCSUCC          2 rows exported
  871. . . exporting table              RPT_MMSC_20091223          0 rows exported
  872. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  873. . . exporting table                   RPT_USECOUNT          0 rows exported
  874. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  875. . . exporting table              RPT_VASP_20091223          0 rows exported
  876. . . exporting table        SERVICEACCOUNT_20091223         23 rows exported
  877. . . exporting table                         SIINFO          0 rows exported
  878. . . exporting table                    SMSNOTEINFO          4 rows exported
  879. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  880. . . exporting table                SPECIALCUSTINFO          0 rows exported
  881. . . exporting table                  SUBMITRESINFO        128 rows exported
  882. . . exporting table                    SYSOPERATOR         13 rows exported
  883. . . exporting table                SYSTEMPARAMETER        328 rows exported
  884. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  885. . . exporting table              TERMINALBLACKLIST          2 rows exported
  886. . . exporting table              TMP_ATTACH_RESULT          0 rows exported
  887. . . exporting table                TMP_BASE_RESULT          0 rows exported
  888. . . exporting table                     TMP_RESULT          0 rows exported
  889. . . exporting table                   TMP_RESULTID          0 rows exported
  890. . . exporting table                  TMP_RESULTMEM          0 rows exported
  891. . . exporting table                   TRACEMSGINFO          0 rows exported
  892. . . exporting table                      UAPROFILE          2 rows exported
  893. . . exporting table                       VASPINFO         11 rows exported
  894. . . exporting table                  VASPLEVELINFO          2 rows exported
  895. . . exporting table               VASPPRIORITYINFO          5 rows exported
  896. . . exporting table                VASPRIORITYINFO          5 rows exported
  897. . . exporting table                VASPSERVICE_SUP          9 rows exported
  898. . . exporting table              VASSERVEDAREALIST          1 rows exported
  899. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  900. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  901. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  902. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  903. . about to export MMSC's tables via Conventional Path ...
  904. . . exporting table               ACCESSEDADDRINFO          0 rows exported
  905. . . exporting table                       AREAINFO        375 rows exported
  906. . . exporting table                     AREANUMBER        364 rows exported
  907. . . exporting table               AREANUMBERPREFIX      36122 rows exported
  908. . . exporting table                BEARERVALUELIST          3 rows exported
  909. . . exporting table                    CARRIERINFO          1 rows exported
  910. . . exporting table               CHARGINGKPCONFIG         27 rows exported
  911. . . exporting table              CNTADAPTRULETABLE          1 rows exported
  912. . . exporting table                 CONNECTIONINFO          0 rows exported
  913. . . exporting table                    COUNTRYCODE         21 rows exported
  914. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  915. . . exporting table      DELAYTIMEACCOUNT_20091031          0 rows exported
  916. . . exporting table      DELAYTIMEACCOUNT_20091109          0 rows exported
  917. . . exporting table      DELAYTIMEACCOUNT_20091111          0 rows exported
  918. . . exporting table      DELAYTIMEACCOUNT_20091112          0 rows exported
  919. . . exporting table      DELAYTIMEACCOUNT_20091113          0 rows exported
  920. . . exporting table      DELAYTIMEACCOUNT_20091117          0 rows exported
  921. . . exporting table      DELAYTIMEACCOUNT_20091118          0 rows exported
  922. . . exporting table      DELAYTIMEACCOUNT_20091119          0 rows exported
  923. . . exporting table      DELAYTIMEACCOUNT_20091120          0 rows exported
  924. . . exporting table      DELAYTIMEACCOUNT_20091121          0 rows exported
  925. . . exporting table      DELAYTIMEACCOUNT_20091122          0 rows exported
  926. . . exporting table      DELAYTIMEACCOUNT_20091123          0 rows exported
  927. . . exporting table      DELAYTIMEACCOUNT_20091124          0 rows exported
  928. . . exporting table      DELAYTIMEACCOUNT_20091125          0 rows exported
  929. . . exporting table      DELAYTIMEACCOUNT_20091126          0 rows exported
  930. . . exporting table      DELAYTIMEACCOUNT_20091127          0 rows exported
  931. . . exporting table      DELAYTIMEACCOUNT_20091128          0 rows exported
  932. . . exporting table      DELAYTIMEACCOUNT_20091129          0 rows exported
  933. . . exporting table      DELAYTIMEACCOUNT_20091130          0 rows exported
  934. . . exporting table      DELAYTIMEACCOUNT_20091201          0 rows exported
  935. . . exporting table      DELAYTIMEACCOUNT_20091202          0 rows exported
  936. . . exporting table      DELAYTIMEACCOUNT_20091203          0 rows exported
  937. . . exporting table      DELAYTIMEACCOUNT_20091204          0 rows exported
  938. . . exporting table      DELAYTIMEACCOUNT_20091205          0 rows exported
  939. . . exporting table      DELAYTIMEACCOUNT_20091206          0 rows exported
  940. . . exporting table      DELAYTIMEACCOUNT_20091207          0 rows exported
  941. . . exporting table      DELAYTIMEACCOUNT_20091208          0 rows exported
  942. . . exporting table      DELAYTIMEACCOUNT_20091209          0 rows exported
  943. . . exporting table      DELAYTIMEACCOUNT_20091218          0 rows exported
  944. . . exporting table      DELAYTIMEACCOUNT_20091219          0 rows exported
  945. . . exporting table      DELAYTIMEACCOUNT_20091220          0 rows exported
  946. . . exporting table      DELAYTIMEACCOUNT_20100111          0 rows exported
  947. . . exporting table      DELAYTIMEACCOUNT_20100119          0 rows exported
  948. . . exporting table      DELAYTIMEACCOUNT_20100120          0 rows exported
  949. . . exporting table      DELAYTIMEACCOUNT_20100121          0 rows exported
  950. . . exporting table      DELAYTIMEACCOUNT_20100122          0 rows exported
  951. . . exporting table      DELAYTIMEACCOUNT_20100123          0 rows exported
  952. . . exporting table      DELAYTIMEACCOUNT_20100124          0 rows exported
  953. . . exporting table      DELAYTIMEACCOUNT_20100125          0 rows exported
  954. . . exporting table      DELAYTIMEACCOUNT_20100129          0 rows exported
  955. . . exporting table      DELAYTIMEACCOUNT_20100130          0 rows exported
  956. . . exporting table      DELAYTIMEACCOUNT_20100131          0 rows exported
  957. . . exporting table      DELAYTIMEACCOUNT_20100201          0 rows exported
  958. . . exporting table      DELAYTIMEACCOUNT_20100202          0 rows exported
  959. . . exporting table      DELAYTIMEACCOUNT_20100203          0 rows exported
  960. . . exporting table      DELAYTIMEACCOUNT_20100205          0 rows exported
  961. . . exporting table      DELAYTIMEACCOUNT_20100206          0 rows exported
  962. . . exporting table      DELAYTIMEACCOUNT_20100207          0 rows exported
  963. . . exporting table      DELAYTIMEACCOUNT_20100208          0 rows exported
  964. . . exporting table      DELAYTIMEACCOUNT_20100209          0 rows exported
  965. . . exporting table      DELAYTIMEACCOUNT_20100210          0 rows exported
  966. . . exporting table      DELAYTIMEACCOUNT_20100211          0 rows exported
  967. . . exporting table      DELAYTIMEACCOUNT_20100212          0 rows exported
  968. . . exporting table      DELAYTIMEACCOUNT_20100213          0 rows exported
  969. . . exporting table      DELAYTIMEACCOUNT_20100214          0 rows exported
  970. . . exporting table      DELAYTIMEACCOUNT_20100215          0 rows exported
  971. . . exporting table      DELAYTIMEACCOUNT_20100216          0 rows exported
  972. . . exporting table      DELAYTIMEACCOUNT_20100217          0 rows exported
  973. . . exporting table      DELAYTIMEACCOUNT_20100218          0 rows exported
  974. . . exporting table      DELAYTIMEACCOUNT_20100219          0 rows exported
  975. . . exporting table      DELAYTIMEACCOUNT_20100220          0 rows exported
  976. . . exporting table      DELAYTIMEACCOUNT_20100221          0 rows exported
  977. . . exporting table               DETAILSTATUSCODE        242 rows exported
  978. . . exporting table                     DNSSRVINFO          0 rows exported
  979. . . exporting table                  DRMACCESSCODE          0 rows exported
  980. . . exporting table                    ENUMSRVINFO          1 rows exported
  981. . . exporting table             EXTEMAILSERVERINFO          7 rows exported
  982. . . exporting table           EXTEMAILSRVLEVELINFO          1 rows exported
  983. . . exporting table                    EXTMMSCINFO          0 rows exported
  984. . . exporting table                  GWACCOUNTINFO          0 rows exported
  985. . . exporting table    GWINTERFACEACCOUNT_20091031          0 rows exported
  986. . . exporting table    GWINTERFACEACCOUNT_20091109          0 rows exported
  987. . . exporting table    GWINTERFACEACCOUNT_20091111          0 rows exported
  988. . . exporting table    GWINTERFACEACCOUNT_20091112          0 rows exported
  989. . . exporting table    GWINTERFACEACCOUNT_20091113          0 rows exported
  990. . . exporting table    GWINTERFACEACCOUNT_20091117          0 rows exported
  991. . . exporting table    GWINTERFACEACCOUNT_20091118          0 rows exported
  992. . . exporting table    GWINTERFACEACCOUNT_20091119          0 rows exported
  993. . . exporting table    GWINTERFACEACCOUNT_20091120          0 rows exported
  994. . . exporting table    GWINTERFACEACCOUNT_20091121          0 rows exported
  995. . . exporting table    GWINTERFACEACCOUNT_20091122          0 rows exported
  996. . . exporting table    GWINTERFACEACCOUNT_20091123          0 rows exported
  997. . . exporting table    GWINTERFACEACCOUNT_20091124          0 rows exported
  998. . . exporting table    GWINTERFACEACCOUNT_20091125          0 rows exported
  999. . . exporting table    GWINTERFACEACCOUNT_20091126          0 rows exported
  1000. . . exporting table    GWINTERFACEACCOUNT_20091127          0 rows exported
  1001. . . exporting table    GWINTERFACEACCOUNT_20091128          0 rows exported
  1002. . . exporting table    GWINTERFACEACCOUNT_20091129          0 rows exported
  1003. . . exporting table    GWINTERFACEACCOUNT_20091130          0 rows exported
  1004. . . exporting table    GWINTERFACEACCOUNT_20091201          0 rows exported
  1005. . . exporting table    GWINTERFACEACCOUNT_20091202          0 rows exported
  1006. . . exporting table    GWINTERFACEACCOUNT_20091203          0 rows exported
  1007. . . exporting table    GWINTERFACEACCOUNT_20091204          0 rows exported
  1008. . . exporting table    GWINTERFACEACCOUNT_20091205          0 rows exported
  1009. . . exporting table    GWINTERFACEACCOUNT_20091206          0 rows exported
  1010. . . exporting table    GWINTERFACEACCOUNT_20091207          0 rows exported
  1011. . . exporting table    GWINTERFACEACCOUNT_20091208          0 rows exported
  1012. . . exporting table    GWINTERFACEACCOUNT_20091209          0 rows exported
  1013. . . exporting table    GWINTERFACEACCOUNT_20091218          0 rows exported
  1014. . . exporting table    GWINTERFACEACCOUNT_20091219          0 rows exported
  1015. . . exporting table    GWINTERFACEACCOUNT_20091220          0 rows exported
  1016. . . exporting table    GWINTERFACEACCOUNT_20100111          0 rows exported
  1017. . . exporting table    GWINTERFACEACCOUNT_20100119          0 rows exported
  1018. . . exporting table    GWINTERFACEACCOUNT_20100120          0 rows exported
  1019. . . exporting table    GWINTERFACEACCOUNT_20100121          0 rows exported
  1020. . . exporting table    GWINTERFACEACCOUNT_20100122          0 rows exported
  1021. . . exporting table    GWINTERFACEACCOUNT_20100123          0 rows exported
  1022. . . exporting table    GWINTERFACEACCOUNT_20100124          0 rows exported
  1023. . . exporting table    GWINTERFACEACCOUNT_20100125          0 rows exported
  1024. . . exporting table    GWINTERFACEACCOUNT_20100129          0 rows exported
  1025. . . exporting table    GWINTERFACEACCOUNT_20100130          0 rows exported
  1026. . . exporting table    GWINTERFACEACCOUNT_20100131          0 rows exported
  1027. . . exporting table    GWINTERFACEACCOUNT_20100201          0 rows exported
  1028. . . exporting table    GWINTERFACEACCOUNT_20100202          0 rows exported
  1029. . . exporting table    GWINTERFACEACCOUNT_20100203          0 rows exported
  1030. . . exporting table    GWINTERFACEACCOUNT_20100205          0 rows exported
  1031. . . exporting table    GWINTERFACEACCOUNT_20100206          0 rows exported
  1032. . . exporting table    GWINTERFACEACCOUNT_20100207          0 rows exported
  1033. . . exporting table    GWINTERFACEACCOUNT_20100208          0 rows exported
  1034. . . exporting table    GWINTERFACEACCOUNT_20100209          0 rows exported
  1035. . . exporting table    GWINTERFACEACCOUNT_20100210          0 rows exported
  1036. . . exporting table    GWINTERFACEACCOUNT_20100211          0 rows exported
  1037. . . exporting table    GWINTERFACEACCOUNT_20100212          0 rows exported
  1038. . . exporting table    GWINTERFACEACCOUNT_20100213          0 rows exported
  1039. . . exporting table    GWINTERFACEACCOUNT_20100214          0 rows exported
  1040. . . exporting table    GWINTERFACEACCOUNT_20100215          0 rows exported
  1041. . . exporting table    GWINTERFACEACCOUNT_20100216          0 rows exported
  1042. . . exporting table    GWINTERFACEACCOUNT_20100217          0 rows exported
  1043. . . exporting table    GWINTERFACEACCOUNT_20100218          0 rows exported
  1044. . . exporting table    GWINTERFACEACCOUNT_20100219          0 rows exported
  1045. . . exporting table    GWINTERFACEACCOUNT_20100220          0 rows exported
  1046. . . exporting table    GWINTERFACEACCOUNT_20100221          0 rows exported
  1047. . . exporting table    GWINTERFACEACCOUNT_20100222          0 rows exported
  1048. . . exporting table      GWSERVICEACCOUNT_20091031          0 rows exported
  1049. . . exporting table      GWSERVICEACCOUNT_20091109          0 rows exported
  1050. . . exporting table      GWSERVICEACCOUNT_20091111          0 rows exported
  1051. . . exporting table      GWSERVICEACCOUNT_20091112          0 rows exported
  1052. . . exporting table      GWSERVICEACCOUNT_20091113          0 rows exported
  1053. . . exporting table      GWSERVICEACCOUNT_20091117          0 rows exported
  1054. . . exporting table      GWSERVICEACCOUNT_20091118          0 rows exported
  1055. . . exporting table      GWSERVICEACCOUNT_20091119          0 rows exported
  1056. . . exporting table      GWSERVICEACCOUNT_20091120          0 rows exported
  1057. . . exporting table      GWSERVICEACCOUNT_20091121          0 rows exported
  1058. . . exporting table      GWSERVICEACCOUNT_20091122          0 rows exported
  1059. . . exporting table      GWSERVICEACCOUNT_20091123          0 rows exported
  1060. . . exporting table      GWSERVICEACCOUNT_20091124          0 rows exported
  1061. . . exporting table      GWSERVICEACCOUNT_20091125          0 rows exported
  1062. . . exporting table      GWSERVICEACCOUNT_20091126          0 rows exported
  1063. . . exporting table      GWSERVICEACCOUNT_20091127          0 rows exported
  1064. . . exporting table      GWSERVICEACCOUNT_20091128          0 rows exported
  1065. . . exporting table      GWSERVICEACCOUNT_20091129          0 rows exported
  1066. . . exporting table      GWSERVICEACCOUNT_20091130          0 rows exported
  1067. . . exporting table      GWSERVICEACCOUNT_20091201          0 rows exported
  1068. . . exporting table      GWSERVICEACCOUNT_20091202          0 rows exported
  1069. . . exporting table      GWSERVICEACCOUNT_20091203          0 rows exported
  1070. . . exporting table      GWSERVICEACCOUNT_20091204          0 rows exported
  1071. . . exporting table      GWSERVICEACCOUNT_20091205          0 rows exported
  1072. . . exporting table      GWSERVICEACCOUNT_20091206          0 rows exported
  1073. . . exporting table      GWSERVICEACCOUNT_20091207          0 rows exported
  1074. . . exporting table      GWSERVICEACCOUNT_20091208          0 rows exported
  1075. . . exporting table      GWSERVICEACCOUNT_20091209          0 rows exported
  1076. . . exporting table      GWSERVICEACCOUNT_20091218          0 rows exported
  1077. . . exporting table      GWSERVICEACCOUNT_20091219          0 rows exported
  1078. . . exporting table      GWSERVICEACCOUNT_20091220          0 rows exported
  1079. . . exporting table      GWSERVICEACCOUNT_20100111          0 rows exported
  1080. . . exporting table      GWSERVICEACCOUNT_20100119          0 rows exported
  1081. . . exporting table      GWSERVICEACCOUNT_20100120          0 rows exported
  1082. . . exporting table      GWSERVICEACCOUNT_20100121          0 rows exported
  1083. . . exporting table      GWSERVICEACCOUNT_20100122          0 rows exported
  1084. . . exporting table      GWSERVICEACCOUNT_20100123          0 rows exported
  1085. . . exporting table      GWSERVICEACCOUNT_20100124          0 rows exported
  1086. . . exporting table      GWSERVICEACCOUNT_20100125          0 rows exported
  1087. . . exporting table      GWSERVICEACCOUNT_20100129          0 rows exported
  1088. . . exporting table      GWSERVICEACCOUNT_20100130          0 rows exported
  1089. . . exporting table      GWSERVICEACCOUNT_20100131          0 rows exported
  1090. . . exporting table      GWSERVICEACCOUNT_20100201          0 rows exported
  1091. . . exporting table      GWSERVICEACCOUNT_20100202          0 rows exported
  1092. . . exporting table      GWSERVICEACCOUNT_20100203          0 rows exported
  1093. . . exporting table      GWSERVICEACCOUNT_20100205          0 rows exported
  1094. . . exporting table      GWSERVICEACCOUNT_20100206          0 rows exported
  1095. . . exporting table      GWSERVICEACCOUNT_20100207          0 rows exported
  1096. . . exporting table      GWSERVICEACCOUNT_20100208          0 rows exported
  1097. . . exporting table      GWSERVICEACCOUNT_20100209          0 rows exported
  1098. . . exporting table      GWSERVICEACCOUNT_20100210          0 rows exported
  1099. . . exporting table      GWSERVICEACCOUNT_20100211          0 rows exported
  1100. . . exporting table      GWSERVICEACCOUNT_20100212          0 rows exported
  1101. . . exporting table      GWSERVICEACCOUNT_20100213          0 rows exported
  1102. . . exporting table      GWSERVICEACCOUNT_20100214          0 rows exported
  1103. . . exporting table      GWSERVICEACCOUNT_20100215          0 rows exported
  1104. . . exporting table      GWSERVICEACCOUNT_20100216          0 rows exported
  1105. . . exporting table      GWSERVICEACCOUNT_20100217          0 rows exported
  1106. . . exporting table      GWSERVICEACCOUNT_20100218          0 rows exported
  1107. . . exporting table      GWSERVICEACCOUNT_20100219          0 rows exported
  1108. . . exporting table      GWSERVICEACCOUNT_20100220          0 rows exported
  1109. . . exporting table      GWSERVICEACCOUNT_20100221          0 rows exported
  1110. . . exporting table      GWSERVICEACCOUNT_20100222          0 rows exported
  1111. . . exporting table                    HISTORYFLOW          0 rows exported
  1112. . . exporting table                        HOLIDAY          0 rows exported
  1113. . . exporting table    IGDELAYTIMEACCOUNT_20091031          0 rows exported
  1114. . . exporting table    IGDELAYTIMEACCOUNT_20091109          0 rows exported
  1115. . . exporting table    IGDELAYTIMEACCOUNT_20091111          0 rows exported
  1116. . . exporting table    IGDELAYTIMEACCOUNT_20091112          0 rows exported
  1117. . . exporting table    IGDELAYTIMEACCOUNT_20091113          0 rows exported
  1118. . . exporting table    IGDELAYTIMEACCOUNT_20091117          0 rows exported
  1119. . . exporting table    IGDELAYTIMEACCOUNT_20091118          0 rows exported
  1120. . . exporting table    IGDELAYTIMEACCOUNT_20091119          0 rows exported
  1121. . . exporting table    IGDELAYTIMEACCOUNT_20091120          0 rows exported
  1122. . . exporting table    IGDELAYTIMEACCOUNT_20091121          0 rows exported
  1123. . . exporting table    IGDELAYTIMEACCOUNT_20091122          0 rows exported
  1124. . . exporting table    IGDELAYTIMEACCOUNT_20091123          0 rows exported
  1125. . . exporting table    IGDELAYTIMEACCOUNT_20091124          0 rows exported
  1126. . . exporting table    IGDELAYTIMEACCOUNT_20091125          0 rows exported
  1127. . . exporting table    IGDELAYTIMEACCOUNT_20091126          0 rows exported
  1128. . . exporting table    IGDELAYTIMEACCOUNT_20091127          0 rows exported
  1129. . . exporting table    IGDELAYTIMEACCOUNT_20091128          0 rows exported
  1130. . . exporting table    IGDELAYTIMEACCOUNT_20091129          0 rows exported
  1131. . . exporting table    IGDELAYTIMEACCOUNT_20091130          0 rows exported
  1132. . . exporting table    IGDELAYTIMEACCOUNT_20091201          0 rows exported
  1133. . . exporting table    IGDELAYTIMEACCOUNT_20091202          0 rows exported
  1134. . . exporting table    IGDELAYTIMEACCOUNT_20091203          0 rows exported
  1135. . . exporting table    IGDELAYTIMEACCOUNT_20091204          0 rows exported
  1136. . . exporting table    IGDELAYTIMEACCOUNT_20091205          0 rows exported
  1137. . . exporting table    IGDELAYTIMEACCOUNT_20091206          0 rows exported
  1138. . . exporting table    IGDELAYTIMEACCOUNT_20091207          0 rows exported
  1139. . . exporting table    IGDELAYTIMEACCOUNT_20091208          0 rows exported
  1140. . . exporting table    IGDELAYTIMEACCOUNT_20091209          0 rows exported
  1141. . . exporting table    IGDELAYTIMEACCOUNT_20091218          0 rows exported
  1142. . . exporting table    IGDELAYTIMEACCOUNT_20091219          0 rows exported
  1143. . . exporting table    IGDELAYTIMEACCOUNT_20091220          0 rows exported
  1144. . . exporting table    IGDELAYTIMEACCOUNT_20100111          0 rows exported
  1145. . . exporting table    IGDELAYTIMEACCOUNT_20100119          0 rows exported
  1146. . . exporting table    IGDELAYTIMEACCOUNT_20100120          0 rows exported
  1147. . . exporting table    IGDELAYTIMEACCOUNT_20100121          0 rows exported
  1148. . . exporting table    IGDELAYTIMEACCOUNT_20100122          0 rows exported
  1149. . . exporting table    IGDELAYTIMEACCOUNT_20100123          0 rows exported
  1150. . . exporting table    IGDELAYTIMEACCOUNT_20100124          0 rows exported
  1151. . . exporting table    IGDELAYTIMEACCOUNT_20100125          0 rows exported
  1152. . . exporting table    IGDELAYTIMEACCOUNT_20100129          0 rows exported
  1153. . . exporting table    IGDELAYTIMEACCOUNT_20100130          0 rows exported
  1154. . . exporting table    IGDELAYTIMEACCOUNT_20100131          0 rows exported
  1155. . . exporting table    IGDELAYTIMEACCOUNT_20100201          0 rows exported
  1156. . . exporting table    IGDELAYTIMEACCOUNT_20100202          0 rows exported
  1157. . . exporting table    IGDELAYTIMEACCOUNT_20100203          0 rows exported
  1158. . . exporting table    IGDELAYTIMEACCOUNT_20100205          0 rows exported
  1159. . . exporting table    IGDELAYTIMEACCOUNT_20100206          0 rows exported
  1160. . . exporting table    IGDELAYTIMEACCOUNT_20100207          0 rows exported
  1161. . . exporting table    IGDELAYTIMEACCOUNT_20100208          0 rows exported
  1162. . . exporting table    IGDELAYTIMEACCOUNT_20100209          0 rows exported
  1163. . . exporting table    IGDELAYTIMEACCOUNT_20100210          0 rows exported
  1164. . . exporting table    IGDELAYTIMEACCOUNT_20100211          0 rows exported
  1165. . . exporting table    IGDELAYTIMEACCOUNT_20100212          0 rows exported
  1166. . . exporting table    IGDELAYTIMEACCOUNT_20100213          0 rows exported
  1167. . . exporting table    IGDELAYTIMEACCOUNT_20100214          0 rows exported
  1168. . . exporting table    IGDELAYTIMEACCOUNT_20100215          0 rows exported
  1169. . . exporting table    IGDELAYTIMEACCOUNT_20100216          0 rows exported
  1170. . . exporting table    IGDELAYTIMEACCOUNT_20100217          0 rows exported
  1171. . . exporting table    IGDELAYTIMEACCOUNT_20100218          0 rows exported
  1172. . . exporting table    IGDELAYTIMEACCOUNT_20100219          0 rows exported
  1173. . . exporting table    IGDELAYTIMEACCOUNT_20100220          0 rows exported
  1174. . . exporting table    IGDELAYTIMEACCOUNT_20100221          0 rows exported
  1175. . . exporting table      INTERFACEACCOUNT_20091031          0 rows exported
  1176. . . exporting table      INTERFACEACCOUNT_20091109          0 rows exported
  1177. . . exporting table      INTERFACEACCOUNT_20091111          0 rows exported
  1178. . . exporting table      INTERFACEACCOUNT_20091112          0 rows exported
  1179. . . exporting table      INTERFACEACCOUNT_20091113          0 rows exported
  1180. . . exporting table      INTERFACEACCOUNT_20091117          0 rows exported
  1181. . . exporting table      INTERFACEACCOUNT_20091118          0 rows exported
  1182. . . exporting table      INTERFACEACCOUNT_20091119          0 rows exported
  1183. . . exporting table      INTERFACEACCOUNT_20091120          0 rows exported
  1184. . . exporting table      INTERFACEACCOUNT_20091121          0 rows exported
  1185. . . exporting table      INTERFACEACCOUNT_20091122          0 rows exported
  1186. . . exporting table      INTERFACEACCOUNT_20091123          0 rows exported
  1187. . . exporting table      INTERFACEACCOUNT_20091124          0 rows exported
  1188. . . exporting table      INTERFACEACCOUNT_20091125          0 rows exported
  1189. . . exporting table      INTERFACEACCOUNT_20091126          0 rows exported
  1190. . . exporting table      INTERFACEACCOUNT_20091127          0 rows exported
  1191. . . exporting table      INTERFACEACCOUNT_20091128          0 rows exported
  1192. . . exporting table      INTERFACEACCOUNT_20091129          0 rows exported
  1193. . . exporting table      INTERFACEACCOUNT_20091130          0 rows exported
  1194. . . exporting table      INTERFACEACCOUNT_20091201          0 rows exported
  1195. . . exporting table      INTERFACEACCOUNT_20091202          0 rows exported
  1196. . . exporting table      INTERFACEACCOUNT_20091203          0 rows exported
  1197. . . exporting table      INTERFACEACCOUNT_20091204          0 rows exported
  1198. . . exporting table      INTERFACEACCOUNT_20091205          0 rows exported
  1199. . . exporting table      INTERFACEACCOUNT_20091206          0 rows exported
  1200. . . exporting table      INTERFACEACCOUNT_20091207          0 rows exported
  1201. . . exporting table      INTERFACEACCOUNT_20091208          0 rows exported
  1202. . . exporting table      INTERFACEACCOUNT_20091209          0 rows exported
  1203. . . exporting table      INTERFACEACCOUNT_20091218          0 rows exported
  1204. . . exporting table      INTERFACEACCOUNT_20091219          0 rows exported
  1205. . . exporting table      INTERFACEACCOUNT_20091220          0 rows exported
  1206. . . exporting table      INTERFACEACCOUNT_20100111          0 rows exported
  1207. . . exporting table      INTERFACEACCOUNT_20100119          0 rows exported
  1208. . . exporting table      INTERFACEACCOUNT_20100120          0 rows exported
  1209. . . exporting table      INTERFACEACCOUNT_20100121          0 rows exported
  1210. . . exporting table      INTERFACEACCOUNT_20100122          0 rows exported
  1211. . . exporting table      INTERFACEACCOUNT_20100123          0 rows exported
  1212. . . exporting table      INTERFACEACCOUNT_20100124          0 rows exported
  1213. . . exporting table      INTERFACEACCOUNT_20100125          0 rows exported
  1214. . . exporting table      INTERFACEACCOUNT_20100129          0 rows exported
  1215. . . exporting table      INTERFACEACCOUNT_20100130          0 rows exported
  1216. . . exporting table      INTERFACEACCOUNT_20100131          0 rows exported
  1217. . . exporting table      INTERFACEACCOUNT_20100201          0 rows exported
  1218. . . exporting table      INTERFACEACCOUNT_20100202          0 rows exported
  1219. . . exporting table      INTERFACEACCOUNT_20100203          0 rows exported
  1220. . . exporting table      INTERFACEACCOUNT_20100205          0 rows exported
  1221. . . exporting table      INTERFACEACCOUNT_20100206          0 rows exported
  1222. . . exporting table      INTERFACEACCOUNT_20100207          0 rows exported
  1223. . . exporting table      INTERFACEACCOUNT_20100208          0 rows exported
  1224. . . exporting table      INTERFACEACCOUNT_20100209          0 rows exported
  1225. . . exporting table      INTERFACEACCOUNT_20100210          0 rows exported
  1226. . . exporting table      INTERFACEACCOUNT_20100211          0 rows exported
  1227. . . exporting table      INTERFACEACCOUNT_20100212          0 rows exported
  1228. . . exporting table      INTERFACEACCOUNT_20100213          0 rows exported
  1229. . . exporting table      INTERFACEACCOUNT_20100214          0 rows exported
  1230. . . exporting table      INTERFACEACCOUNT_20100215          0 rows exported
  1231. . . exporting table      INTERFACEACCOUNT_20100216          0 rows exported
  1232. . . exporting table      INTERFACEACCOUNT_20100217          0 rows exported
  1233. . . exporting table      INTERFACEACCOUNT_20100218          0 rows exported
  1234. . . exporting table      INTERFACEACCOUNT_20100219          0 rows exported
  1235. . . exporting table      INTERFACEACCOUNT_20100220          0 rows exported
  1236. . . exporting table      INTERFACEACCOUNT_20100221          0 rows exported
  1237. . . exporting table      INTERFACEACCOUNT_20100222          0 rows exported
  1238. . . exporting table                    INTERPREFIX         21 rows exported
  1239. . . exporting table               IPRANGEPARTITION         93 rows exported
  1240. . . exporting table              LIMITTIMESTRATEGY          0 rows exported
  1241. . . exporting table                 MCASSERVERINFO          1 rows exported
  1242. . . exporting table                 MCPSSERVERINFO          1 rows exported
  1243. . . exporting table                        MESSAGE          0 rows exported
  1244. . . exporting table               MESSAGEREFERENCE          0 rows exported
  1245. . . exporting table            MESSAGESENDSCHEDULE         36 rows exported
  1246. . . exporting table                     MIBLEAFINT         79 rows exported
  1247. . . exporting table                     MIBLEAFSTR          9 rows exported
  1248. . . exporting table                      MMBOXTYPE          5 rows exported
  1249. . . exporting table           MMINTERFACELEVELINFO          4 rows exported
  1250. . . exporting table                       MMSCINFO          1 rows exported
  1251. . . exporting table                       MMSDINFO          0 rows exported
  1252. . . exporting table                      MMSTARIFF          1 rows exported
  1253. . . exporting table                      MODULECMD         23 rows exported
  1254. . . exporting table                        MODULES         23 rows exported
  1255. . . exporting table                 MONITOREDUSERS          0 rows exported
  1256. . . exporting table                   NATIVEPREFIX          1 rows exported
  1257. . . exporting table                    NETWORKCODE         22 rows exported
  1258. . . exporting table              NUMBERPREFIXFOR3G          0 rows exported
  1259. . . exporting table               PERSONALIZEDINFO          0 rows exported
  1260. . . exporting table                        PPGINFO          2 rows exported
  1261. . . exporting table                      PPGROUTER          1 rows exported
  1262. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  1263. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  1264. . . exporting table               PUSHDRERRMAPPING         87 rows exported
  1265. . . exporting table                       PUSHINFO          1 rows exported
  1266. . . exporting table                 PUSHRECORDINFO          0 rows exported
  1267. . . exporting table                 RCPTSUBSCRIBER          0 rows exported
  1268. . . exporting table                   REALTIMEFLOW          0 rows exported
  1269. . . exporting table               REJECTEDADDRINFO          0 rows exported
  1270. . . exporting table    RENEWEDPHONENUMBER_20091031          0 rows exported
  1271. . . exporting table    RENEWEDPHONENUMBER_20091109          0 rows exported
  1272. . . exporting table    RENEWEDPHONENUMBER_20091111          0 rows exported
  1273. . . exporting table    RENEWEDPHONENUMBER_20091112          0 rows exported
  1274. . . exporting table    RENEWEDPHONENUMBER_20091113          0 rows exported
  1275. . . exporting table    RENEWEDPHONENUMBER_20091117          0 rows exported
  1276. . . exporting table    RENEWEDPHONENUMBER_20091118          0 rows exported
  1277. . . exporting table    RENEWEDPHONENUMBER_20091119          0 rows exported
  1278. . . exporting table    RENEWEDPHONENUMBER_20091120          0 rows exported
  1279. . . exporting table    RENEWEDPHONENUMBER_20091121          0 rows exported
  1280. . . exporting table    RENEWEDPHONENUMBER_20091122          0 rows exported
  1281. . . exporting table    RENEWEDPHONENUMBER_20091123          0 rows exported
  1282. . . exporting table    RENEWEDPHONENUMBER_20091124          0 rows exported
  1283. . . exporting table    RENEWEDPHONENUMBER_20091125          0 rows exported
  1284. . . exporting table    RENEWEDPHONENUMBER_20091126          0 rows exported
  1285. . . exporting table    RENEWEDPHONENUMBER_20091127          0 rows exported
  1286. . . exporting table    RENEWEDPHONENUMBER_20091128          0 rows exported
  1287. . . exporting table    RENEWEDPHONENUMBER_20091129          0 rows exported
  1288. . . exporting table    RENEWEDPHONENUMBER_20091130          0 rows exported
  1289. . . exporting table    RENEWEDPHONENUMBER_20091201          0 rows exported
  1290. . . exporting table    RENEWEDPHONENUMBER_20091202          0 rows exported
  1291. . . exporting table    RENEWEDPHONENUMBER_20091203          0 rows exported
  1292. . . exporting table    RENEWEDPHONENUMBER_20091204          0 rows exported
  1293. . . exporting table    RENEWEDPHONENUMBER_20091205          0 rows exported
  1294. . . exporting table    RENEWEDPHONENUMBER_20091206          0 rows exported
  1295. . . exporting table    RENEWEDPHONENUMBER_20091207          0 rows exported
  1296. . . exporting table    RENEWEDPHONENUMBER_20091208          0 rows exported
  1297. . . exporting table    RENEWEDPHONENUMBER_20091209          0 rows exported
  1298. . . exporting table    RENEWEDPHONENUMBER_20091218          0 rows exported
  1299. . . exporting table    RENEWEDPHONENUMBER_20091219          0 rows exported
  1300. . . exporting table    RENEWEDPHONENUMBER_20091220          0 rows exported
  1301. . . exporting table    RENEWEDPHONENUMBER_20100111          0 rows exported
  1302. . . exporting table    RENEWEDPHONENUMBER_20100119          0 rows exported
  1303. . . exporting table    RENEWEDPHONENUMBER_20100120          0 rows exported
  1304. . . exporting table    RENEWEDPHONENUMBER_20100121          0 rows exported
  1305. . . exporting table    RENEWEDPHONENUMBER_20100122          0 rows exported
  1306. . . exporting table    RENEWEDPHONENUMBER_20100123          0 rows exported
  1307. . . exporting table    RENEWEDPHONENUMBER_20100124          0 rows exported
  1308. . . exporting table    RENEWEDPHONENUMBER_20100125          0 rows exported
  1309. . . exporting table    RENEWEDPHONENUMBER_20100129          0 rows exported
  1310. . . exporting table    RENEWEDPHONENUMBER_20100130          0 rows exported
  1311. . . exporting table    RENEWEDPHONENUMBER_20100131          0 rows exported
  1312. . . exporting table    RENEWEDPHONENUMBER_20100201          0 rows exported
  1313. . . exporting table    RENEWEDPHONENUMBER_20100202          0 rows exported
  1314. . . exporting table    RENEWEDPHONENUMBER_20100203          0 rows exported
  1315. . . exporting table    RENEWEDPHONENUMBER_20100205          0 rows exported
  1316. . . exporting table    RENEWEDPHONENUMBER_20100206          0 rows exported
  1317. . . exporting table    RENEWEDPHONENUMBER_20100207          0 rows exported
  1318. . . exporting table    RENEWEDPHONENUMBER_20100208          0 rows exported
  1319. . . exporting table    RENEWEDPHONENUMBER_20100209          0 rows exported
  1320. . . exporting table    RENEWEDPHONENUMBER_20100210          0 rows exported
  1321. . . exporting table    RENEWEDPHONENUMBER_20100211          0 rows exported
  1322. . . exporting table    RENEWEDPHONENUMBER_20100212          0 rows exported
  1323. . . exporting table    RENEWEDPHONENUMBER_20100213          0 rows exported
  1324. . . exporting table    RENEWEDPHONENUMBER_20100214          0 rows exported
  1325. . . exporting table    RENEWEDPHONENUMBER_20100215          0 rows exported
  1326. . . exporting table    RENEWEDPHONENUMBER_20100216          0 rows exported
  1327. . . exporting table    RENEWEDPHONENUMBER_20100217          0 rows exported
  1328. . . exporting table    RENEWEDPHONENUMBER_20100218          0 rows exported
  1329. . . exporting table    RENEWEDPHONENUMBER_20100219          0 rows exported
  1330. . . exporting table    RENEWEDPHONENUMBER_20100220          0 rows exported
  1331. . . exporting table    RENEWEDPHONENUMBER_20100221          0 rows exported
  1332. . . exporting table                  RENTALFEEINFO          2 rows exported
  1333. . . exporting table                REPLYCHARGEINFO          0 rows exported
  1334. . . exporting table                      RIGHTINFO        460 rows exported
  1335. . . exporting table                           ROLE          6 rows exported
  1336. . . exporting table                   ROLEMAPRIGHT        997 rows exported
  1337. . . exporting table                    ROUTERTABLE          1 rows exported
  1338. . . exporting table                 RPT_BUSYSERVER       2361 rows exported
  1339. . . exporting table                RPT_MM1_WAPSUCC          6 rows exported
  1340. . . exporting table                 RPT_MM3_ESSUCC          0 rows exported
  1341. . . exporting table               RPT_MM4_MMSCSUCC          0 rows exported
  1342. . . exporting table               RPT_MM7_VASPSUCC         12 rows exported
  1343. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  1344. . . exporting table                   RPT_USECOUNT          0 rows exported
  1345. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  1346. . . exporting table                RUBBISHMSGLIMIT          2 rows exported
  1347. . . exporting table                        SCPINFO          3 rows exported
  1348. . . exporting table                      SCPROUTER          3 rows exported
  1349. . . exporting table        SERVICEACCOUNT_20091031          0 rows exported
  1350. . . exporting table        SERVICEACCOUNT_20091109          0 rows exported
  1351. . . exporting table        SERVICEACCOUNT_20091111          0 rows exported
  1352. . . exporting table        SERVICEACCOUNT_20091112          0 rows exported
  1353. . . exporting table        SERVICEACCOUNT_20091113          0 rows exported
  1354. . . exporting table        SERVICEACCOUNT_20091117          0 rows exported
  1355. . . exporting table        SERVICEACCOUNT_20091118          0 rows exported
  1356. . . exporting table        SERVICEACCOUNT_20091119          0 rows exported
  1357. . . exporting table        SERVICEACCOUNT_20091120          0 rows exported
  1358. . . exporting table        SERVICEACCOUNT_20091121          0 rows exported
  1359. . . exporting table        SERVICEACCOUNT_20091122          0 rows exported
  1360. . . exporting table        SERVICEACCOUNT_20091123          0 rows exported
  1361. . . exporting table        SERVICEACCOUNT_20091124          0 rows exported
  1362. . . exporting table        SERVICEACCOUNT_20091125          0 rows exported
  1363. . . exporting table        SERVICEACCOUNT_20091126          0 rows exported
  1364. . . exporting table        SERVICEACCOUNT_20091127          0 rows exported
  1365. . . exporting table        SERVICEACCOUNT_20091128          0 rows exported
  1366. . . exporting table        SERVICEACCOUNT_20091129          0 rows exported
  1367. . . exporting table        SERVICEACCOUNT_20091130          0 rows exported
  1368. . . exporting table        SERVICEACCOUNT_20091201          0 rows exported
  1369. . . exporting table        SERVICEACCOUNT_20091202          0 rows exported
  1370. . . exporting table        SERVICEACCOUNT_20091203          0 rows exported
  1371. . . exporting table        SERVICEACCOUNT_20091204          0 rows exported
  1372. . . exporting table        SERVICEACCOUNT_20091205          0 rows exported
  1373. . . exporting table        SERVICEACCOUNT_20091206          0 rows exported
  1374. . . exporting table        SERVICEACCOUNT_20091207          0 rows exported
  1375. . . exporting table        SERVICEACCOUNT_20091208          0 rows exported
  1376. . . exporting table        SERVICEACCOUNT_20091209          0 rows exported
  1377. . . exporting table        SERVICEACCOUNT_20091218          0 rows exported
  1378. . . exporting table        SERVICEACCOUNT_20091219          0 rows exported
  1379. . . exporting table        SERVICEACCOUNT_20091220          0 rows exported
  1380. . . exporting table        SERVICEACCOUNT_20100111          0 rows exported
  1381. . . exporting table        SERVICEACCOUNT_20100119          0 rows exported
  1382. . . exporting table        SERVICEACCOUNT_20100120          0 rows exported
  1383. . . exporting table        SERVICEACCOUNT_20100121          0 rows exported
  1384. . . exporting table        SERVICEACCOUNT_20100122          0 rows exported
  1385. . . exporting table        SERVICEACCOUNT_20100123          0 rows exported
  1386. . . exporting table        SERVICEACCOUNT_20100124          0 rows exported
  1387. . . exporting table        SERVICEACCOUNT_20100125          0 rows exported
  1388. . . exporting table        SERVICEACCOUNT_20100129          0 rows exported
  1389. . . exporting table        SERVICEACCOUNT_20100130          0 rows exported
  1390. . . exporting table        SERVICEACCOUNT_20100131          0 rows exported
  1391. . . exporting table        SERVICEACCOUNT_20100201          0 rows exported
  1392. . . exporting table        SERVICEACCOUNT_20100202          0 rows exported
  1393. . . exporting table        SERVICEACCOUNT_20100203          0 rows exported
  1394. . . exporting table        SERVICEACCOUNT_20100205          0 rows exported
  1395. . . exporting table        SERVICEACCOUNT_20100206          0 rows exported
  1396. . . exporting table        SERVICEACCOUNT_20100207          0 rows exported
  1397. . . exporting table        SERVICEACCOUNT_20100208          0 rows exported
  1398. . . exporting table        SERVICEACCOUNT_20100209          0 rows exported
  1399. . . exporting table        SERVICEACCOUNT_20100210          0 rows exported
  1400. . . exporting table        SERVICEACCOUNT_20100211          0 rows exported
  1401. . . exporting table        SERVICEACCOUNT_20100212          0 rows exported
  1402. . . exporting table        SERVICEACCOUNT_20100213          0 rows exported
  1403. . . exporting table        SERVICEACCOUNT_20100214          0 rows exported
  1404. . . exporting table        SERVICEACCOUNT_20100215          0 rows exported
  1405. . . exporting table        SERVICEACCOUNT_20100216          0 rows exported
  1406. . . exporting table        SERVICEACCOUNT_20100217          0 rows exported
  1407. . . exporting table        SERVICEACCOUNT_20100218          0 rows exported
  1408. . . exporting table        SERVICEACCOUNT_20100219          0 rows exported
  1409. . . exporting table        SERVICEACCOUNT_20100220          0 rows exported
  1410. . . exporting table        SERVICEACCOUNT_20100221          0 rows exported
  1411. . . exporting table        SERVICEACCOUNT_20100222          0 rows exported
  1412. . . exporting table                    SMSNOTEINFO         35 rows exported
  1413. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  1414. . . exporting table                    SMTPSTSINFO          0 rows exported
  1415. . . exporting table                SPECIALCUSTINFO          0 rows exported
  1416. . . exporting table                  SUBMITRESINFO        132 rows exported
  1417. . . exporting table                     SUBSCRIBER          4 rows exported
  1418. . . exporting table                   SUBSNUMGROUP          0 rows exported
  1419. . . exporting table                    SYSOPERATOR         13 rows exported
  1420. . . exporting table                SYSTEMPARAMETER        523 rows exported
  1421. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  1422. . . exporting table              TERMINALBLACKLIST          0 rows exported
  1423. . . exporting table              TMP_ATTACH_RESULT          0 rows exported
  1424. . . exporting table                TMP_BASE_RESULT          0 rows exported
  1425. . . exporting table            TMP_USERPHONENUMBER          0 rows exported
  1426. . . exporting table                   TRACEMSGINFO          0 rows exported
  1427. . . exporting table                      UAPROFILE          2 rows exported
  1428. . . exporting table                     USERBWLIST          0 rows exported
  1429. . . exporting table                USERPHONENUMBER          0 rows exported
  1430. . . exporting table                VASDELIVERGROUP          0 rows exported
  1431. . . exporting table                   VASLOCALLIST          0 rows exported
  1432. . . exporting table                       VASPINFO          1 rows exported
  1433. . . exporting table                  VASPLEVELINFO          1 rows exported
  1434. . . exporting table               VASPPRIORITYINFO          5 rows exported
  1435. . . exporting table                VASPSERVICEINFO          1 rows exported
  1436. . . exporting table                VASPSERVICE_SUP          7 rows exported
  1437. . . exporting table              VASSERVEDAREALIST          1 rows exported
  1438. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  1439. . . exporting table                  VASSWITCHINFO          0 rows exported
  1440. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  1441. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  1442. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  1443. . . exporting table                      WAPGWINFO         25 rows exported
  1444. . . exporting table                WHITENOTIFYLIST          0 rows exported
  1445. . about to export ZJUN's tables via Conventional Path ...
  1446. . . exporting table                       AREAINFO        374 rows exported
  1447. . . exporting table                     AREANUMBER        364 rows exported
  1448. . . exporting table               AREANUMBERPREFIX          2 rows exported
  1449. . . exporting table                BEARERVALUELIST          3 rows exported
  1450. . . exporting table                    CARRIERINFO          1 rows exported
  1451. . . exporting table               CHARGINGKPCONFIG         28 rows exported
  1452. . . exporting table                 CONNECTIONINFO          0 rows exported
  1453. . . exporting table                    COUNTRYCODE         21 rows exported
  1454. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  1455. . . exporting table               DETAILSTATUSCODE        247 rows exported
  1456. . . exporting table                     DNSSRVINFO          0 rows exported
  1457. . . exporting table                  DRMACCESSCODE          0 rows exported
  1458. . . exporting table                     ECTOSIINFO          0 rows exported
  1459. . . exporting table                    ENUMSRVINFO          1 rows exported
  1460. . . exporting table                  EXP_CACHESTAT          0 rows exported
  1461. . . exporting table                    HISTORYFLOW          0 rows exported
  1462. . . exporting table      INTERFACEACCOUNT_20100406          0 rows exported
  1463. . . exporting table      INTERFACEACCOUNT_20100427         97 rows exported
  1464. . . exporting table      INTERFACEACCOUNT_20100428          0 rows exported
  1465. . . exporting table      INTERFACEACCOUNT_20100429        100 rows exported
  1466. . . exporting table      INTERFACEACCOUNT_20100430        198 rows exported
  1467. . . exporting table      INTERFACEACCOUNT_20100501          0 rows exported
  1468. . . exporting table      INTERFACEACCOUNT_20100502          0 rows exported
  1469. . . exporting table      INTERFACEACCOUNT_20100503          0 rows exported
  1470. . . exporting table      INTERFACEACCOUNT_20100504          0 rows exported
  1471. . . exporting table      INTERFACEACCOUNT_20100505          0 rows exported
  1472. . . exporting table      INTERFACEACCOUNT_20100506          0 rows exported
  1473. . . exporting table      INTERFACEACCOUNT_20100507          0 rows exported
  1474. . . exporting table                    INTERPREFIX         21 rows exported
  1475. . . exporting table               IPRANGEPARTITION         93 rows exported
  1476. . . exporting table                        MESSAGE          0 rows exported
  1477. . . exporting table               MESSAGEREFERENCE          0 rows exported
  1478. . . exporting table            MESSAGESENDSCHEDULE         15 rows exported
  1479. . . exporting table                     MIBLEAFINT         79 rows exported
  1480. . . exporting table                     MIBLEAFSTR          8 rows exported
  1481. . . exporting table                       MISCINFO          2 rows exported
  1482. . . exporting table                MISCROUTERTABLE          9 rows exported
  1483. . . exporting table                      MMBOXTYPE          5 rows exported
  1484. . . exporting table           MMINTERFACELEVELINFO          2 rows exported
  1485. . . exporting table                       MMSCINFO          2 rows exported
  1486. . . exporting table                     MMSCIPINFO          0 rows exported
  1487. . . exporting table             MMSGMMSCMSGIDMAP00          0 rows exported
  1488. . . exporting table             MMSGMMSCMSGIDMAP01          0 rows exported
  1489. . . exporting table             MMSGMMSCMSGIDMAP02          0 rows exported
  1490. . . exporting table             MMSGMMSCMSGIDMAP03          0 rows exported
  1491. . . exporting table             MMSGMMSCMSGIDMAP04          0 rows exported
  1492. . . exporting table             MMSGMMSCMSGIDMAP05          0 rows exported
  1493. . . exporting table             MMSGMMSCMSGIDMAP06          0 rows exported
  1494. . . exporting table             MMSGMMSCMSGIDMAP07          0 rows exported
  1495. . . exporting table             MMSGMMSCMSGIDMAP08          0 rows exported
  1496. . . exporting table             MMSGMMSCMSGIDMAP09          0 rows exported
  1497. . . exporting table             MMSGMMSCMSGIDMAP10          0 rows exported
  1498. . . exporting table             MMSGMMSCMSGIDMAP11          0 rows exported
  1499. . . exporting table             MMSGMMSCMSGIDMAP12          0 rows exported
  1500. . . exporting table             MMSGMMSCMSGIDMAP13          0 rows exported
  1501. . . exporting table             MMSGMMSCMSGIDMAP14          0 rows exported
  1502. . . exporting table             MMSGMMSCMSGIDMAP15          0 rows exported
  1503. . . exporting table             MMSGMMSCMSGIDMAP16          0 rows exported
  1504. . . exporting table             MMSGMMSCMSGIDMAP17          0 rows exported
  1505. . . exporting table             MMSGMMSCMSGIDMAP18          0 rows exported
  1506. . . exporting table             MMSGMMSCMSGIDMAP19          0 rows exported
  1507. . . exporting table             MMSGMMSCMSGIDMAP20          0 rows exported
  1508. . . exporting table             MMSGMMSCMSGIDMAP21          0 rows exported
  1509. . . exporting table             MMSGMMSCMSGIDMAP22          0 rows exported
  1510. . . exporting table             MMSGMMSCMSGIDMAP23          0 rows exported
  1511. . . exporting table             MMSGMMSCMSGIDMAP24          0 rows exported
  1512. . . exporting table             MMSGMMSCMSGIDMAP25          0 rows exported
  1513. . . exporting table             MMSGMMSCMSGIDMAP26          0 rows exported
  1514. . . exporting table             MMSGMMSCMSGIDMAP27          0 rows exported
  1515. . . exporting table             MMSGMMSCMSGIDMAP28          0 rows exported
  1516. . . exporting table             MMSGMMSCMSGIDMAP29          0 rows exported
  1517. . . exporting table             MMSGMMSCMSGIDMAP30          0 rows exported
  1518. . . exporting table             MMSGMMSCMSGIDMAP31          0 rows exported
  1519. . . exporting table             MMSGMMSCMSGIDMAP32          0 rows exported
  1520. . . exporting table             MMSGMMSCMSGIDMAP33          0 rows exported
  1521. . . exporting table             MMSGMMSCMSGIDMAP34          0 rows exported
  1522. . . exporting table             MMSGMMSCMSGIDMAP35          0 rows exported
  1523. . . exporting table             MMSGMMSCMSGIDMAP36          0 rows exported
  1524. . . exporting table             MMSGMMSCMSGIDMAP37          0 rows exported
  1525. . . exporting table             MMSGMMSCMSGIDMAP38          0 rows exported
  1526. . . exporting table             MMSGMMSCMSGIDMAP39          0 rows exported
  1527. . . exporting table             MMSGMMSCMSGIDMAP40          0 rows exported
  1528. . . exporting table             MMSGMMSCMSGIDMAP41          0 rows exported
  1529. . . exporting table             MMSGMMSCMSGIDMAP42          0 rows exported
  1530. . . exporting table             MMSGMMSCMSGIDMAP43          0 rows exported
  1531. . . exporting table             MMSGMMSCMSGIDMAP44          0 rows exported
  1532. . . exporting table             MMSGMMSCMSGIDMAP45          0 rows exported
  1533. . . exporting table             MMSGMMSCMSGIDMAP46          0 rows exported
  1534. . . exporting table             MMSGMMSCMSGIDMAP47          0 rows exported
  1535. . . exporting table             MMSGMMSCMSGIDMAP48          0 rows exported
  1536. . . exporting table             MMSGMMSCMSGIDMAP49          0 rows exported
  1537. . . exporting table             MMSGMMSCMSGIDMAP50          0 rows exported
  1538. . . exporting table             MMSGMMSCMSGIDMAP51          0 rows exported
  1539. . . exporting table             MMSGMMSCMSGIDMAP52          0 rows exported
  1540. . . exporting table             MMSGMMSCMSGIDMAP53          0 rows exported
  1541. . . exporting table             MMSGMMSCMSGIDMAP54          0 rows exported
  1542. . . exporting table             MMSGMMSCMSGIDMAP55          0 rows exported
  1543. . . exporting table             MMSGMMSCMSGIDMAP56          0 rows exported
  1544. . . exporting table             MMSGMMSCMSGIDMAP57          0 rows exported
  1545. . . exporting table             MMSGMMSCMSGIDMAP58          0 rows exported
  1546. . . exporting table             MMSGMMSCMSGIDMAP59          0 rows exported
  1547. . . exporting table             MMSGMMSCMSGIDMAP60          0 rows exported
  1548. . . exporting table             MMSGMMSCMSGIDMAP61          0 rows exported
  1549. . . exporting table             MMSGMMSCMSGIDMAP62          0 rows exported
  1550. . . exporting table             MMSGMMSCMSGIDMAP63          0 rows exported
  1551. . . exporting table             MMSGMMSCMSGIDMAP64          0 rows exported
  1552. . . exporting table             MMSGMMSCMSGIDMAP65          0 rows exported
  1553. . . exporting table             MMSGMMSCMSGIDMAP66          0 rows exported
  1554. . . exporting table             MMSGMMSCMSGIDMAP67          0 rows exported
  1555. . . exporting table             MMSGMMSCMSGIDMAP68          0 rows exported
  1556. . . exporting table             MMSGMMSCMSGIDMAP69          0 rows exported
  1557. . . exporting table             MMSGMMSCMSGIDMAP70          0 rows exported
  1558. . . exporting table             MMSGMMSCMSGIDMAP71          0 rows exported
  1559. . . exporting table             MMSGMMSCMSGIDMAP72          0 rows exported
  1560. . . exporting table             MMSGMMSCMSGIDMAP73          0 rows exported
  1561. . . exporting table             MMSGMMSCMSGIDMAP74          0 rows exported
  1562. . . exporting table             MMSGMMSCMSGIDMAP75          0 rows exported
  1563. . . exporting table             MMSGMMSCMSGIDMAP76          0 rows exported
  1564. . . exporting table             MMSGMMSCMSGIDMAP77          0 rows exported
  1565. . . exporting table             MMSGMMSCMSGIDMAP78          0 rows exported
  1566. . . exporting table             MMSGMMSCMSGIDMAP79          0 rows exported
  1567. . . exporting table             MMSGMMSCMSGIDMAP80          0 rows exported
  1568. . . exporting table             MMSGMMSCMSGIDMAP81          0 rows exported
  1569. . . exporting table             MMSGMMSCMSGIDMAP82          0 rows exported
  1570. . . exporting table             MMSGMMSCMSGIDMAP83          0 rows exported
  1571. . . exporting table             MMSGMMSCMSGIDMAP84          0 rows exported
  1572. . . exporting table             MMSGMMSCMSGIDMAP85          0 rows exported
  1573. . . exporting table             MMSGMMSCMSGIDMAP86          0 rows exported
  1574. . . exporting table             MMSGMMSCMSGIDMAP87          0 rows exported
  1575. . . exporting table             MMSGMMSCMSGIDMAP88          0 rows exported
  1576. . . exporting table             MMSGMMSCMSGIDMAP89          0 rows exported
  1577. . . exporting table             MMSGMMSCMSGIDMAP90          0 rows exported
  1578. . . exporting table             MMSGMMSCMSGIDMAP91          0 rows exported
  1579. . . exporting table             MMSGMMSCMSGIDMAP92          0 rows exported
  1580. . . exporting table             MMSGMMSCMSGIDMAP93          0 rows exported
  1581. . . exporting table             MMSGMMSCMSGIDMAP94          0 rows exported
  1582. . . exporting table             MMSGMMSCMSGIDMAP95          0 rows exported
  1583. . . exporting table             MMSGMMSCMSGIDMAP96          0 rows exported
  1584. . . exporting table             MMSGMMSCMSGIDMAP97          0 rows exported
  1585. . . exporting table             MMSGMMSCMSGIDMAP98          0 rows exported
  1586. . . exporting table             MMSGMMSCMSGIDMAP99          0 rows exported
  1587. . . exporting table          MMSGSVCLOG_0427_1_O_0         15 rows exported
  1588. . . exporting table          MMSGSVCLOG_0427_1_O_1         59 rows exported
  1589. . . exporting table          MMSGSVCLOG_0427_1_O_3         74 rows exported
  1590. . . exporting table          MMSGSVCLOG_0427_1_O_4         24 rows exported
  1591. . . exporting table          MMSGSVCLOG_0427_1_O_5          9 rows exported
  1592. . . exporting table          MMSGSVCLOG_0427_1_O_6         24 rows exported
  1593. . . exporting table          MMSGSVCLOG_0427_1_O_7          5 rows exported
  1594. . . exporting table          MMSGSVCLOG_0427_1_O_8         40 rows exported
  1595. . . exporting table          MMSGSVCLOG_0427_1_O_9         95 rows exported
  1596. . . exporting table          MMSGSVCLOG_0429_1_O_0         18 rows exported
  1597. . . exporting table          MMSGSVCLOG_0429_1_O_1         27 rows exported
  1598. . . exporting table          MMSGSVCLOG_0429_1_O_5         11 rows exported
  1599. . . exporting table          MMSGSVCLOG_0429_1_O_6         37 rows exported
  1600. . . exporting table          MMSGSVCLOG_0429_1_O_7         24 rows exported
  1601. . . exporting table          MMSGSVCLOG_0429_1_O_8          9 rows exported
  1602. . . exporting table          MMSGSVCLOG_0429_1_O_9         20 rows exported
  1603. . . exporting table          MMSGSVCLOG_0430_1_O_0        194 rows exported
  1604. . . exporting table          MMSGSVCLOG_0430_1_O_1        121 rows exported
  1605. . . exporting table          MMSGSVCLOG_0430_1_O_2        297 rows exported
  1606. . . exporting table          MMSGSVCLOG_0430_1_O_3        306 rows exported
  1607. . . exporting table          MMSGSVCLOG_0430_1_O_4        224 rows exported
  1608. . . exporting table          MMSGSVCLOG_0430_1_O_5        191 rows exported
  1609. . . exporting table          MMSGSVCLOG_0430_1_O_6        190 rows exported
  1610. . . exporting table          MMSGSVCLOG_0430_1_O_7        101 rows exported
  1611. . . exporting table          MMSGSVCLOG_0430_1_O_8        135 rows exported
  1612. . . exporting table          MMSGSVCLOG_0430_1_O_9        212 rows exported
  1613. . . exporting table        MMSGSVCLOG_20100427_1_S         59 rows exported
  1614. . . exporting table        MMSGSVCLOG_20100429_1_S         14 rows exported
  1615. . . exporting table        MMSGSVCLOG_20100430_1_S        173 rows exported
  1616. . . exporting table                      MMSTARIFF          1 rows exported
  1617. . . exporting table                      MODULECMD         18 rows exported
  1618. . . exporting table                        MODULES         17 rows exported
  1619. . . exporting table                 MONITOREDUSERS          0 rows exported
  1620. . . exporting table                MONITORPERFSTAT          0 rows exported
  1621. . . exporting table               MONTHORDERINFO_0          0 rows exported
  1622. . . exporting table               MONTHORDERINFO_1          0 rows exported
  1623. . . exporting table               MONTHORDERINFO_2          0 rows exported
  1624. . . exporting table               MONTHORDERINFO_3          0 rows exported
  1625. . . exporting table               MONTHORDERINFO_4          0 rows exported
  1626. . . exporting table               MONTHORDERINFO_5          0 rows exported
  1627. . . exporting table               MONTHORDERINFO_6          0 rows exported
  1628. . . exporting table               MONTHORDERINFO_7          0 rows exported
  1629. . . exporting table               MONTHORDERINFO_8          0 rows exported
  1630. . . exporting table               MONTHORDERINFO_9          0 rows exported
  1631. . . exporting table                   NATIVEPREFIX          1 rows exported
  1632. . . exporting table                    NETWORKCODE         24 rows exported
  1633. . . exporting table              PORTALLOG20100427         79 rows exported
  1634. . . exporting table              PORTALLOG20100429         31 rows exported
  1635. . . exporting table              PORTALLOG20100430          8 rows exported
  1636. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  1637. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  1638. . . exporting table                   REALTIMEFLOW          0 rows exported
  1639. . . exporting table                  RENTALFEEINFO          1 rows exported
  1640. . . exporting table                      RIGHTINFO        249 rows exported
  1641. . . exporting table                           ROLE          4 rows exported
  1642. . . exporting table                   ROLEMAPRIGHT        518 rows exported
  1643. . . exporting table                    ROUTERTABLE          5 rows exported
  1644. . . exporting table                 RPT_BUSYSERVER        184 rows exported
  1645. . . exporting table                  RPT_DELAYTIME         37 rows exported
  1646. . . exporting table         RPT_DELAYTIME_20100505          0 rows exported
  1647. . . exporting table         RPT_DELAYTIME_20100506          0 rows exported
  1648. . . exporting table         RPT_DELAYTIME_20100507          0 rows exported
  1649. . . exporting table                  RPT_INTERFACE         14 rows exported
  1650. . . exporting table         RPT_INTERFACE_20100505          0 rows exported
  1651. . . exporting table         RPT_INTERFACE_20100506          0 rows exported
  1652. . . exporting table         RPT_INTERFACE_20100507          0 rows exported
  1653. . . exporting table               RPT_MM7_VASPSUCC         16 rows exported
  1654. . . exporting table                   RPT_MMSCSUCC         14 rows exported
  1655. . . exporting table              RPT_MMSC_20100406          0 rows exported
  1656. . . exporting table              RPT_MMSC_20100427          0 rows exported
  1657. . . exporting table              RPT_MMSC_20100428          0 rows exported
  1658. . . exporting table              RPT_MMSC_20100429          0 rows exported
  1659. . . exporting table              RPT_MMSC_20100430          0 rows exported
  1660. . . exporting table              RPT_MMSC_20100501          0 rows exported
  1661. . . exporting table              RPT_MMSC_20100502          0 rows exported
  1662. . . exporting table              RPT_MMSC_20100503          0 rows exported
  1663. . . exporting table              RPT_MMSC_20100504          0 rows exported
  1664. . . exporting table              RPT_MMSC_20100505          0 rows exported
  1665. . . exporting table              RPT_MMSC_20100506          0 rows exported
  1666. . . exporting table              RPT_MMSC_20100507          0 rows exported
  1667. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  1668. . . exporting table                   RPT_USECOUNT          0 rows exported
  1669. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  1670. . . exporting table              RPT_VASP_20100406          0 rows exported
  1671. . . exporting table              RPT_VASP_20100427          0 rows exported
  1672. . . exporting table              RPT_VASP_20100428          0 rows exported
  1673. . . exporting table              RPT_VASP_20100429          0 rows exported
  1674. . . exporting table              RPT_VASP_20100430          0 rows exported
  1675. . . exporting table              RPT_VASP_20100501          0 rows exported
  1676. . . exporting table              RPT_VASP_20100502          0 rows exported
  1677. . . exporting table              RPT_VASP_20100503          0 rows exported
  1678. . . exporting table              RPT_VASP_20100504          0 rows exported
  1679. . . exporting table              RPT_VASP_20100505          0 rows exported
  1680. . . exporting table              RPT_VASP_20100506          0 rows exported
  1681. . . exporting table              RPT_VASP_20100507          0 rows exported
  1682. . . exporting table        SERVICEACCOUNT_20100406          0 rows exported
  1683. . . exporting table        SERVICEACCOUNT_20100427         56 rows exported
  1684. . . exporting table        SERVICEACCOUNT_20100428          0 rows exported
  1685. . . exporting table        SERVICEACCOUNT_20100429         53 rows exported
  1686. . . exporting table        SERVICEACCOUNT_20100430        114 rows exported
  1687. . . exporting table        SERVICEACCOUNT_20100501          0 rows exported
  1688. . . exporting table        SERVICEACCOUNT_20100502          0 rows exported
  1689. . . exporting table        SERVICEACCOUNT_20100503          0 rows exported
  1690. . . exporting table        SERVICEACCOUNT_20100504          0 rows exported
  1691. . . exporting table        SERVICEACCOUNT_20100505          0 rows exported
  1692. . . exporting table        SERVICEACCOUNT_20100506          0 rows exported
  1693. . . exporting table        SERVICEACCOUNT_20100507          0 rows exported
  1694. . . exporting table                         SIINFO          0 rows exported
  1695. . . exporting table                    SMSNOTEINFO          4 rows exported
  1696. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  1697. . . exporting table                SPECIALCUSTINFO          0 rows exported
  1698. . . exporting table                  SUBMITRESINFO        128 rows exported
  1699. . . exporting table                    SYSOPERATOR         13 rows exported
  1700. . . exporting table                SYSTEMPARAMETER        336 rows exported
  1701. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  1702. . . exporting table              TERMINALBLACKLIST          2 rows exported
  1703. . . exporting table              TMP_ATTACH_RESULT          0 rows exported
  1704. . . exporting table                TMP_BASE_RESULT          0 rows exported
  1705. . . exporting table                     TMP_RESULT          0 rows exported
  1706. . . exporting table                   TMP_RESULTID          0 rows exported
  1707. . . exporting table                  TMP_RESULTMEM          0 rows exported
  1708. . . exporting table                   TRACEMSGINFO          0 rows exported
  1709. . . exporting table                      UAPROFILE          2 rows exported
  1710. . . exporting table                       VASPINFO         13 rows exported
  1711. . . exporting table                  VASPLEVELINFO          2 rows exported
  1712. . . exporting table               VASPPRIORITYINFO          5 rows exported
  1713. . . exporting table                VASPRIORITYINFO          5 rows exported
  1714. . . exporting table                VASPSERVICE_SUP         15 rows exported
  1715. . . exporting table              VASSERVEDAREALIST          1 rows exported
  1716. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  1717. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  1718. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  1719. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  1720. . . exporting table                    VPNCORP_100          3 rows exported
  1721. . . exporting table                    VPNCORP_300          3 rows exported
  1722. . . exporting table                  VPNSUBSCRIBER          6 rows exported
  1723. . . exporting table                 VPNUNITECORPID          1 rows exported
  1724. . about to export AUTOTEST's tables via Conventional Path ...
  1725. . . exporting table                       AREAINFO        374 rows exported
  1726. . . exporting table                     AREANUMBER        364 rows exported
  1727. . . exporting table               AREANUMBERPREFIX      36158 rows exported
  1728. . . exporting table                 AREANUMBER_BAK        728 rows exported
  1729. . . exporting table                BEARERVALUELIST          3 rows exported
  1730. . . exporting table                    CARRIERINFO          1 rows exported
  1731. . . exporting table               CHARGINGKPCONFIG         28 rows exported
  1732. . . exporting table                 CONNECTIONINFO          0 rows exported
  1733. . . exporting table                    COUNTRYCODE         21 rows exported
  1734. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  1735. . . exporting table               DETAILSTATUSCODE        247 rows exported
  1736. . . exporting table                     DNSSRVINFO          0 rows exported
  1737. . . exporting table                  DRMACCESSCODE          0 rows exported
  1738. . . exporting table                     ECTOSIINFO          0 rows exported
  1739. . . exporting table                    ENUMSRVINFO          5 rows exported
  1740. . . exporting table                  EXP_CACHESTAT          0 rows exported
  1741. . . exporting table                    HISTORYFLOW          0 rows exported
  1742. . . exporting table      INTERFACEACCOUNT_20100202        332 rows exported
  1743. . . exporting table      INTERFACEACCOUNT_20100203         28 rows exported
  1744. . . exporting table      INTERFACEACCOUNT_20100204        102 rows exported
  1745. . . exporting table      INTERFACEACCOUNT_20100205         15 rows exported
  1746. . . exporting table      INTERFACEACCOUNT_20100206          7 rows exported
  1747. . . exporting table      INTERFACEACCOUNT_20100207          0 rows exported
  1748. . . exporting table      INTERFACEACCOUNT_20100208          4 rows exported
  1749. . . exporting table                    INTERPREFIX         21 rows exported
  1750. . . exporting table               IPRANGEPARTITION         93 rows exported
  1751. . . exporting table                        MESSAGE          0 rows exported
  1752. . . exporting table               MESSAGEREFERENCE          0 rows exported
  1753. . . exporting table            MESSAGESENDSCHEDULE         15 rows exported
  1754. . . exporting table                     MIBLEAFINT         79 rows exported
  1755. . . exporting table                     MIBLEAFSTR         15 rows exported
  1756. . . exporting table                       MISCINFO          1 rows exported
  1757. . . exporting table                MISCROUTERTABLE          1 rows exported
  1758. . . exporting table                      MMBOXTYPE          5 rows exported
  1759. . . exporting table           MMINTERFACELEVELINFO          2 rows exported
  1760. . . exporting table                       MMSCINFO          1 rows exported
  1761. . . exporting table                     MMSCIPINFO          0 rows exported
  1762. . . exporting table             MMSGMMSCMSGIDMAP00          0 rows exported
  1763. . . exporting table             MMSGMMSCMSGIDMAP01          0 rows exported
  1764. . . exporting table             MMSGMMSCMSGIDMAP02          0 rows exported
  1765. . . exporting table             MMSGMMSCMSGIDMAP03          0 rows exported
  1766. . . exporting table             MMSGMMSCMSGIDMAP04          0 rows exported
  1767. . . exporting table             MMSGMMSCMSGIDMAP05          0 rows exported
  1768. . . exporting table             MMSGMMSCMSGIDMAP06          0 rows exported
  1769. . . exporting table             MMSGMMSCMSGIDMAP07          0 rows exported
  1770. . . exporting table             MMSGMMSCMSGIDMAP08          0 rows exported
  1771. . . exporting table             MMSGMMSCMSGIDMAP09          0 rows exported
  1772. . . exporting table             MMSGMMSCMSGIDMAP10          0 rows exported
  1773. . . exporting table             MMSGMMSCMSGIDMAP11          0 rows exported
  1774. . . exporting table             MMSGMMSCMSGIDMAP12          0 rows exported
  1775. . . exporting table             MMSGMMSCMSGIDMAP13          0 rows exported
  1776. . . exporting table             MMSGMMSCMSGIDMAP14          0 rows exported
  1777. . . exporting table             MMSGMMSCMSGIDMAP15          0 rows exported
  1778. . . exporting table             MMSGMMSCMSGIDMAP16          0 rows exported
  1779. . . exporting table             MMSGMMSCMSGIDMAP17          0 rows exported
  1780. . . exporting table             MMSGMMSCMSGIDMAP18          0 rows exported
  1781. . . exporting table             MMSGMMSCMSGIDMAP19          0 rows exported
  1782. . . exporting table             MMSGMMSCMSGIDMAP20          0 rows exported
  1783. . . exporting table             MMSGMMSCMSGIDMAP21          0 rows exported
  1784. . . exporting table             MMSGMMSCMSGIDMAP22          0 rows exported
  1785. . . exporting table             MMSGMMSCMSGIDMAP23          0 rows exported
  1786. . . exporting table             MMSGMMSCMSGIDMAP24          0 rows exported
  1787. . . exporting table             MMSGMMSCMSGIDMAP25          0 rows exported
  1788. . . exporting table             MMSGMMSCMSGIDMAP26          0 rows exported
  1789. . . exporting table             MMSGMMSCMSGIDMAP27          0 rows exported
  1790. . . exporting table             MMSGMMSCMSGIDMAP28          0 rows exported
  1791. . . exporting table             MMSGMMSCMSGIDMAP29          0 rows exported
  1792. . . exporting table             MMSGMMSCMSGIDMAP30          0 rows exported
  1793. . . exporting table             MMSGMMSCMSGIDMAP31          0 rows exported
  1794. . . exporting table             MMSGMMSCMSGIDMAP32          0 rows exported
  1795. . . exporting table             MMSGMMSCMSGIDMAP33          0 rows exported
  1796. . . exporting table             MMSGMMSCMSGIDMAP34          0 rows exported
  1797. . . exporting table             MMSGMMSCMSGIDMAP35          0 rows exported
  1798. . . exporting table             MMSGMMSCMSGIDMAP36          0 rows exported
  1799. . . exporting table             MMSGMMSCMSGIDMAP37          0 rows exported
  1800. . . exporting table             MMSGMMSCMSGIDMAP38          0 rows exported
  1801. . . exporting table             MMSGMMSCMSGIDMAP39          0 rows exported
  1802. . . exporting table             MMSGMMSCMSGIDMAP40          0 rows exported
  1803. . . exporting table             MMSGMMSCMSGIDMAP41          0 rows exported
  1804. . . exporting table             MMSGMMSCMSGIDMAP42          0 rows exported
  1805. . . exporting table             MMSGMMSCMSGIDMAP43          0 rows exported
  1806. . . exporting table             MMSGMMSCMSGIDMAP44          0 rows exported
  1807. . . exporting table             MMSGMMSCMSGIDMAP45          0 rows exported
  1808. . . exporting table             MMSGMMSCMSGIDMAP46          0 rows exported
  1809. . . exporting table             MMSGMMSCMSGIDMAP47          0 rows exported
  1810. . . exporting table             MMSGMMSCMSGIDMAP48          0 rows exported
  1811. . . exporting table             MMSGMMSCMSGIDMAP49          0 rows exported
  1812. . . exporting table             MMSGMMSCMSGIDMAP50          0 rows exported
  1813. . . exporting table             MMSGMMSCMSGIDMAP51          0 rows exported
  1814. . . exporting table             MMSGMMSCMSGIDMAP52          0 rows exported
  1815. . . exporting table             MMSGMMSCMSGIDMAP53          0 rows exported
  1816. . . exporting table             MMSGMMSCMSGIDMAP54          0 rows exported
  1817. . . exporting table             MMSGMMSCMSGIDMAP55          0 rows exported
  1818. . . exporting table             MMSGMMSCMSGIDMAP56          0 rows exported
  1819. . . exporting table             MMSGMMSCMSGIDMAP57          0 rows exported
  1820. . . exporting table             MMSGMMSCMSGIDMAP58          0 rows exported
  1821. . . exporting table             MMSGMMSCMSGIDMAP59          0 rows exported
  1822. . . exporting table             MMSGMMSCMSGIDMAP60          0 rows exported
  1823. . . exporting table             MMSGMMSCMSGIDMAP61          0 rows exported
  1824. . . exporting table             MMSGMMSCMSGIDMAP62          0 rows exported
  1825. . . exporting table             MMSGMMSCMSGIDMAP63          0 rows exported
  1826. . . exporting table             MMSGMMSCMSGIDMAP64          0 rows exported
  1827. . . exporting table             MMSGMMSCMSGIDMAP65          0 rows exported
  1828. . . exporting table             MMSGMMSCMSGIDMAP66          0 rows exported
  1829. . . exporting table             MMSGMMSCMSGIDMAP67          0 rows exported
  1830. . . exporting table             MMSGMMSCMSGIDMAP68          0 rows exported
  1831. . . exporting table             MMSGMMSCMSGIDMAP69          0 rows exported
  1832. . . exporting table             MMSGMMSCMSGIDMAP70          0 rows exported
  1833. . . exporting table             MMSGMMSCMSGIDMAP71          0 rows exported
  1834. . . exporting table             MMSGMMSCMSGIDMAP72          0 rows exported
  1835. . . exporting table             MMSGMMSCMSGIDMAP73          0 rows exported
  1836. . . exporting table             MMSGMMSCMSGIDMAP74          0 rows exported
  1837. . . exporting table             MMSGMMSCMSGIDMAP75          0 rows exported
  1838. . . exporting table             MMSGMMSCMSGIDMAP76          0 rows exported
  1839. . . exporting table             MMSGMMSCMSGIDMAP77          0 rows exported
  1840. . . exporting table             MMSGMMSCMSGIDMAP78          0 rows exported
  1841. . . exporting table             MMSGMMSCMSGIDMAP79          0 rows exported
  1842. . . exporting table             MMSGMMSCMSGIDMAP80          0 rows exported
  1843. . . exporting table             MMSGMMSCMSGIDMAP81          0 rows exported
  1844. . . exporting table             MMSGMMSCMSGIDMAP82          0 rows exported
  1845. . . exporting table             MMSGMMSCMSGIDMAP83          0 rows exported
  1846. . . exporting table             MMSGMMSCMSGIDMAP84          0 rows exported
  1847. . . exporting table             MMSGMMSCMSGIDMAP85          0 rows exported
  1848. . . exporting table             MMSGMMSCMSGIDMAP86          0 rows exported
  1849. . . exporting table             MMSGMMSCMSGIDMAP87          0 rows exported
  1850. . . exporting table             MMSGMMSCMSGIDMAP88          0 rows exported
  1851. . . exporting table             MMSGMMSCMSGIDMAP89          0 rows exported
  1852. . . exporting table             MMSGMMSCMSGIDMAP90          0 rows exported
  1853. . . exporting table             MMSGMMSCMSGIDMAP91          0 rows exported
  1854. . . exporting table             MMSGMMSCMSGIDMAP92          0 rows exported
  1855. . . exporting table             MMSGMMSCMSGIDMAP93          0 rows exported
  1856. . . exporting table             MMSGMMSCMSGIDMAP94          0 rows exported
  1857. . . exporting table             MMSGMMSCMSGIDMAP95          0 rows exported
  1858. . . exporting table             MMSGMMSCMSGIDMAP96          0 rows exported
  1859. . . exporting table             MMSGMMSCMSGIDMAP97          0 rows exported
  1860. . . exporting table             MMSGMMSCMSGIDMAP98          0 rows exported
  1861. . . exporting table             MMSGMMSCMSGIDMAP99          0 rows exported
  1862. . . exporting table          MMSGSVCLOG_0202_1_O_0        256 rows exported
  1863. . . exporting table          MMSGSVCLOG_0202_1_O_1        238 rows exported
  1864. . . exporting table          MMSGSVCLOG_0202_1_O_2        308 rows exported
  1865. . . exporting table          MMSGSVCLOG_0202_1_O_3        406 rows exported
  1866. . . exporting table          MMSGSVCLOG_0202_1_O_4        160 rows exported
  1867. . . exporting table          MMSGSVCLOG_0202_1_O_5        352 rows exported
  1868. . . exporting table          MMSGSVCLOG_0202_1_O_6        276 rows exported
  1869. . . exporting table          MMSGSVCLOG_0202_1_O_7        322 rows exported
  1870. . . exporting table          MMSGSVCLOG_0202_1_O_8        296 rows exported
  1871. . . exporting table          MMSGSVCLOG_0202_1_O_9        428 rows exported
  1872. . . exporting table          MMSGSVCLOG_0203_1_O_4         18 rows exported
  1873. . . exporting table          MMSGSVCLOG_0203_1_O_6         18 rows exported
  1874. . . exporting table          MMSGSVCLOG_0204_1_O_1         20 rows exported
  1875. . . exporting table          MMSGSVCLOG_0204_1_O_2         38 rows exported
  1876. . . exporting table          MMSGSVCLOG_0204_1_O_3         18 rows exported
  1877. . . exporting table          MMSGSVCLOG_0204_1_O_4         46 rows exported
  1878. . . exporting table          MMSGSVCLOG_0204_1_O_5         36 rows exported
  1879. . . exporting table          MMSGSVCLOG_0204_1_O_6         18 rows exported
  1880. . . exporting table          MMSGSVCLOG_0204_1_O_7         20 rows exported
  1881. . . exporting table          MMSGSVCLOG_0204_1_O_8         88 rows exported
  1882. . . exporting table          MMSGSVCLOG_0204_1_O_9         28 rows exported
  1883. . . exporting table        MMSGSVCLOG_20100202_1_S        536 rows exported
  1884. . . exporting table        MMSGSVCLOG_20100203_1_S          4 rows exported
  1885. . . exporting table        MMSGSVCLOG_20100204_1_S         42 rows exported
  1886. . . exporting table                      MMSTARIFF          1 rows exported
  1887. . . exporting table                      MODULECMD         18 rows exported
  1888. . . exporting table                        MODULES         16 rows exported
  1889. . . exporting table                 MONITOREDUSERS          0 rows exported
  1890. . . exporting table                MONITORPERFSTAT          0 rows exported
  1891. . . exporting table               MONTHORDERINFO_0          0 rows exported
  1892. . . exporting table               MONTHORDERINFO_1          0 rows exported
  1893. . . exporting table               MONTHORDERINFO_2          0 rows exported
  1894. . . exporting table               MONTHORDERINFO_3          0 rows exported
  1895. . . exporting table               MONTHORDERINFO_4          0 rows exported
  1896. . . exporting table               MONTHORDERINFO_5          0 rows exported
  1897. . . exporting table               MONTHORDERINFO_6          0 rows exported
  1898. . . exporting table               MONTHORDERINFO_7          0 rows exported
  1899. . . exporting table               MONTHORDERINFO_8          0 rows exported
  1900. . . exporting table               MONTHORDERINFO_9          0 rows exported
  1901. . . exporting table                   NATIVEPREFIX          1 rows exported
  1902. . . exporting table                    NETWORKCODE         24 rows exported
  1903. . . exporting table                NETWORKCODE_BAK         44 rows exported
  1904. . . exporting table              PORTALLOG20100202        124 rows exported
  1905. . . exporting table              PORTALLOG20100203        158 rows exported
  1906. . . exporting table              PORTALLOG20100204        242 rows exported
  1907. . . exporting table              PORTALLOG20100205         42 rows exported
  1908. . . exporting table              PORTALLOG20100208         74 rows exported
  1909. . . exporting table              PORTALLOG20100209         52 rows exported
  1910. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  1911. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  1912. . . exporting table                   REALTIMEFLOW          0 rows exported
  1913. . . exporting table                  RENTALFEEINFO          2 rows exported
  1914. . . exporting table                      RIGHTINFO        247 rows exported
  1915. . . exporting table                           ROLE          4 rows exported
  1916. . . exporting table                   ROLEMAPRIGHT        515 rows exported
  1917. . . exporting table                    ROUTERTABLE          4 rows exported
  1918. . . exporting table                 RPT_BUSYSERVER        107 rows exported
  1919. . . exporting table                  RPT_DELAYTIME          0 rows exported
  1920. . . exporting table         RPT_DELAYTIME_20100202         66 rows exported
  1921. . . exporting table         RPT_DELAYTIME_20100203         12 rows exported
  1922. . . exporting table         RPT_DELAYTIME_20100204         34 rows exported
  1923. . . exporting table         RPT_DELAYTIME_20100205          5 rows exported
  1924. . . exporting table         RPT_DELAYTIME_20100206          1 rows exported
  1925. . . exporting table         RPT_DELAYTIME_20100207          0 rows exported
  1926. . . exporting table         RPT_DELAYTIME_20100208          1 rows exported
  1927. . . exporting table                  RPT_INTERFACE          0 rows exported
  1928. . . exporting table         RPT_INTERFACE_20100202         75 rows exported
  1929. . . exporting table         RPT_INTERFACE_20100203         12 rows exported
  1930. . . exporting table         RPT_INTERFACE_20100204         30 rows exported
  1931. . . exporting table         RPT_INTERFACE_20100205          0 rows exported
  1932. . . exporting table         RPT_INTERFACE_20100206          1 rows exported
  1933. . . exporting table         RPT_INTERFACE_20100207          0 rows exported
  1934. . . exporting table         RPT_INTERFACE_20100208          0 rows exported
  1935. . . exporting table               RPT_MM7_VASPSUCC         10 rows exported
  1936. . . exporting table                   RPT_MMSCSUCC         22 rows exported
  1937. . . exporting table              RPT_MMSC_20100202          0 rows exported
  1938. . . exporting table              RPT_MMSC_20100203          0 rows exported
  1939. . . exporting table              RPT_MMSC_20100204          0 rows exported
  1940. . . exporting table              RPT_MMSC_20100205          0 rows exported
  1941. . . exporting table              RPT_MMSC_20100206          0 rows exported
  1942. . . exporting table              RPT_MMSC_20100207          0 rows exported
  1943. . . exporting table              RPT_MMSC_20100208          0 rows exported
  1944. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  1945. . . exporting table                   RPT_USECOUNT          0 rows exported
  1946. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  1947. . . exporting table              RPT_VASP_20100202          0 rows exported
  1948. . . exporting table              RPT_VASP_20100203          0 rows exported
  1949. . . exporting table              RPT_VASP_20100204          0 rows exported
  1950. . . exporting table              RPT_VASP_20100205          0 rows exported
  1951. . . exporting table              RPT_VASP_20100206          0 rows exported
  1952. . . exporting table              RPT_VASP_20100207          0 rows exported
  1953. . . exporting table              RPT_VASP_20100208          0 rows exported
  1954. . . exporting table        SERVICEACCOUNT_20100202        131 rows exported
  1955. . . exporting table        SERVICEACCOUNT_20100203         20 rows exported
  1956. . . exporting table        SERVICEACCOUNT_20100204         66 rows exported
  1957. . . exporting table        SERVICEACCOUNT_20100205          5 rows exported
  1958. . . exporting table        SERVICEACCOUNT_20100206          6 rows exported
  1959. . . exporting table        SERVICEACCOUNT_20100207          0 rows exported
  1960. . . exporting table        SERVICEACCOUNT_20100208          4 rows exported
  1961. . . exporting table                         SIINFO          0 rows exported
  1962. . . exporting table                    SMSNOTEINFO          4 rows exported
  1963. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  1964. . . exporting table                SPECIALCUSTINFO          0 rows exported
  1965. . . exporting table                  SUBMITRESINFO        128 rows exported
  1966. . . exporting table                    SYSOPERATOR         13 rows exported
  1967. . . exporting table                SYSTEMPARAMETER        333 rows exported
  1968. . . exporting table            SYSTEMPARAMETER_BAK        664 rows exported
  1969. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  1970. . . exporting table              TERMINALBLACKLIST          0 rows exported
  1971. . . exporting table              TMP_ATTACH_RESULT        196 rows exported
  1972. . . exporting table                TMP_BASE_RESULT        228 rows exported
  1973. . . exporting table                     TMP_RESULT          0 rows exported
  1974. . . exporting table                   TMP_RESULTID          0 rows exported
  1975. . . exporting table                  TMP_RESULTMEM          0 rows exported
  1976. . . exporting table                   TRACEMSGINFO          0 rows exported
  1977. . . exporting table                      UAPROFILE          2 rows exported
  1978. . . exporting table                       VASPINFO          1 rows exported
  1979. . . exporting table                  VASPLEVELINFO          1 rows exported
  1980. . . exporting table               VASPPRIORITYINFO          5 rows exported
  1981. . . exporting table                VASPRIORITYINFO          5 rows exported
  1982. . . exporting table                VASPSERVICE_SUP          6 rows exported
  1983. . . exporting table              VASSERVEDAREALIST          1 rows exported
  1984. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  1985. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  1986. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  1987. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  1988. . . exporting table                    VPNCORP_100          3 rows exported
  1989. . . exporting table                    VPNCORP_300          3 rows exported
  1990. . . exporting table                  VPNSUBSCRIBER          0 rows exported
  1991. . . exporting table                 VPNUNITECORPID          0 rows exported
  1992. . about to export AIXTEST's tables via Conventional Path ...
  1993. . . exporting table                       AREAINFO        374 rows exported
  1994. . . exporting table                   AREAINFO_BAK        748 rows exported
  1995. . . exporting table                     AREANUMBER        364 rows exported
  1996. . . exporting table               AREANUMBERPREFIX          3 rows exported
  1997. . . exporting table                 AREANUMBER_BAK        728 rows exported
  1998. . . exporting table                BEARERVALUELIST          3 rows exported
  1999. . . exporting table                    CARRIERINFO          1 rows exported
  2000. . . exporting table               CHARGINGKPCONFIG         28 rows exported
  2001. . . exporting table                 CONNECTIONINFO          0 rows exported
  2002. . . exporting table                    COUNTRYCODE         21 rows exported
  2003. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  2004. . . exporting table               DETAILSTATUSCODE        247 rows exported
  2005. . . exporting table                     DNSSRVINFO          0 rows exported
  2006. . . exporting table                  DRMACCESSCODE          0 rows exported
  2007. . . exporting table                     ECTOSIINFO          0 rows exported
  2008. . . exporting table                    ENUMSRVINFO          1 rows exported
  2009. . . exporting table                  EXP_CACHESTAT          0 rows exported
  2010. . . exporting table                    HISTORYFLOW          0 rows exported
  2011. . . exporting table      INTERFACEACCOUNT_20100324         72 rows exported
  2012. . . exporting table      INTERFACEACCOUNT_20100325        263 rows exported
  2013. . . exporting table      INTERFACEACCOUNT_20100326        120 rows exported
  2014. . . exporting table      INTERFACEACCOUNT_20100327        359 rows exported
  2015. . . exporting table      INTERFACEACCOUNT_20100328        113 rows exported
  2016. . . exporting table      INTERFACEACCOUNT_20100329        123 rows exported
  2017. . . exporting table      INTERFACEACCOUNT_20100330        751 rows exported
  2018. . . exporting table      INTERFACEACCOUNT_20100331        843 rows exported
  2019. . . exporting table      INTERFACEACCOUNT_20100401          0 rows exported
  2020. . . exporting table      INTERFACEACCOUNT_20100402         42 rows exported
  2021. . . exporting table      INTERFACEACCOUNT_20100403          0 rows exported
  2022. . . exporting table      INTERFACEACCOUNT_20100404          0 rows exported
  2023. . . exporting table      INTERFACEACCOUNT_20100405          0 rows exported
  2024. . . exporting table      INTERFACEACCOUNT_20100406          0 rows exported
  2025. . . exporting table      INTERFACEACCOUNT_20100407          0 rows exported
  2026. . . exporting table      INTERFACEACCOUNT_20100416         86 rows exported
  2027. . . exporting table      INTERFACEACCOUNT_20100417          0 rows exported
  2028. . . exporting table      INTERFACEACCOUNT_20100420          0 rows exported
  2029. . . exporting table      INTERFACEACCOUNT_20100421          0 rows exported
  2030. . . exporting table                    INTERPREFIX         21 rows exported
  2031. . . exporting table               IPRANGEPARTITION         93 rows exported
  2032. . . exporting table                        MESSAGE          0 rows exported
  2033. . . exporting table               MESSAGEREFERENCE          0 rows exported
  2034. . . exporting table            MESSAGESENDSCHEDULE         15 rows exported
  2035. . . exporting table                     MIBLEAFINT         79 rows exported
  2036. . . exporting table                     MIBLEAFSTR         13 rows exported
  2037. . . exporting table                       MISCINFO          2 rows exported
  2038. . . exporting table                MISCROUTERTABLE          8 rows exported
  2039. . . exporting table                      MMBOXTYPE          5 rows exported
  2040. . . exporting table           MMINTERFACELEVELINFO          2 rows exported
  2041. . . exporting table                       MMSCINFO          2 rows exported
  2042. . . exporting table                     MMSCIPINFO          0 rows exported
  2043. . . exporting table             MMSGMMSCMSGIDMAP00          0 rows exported
  2044. . . exporting table             MMSGMMSCMSGIDMAP01          0 rows exported
  2045. . . exporting table             MMSGMMSCMSGIDMAP02          0 rows exported
  2046. . . exporting table             MMSGMMSCMSGIDMAP03          0 rows exported
  2047. . . exporting table             MMSGMMSCMSGIDMAP04          0 rows exported
  2048. . . exporting table             MMSGMMSCMSGIDMAP05          0 rows exported
  2049. . . exporting table             MMSGMMSCMSGIDMAP06          0 rows exported
  2050. . . exporting table             MMSGMMSCMSGIDMAP07          0 rows exported
  2051. . . exporting table             MMSGMMSCMSGIDMAP08          0 rows exported
  2052. . . exporting table             MMSGMMSCMSGIDMAP09          0 rows exported
  2053. . . exporting table             MMSGMMSCMSGIDMAP10          0 rows exported
  2054. . . exporting table             MMSGMMSCMSGIDMAP11          0 rows exported
  2055. . . exporting table             MMSGMMSCMSGIDMAP12          0 rows exported
  2056. . . exporting table             MMSGMMSCMSGIDMAP13          0 rows exported
  2057. . . exporting table             MMSGMMSCMSGIDMAP14          0 rows exported
  2058. . . exporting table             MMSGMMSCMSGIDMAP15          0 rows exported
  2059. . . exporting table             MMSGMMSCMSGIDMAP16          0 rows exported
  2060. . . exporting table             MMSGMMSCMSGIDMAP17          0 rows exported
  2061. . . exporting table             MMSGMMSCMSGIDMAP18          0 rows exported
  2062. . . exporting table             MMSGMMSCMSGIDMAP19          0 rows exported
  2063. . . exporting table             MMSGMMSCMSGIDMAP20          0 rows exported
  2064. . . exporting table             MMSGMMSCMSGIDMAP21          0 rows exported
  2065. . . exporting table             MMSGMMSCMSGIDMAP22          0 rows exported
  2066. . . exporting table             MMSGMMSCMSGIDMAP23          0 rows exported
  2067. . . exporting table             MMSGMMSCMSGIDMAP24          0 rows exported
  2068. . . exporting table             MMSGMMSCMSGIDMAP25          0 rows exported
  2069. . . exporting table             MMSGMMSCMSGIDMAP26          0 rows exported
  2070. . . exporting table             MMSGMMSCMSGIDMAP27          0 rows exported
  2071. . . exporting table             MMSGMMSCMSGIDMAP28          0 rows exported
  2072. . . exporting table             MMSGMMSCMSGIDMAP29          0 rows exported
  2073. . . exporting table             MMSGMMSCMSGIDMAP30          0 rows exported
  2074. . . exporting table             MMSGMMSCMSGIDMAP31          0 rows exported
  2075. . . exporting table             MMSGMMSCMSGIDMAP32          0 rows exported
  2076. . . exporting table             MMSGMMSCMSGIDMAP33          0 rows exported
  2077. . . exporting table             MMSGMMSCMSGIDMAP34          0 rows exported
  2078. . . exporting table             MMSGMMSCMSGIDMAP35          0 rows exported
  2079. . . exporting table             MMSGMMSCMSGIDMAP36          0 rows exported
  2080. . . exporting table             MMSGMMSCMSGIDMAP37          0 rows exported
  2081. . . exporting table             MMSGMMSCMSGIDMAP38          0 rows exported
  2082. . . exporting table             MMSGMMSCMSGIDMAP39          0 rows exported
  2083. . . exporting table             MMSGMMSCMSGIDMAP40          0 rows exported
  2084. . . exporting table             MMSGMMSCMSGIDMAP41          0 rows exported
  2085. . . exporting table             MMSGMMSCMSGIDMAP42          0 rows exported
  2086. . . exporting table             MMSGMMSCMSGIDMAP43          0 rows exported
  2087. . . exporting table             MMSGMMSCMSGIDMAP44          0 rows exported
  2088. . . exporting table             MMSGMMSCMSGIDMAP45          0 rows exported
  2089. . . exporting table             MMSGMMSCMSGIDMAP46          0 rows exported
  2090. . . exporting table             MMSGMMSCMSGIDMAP47          0 rows exported
  2091. . . exporting table             MMSGMMSCMSGIDMAP48          0 rows exported
  2092. . . exporting table             MMSGMMSCMSGIDMAP49          0 rows exported
  2093. . . exporting table             MMSGMMSCMSGIDMAP50          0 rows exported
  2094. . . exporting table             MMSGMMSCMSGIDMAP51          0 rows exported
  2095. . . exporting table             MMSGMMSCMSGIDMAP52          0 rows exported
  2096. . . exporting table             MMSGMMSCMSGIDMAP53          0 rows exported
  2097. . . exporting table             MMSGMMSCMSGIDMAP54          0 rows exported
  2098. . . exporting table             MMSGMMSCMSGIDMAP55          0 rows exported
  2099. . . exporting table             MMSGMMSCMSGIDMAP56          0 rows exported
  2100. . . exporting table             MMSGMMSCMSGIDMAP57          0 rows exported
  2101. . . exporting table             MMSGMMSCMSGIDMAP58          0 rows exported
  2102. . . exporting table             MMSGMMSCMSGIDMAP59          0 rows exported
  2103. . . exporting table             MMSGMMSCMSGIDMAP60          0 rows exported
  2104. . . exporting table             MMSGMMSCMSGIDMAP61          0 rows exported
  2105. . . exporting table             MMSGMMSCMSGIDMAP62          0 rows exported
  2106. . . exporting table             MMSGMMSCMSGIDMAP63          0 rows exported
  2107. . . exporting table             MMSGMMSCMSGIDMAP64          0 rows exported
  2108. . . exporting table             MMSGMMSCMSGIDMAP65          0 rows exported
  2109. . . exporting table             MMSGMMSCMSGIDMAP66          0 rows exported
  2110. . . exporting table             MMSGMMSCMSGIDMAP67          0 rows exported
  2111. . . exporting table             MMSGMMSCMSGIDMAP68          0 rows exported
  2112. . . exporting table             MMSGMMSCMSGIDMAP69          0 rows exported
  2113. . . exporting table             MMSGMMSCMSGIDMAP70          0 rows exported
  2114. . . exporting table             MMSGMMSCMSGIDMAP71          0 rows exported
  2115. . . exporting table             MMSGMMSCMSGIDMAP72          0 rows exported
  2116. . . exporting table             MMSGMMSCMSGIDMAP73          0 rows exported
  2117. . . exporting table             MMSGMMSCMSGIDMAP74          0 rows exported
  2118. . . exporting table             MMSGMMSCMSGIDMAP75          0 rows exported
  2119. . . exporting table             MMSGMMSCMSGIDMAP76          0 rows exported
  2120. . . exporting table             MMSGMMSCMSGIDMAP77          0 rows exported
  2121. . . exporting table             MMSGMMSCMSGIDMAP78          0 rows exported
  2122. . . exporting table             MMSGMMSCMSGIDMAP79          0 rows exported
  2123. . . exporting table             MMSGMMSCMSGIDMAP80          0 rows exported
  2124. . . exporting table             MMSGMMSCMSGIDMAP81          0 rows exported
  2125. . . exporting table             MMSGMMSCMSGIDMAP82          0 rows exported
  2126. . . exporting table             MMSGMMSCMSGIDMAP83          0 rows exported
  2127. . . exporting table             MMSGMMSCMSGIDMAP84          0 rows exported
  2128. . . exporting table             MMSGMMSCMSGIDMAP85          0 rows exported
  2129. . . exporting table             MMSGMMSCMSGIDMAP86          0 rows exported
  2130. . . exporting table             MMSGMMSCMSGIDMAP87          0 rows exported
  2131. . . exporting table             MMSGMMSCMSGIDMAP88          0 rows exported
  2132. . . exporting table             MMSGMMSCMSGIDMAP89          0 rows exported
  2133. . . exporting table             MMSGMMSCMSGIDMAP90          0 rows exported
  2134. . . exporting table             MMSGMMSCMSGIDMAP91          0 rows exported
  2135. . . exporting table             MMSGMMSCMSGIDMAP92          0 rows exported
  2136. . . exporting table             MMSGMMSCMSGIDMAP93          0 rows exported
  2137. . . exporting table             MMSGMMSCMSGIDMAP94          0 rows exported
  2138. . . exporting table             MMSGMMSCMSGIDMAP95          0 rows exported
  2139. . . exporting table             MMSGMMSCMSGIDMAP96          0 rows exported
  2140. . . exporting table             MMSGMMSCMSGIDMAP97          0 rows exported
  2141. . . exporting table             MMSGMMSCMSGIDMAP98          0 rows exported
  2142. . . exporting table             MMSGMMSCMSGIDMAP99          0 rows exported
  2143. . . exporting table          MMSGSVCLOG_0324_1_O_0         92 rows exported
  2144. . . exporting table          MMSGSVCLOG_0324_1_O_1         46 rows exported
  2145. . . exporting table          MMSGSVCLOG_0324_1_O_2         60 rows exported
  2146. . . exporting table          MMSGSVCLOG_0324_1_O_3         16 rows exported
  2147. . . exporting table          MMSGSVCLOG_0324_1_O_4         46 rows exported
  2148. . . exporting table          MMSGSVCLOG_0324_1_O_5         46 rows exported
  2149. . . exporting table          MMSGSVCLOG_0324_1_O_6         48 rows exported
  2150. . . exporting table          MMSGSVCLOG_0324_1_O_7         20 rows exported
  2151. . . exporting table          MMSGSVCLOG_0324_1_O_8         78 rows exported
  2152. . . exporting table          MMSGSVCLOG_0324_1_O_9        138 rows exported
  2153. . . exporting table          MMSGSVCLOG_0325_1_O_0        116 rows exported
  2154. . . exporting table          MMSGSVCLOG_0325_1_O_1         58 rows exported
  2155. . . exporting table          MMSGSVCLOG_0325_1_O_2         50 rows exported
  2156. . . exporting table          MMSGSVCLOG_0325_1_O_3         74 rows exported
  2157. . . exporting table          MMSGSVCLOG_0325_1_O_4         78 rows exported
  2158. . . exporting table          MMSGSVCLOG_0325_1_O_5         80 rows exported
  2159. . . exporting table          MMSGSVCLOG_0325_1_O_6         96 rows exported
  2160. . . exporting table          MMSGSVCLOG_0325_1_O_7         28 rows exported
  2161. . . exporting table          MMSGSVCLOG_0325_1_O_8         58 rows exported
  2162. . . exporting table          MMSGSVCLOG_0325_1_O_9        112 rows exported
  2163. . . exporting table          MMSGSVCLOG_0326_1_O_0        192 rows exported
  2164. . . exporting table          MMSGSVCLOG_0326_1_O_1        296 rows exported
  2165. . . exporting table          MMSGSVCLOG_0326_1_O_2        272 rows exported
  2166. . . exporting table          MMSGSVCLOG_0326_1_O_3        226 rows exported
  2167. . . exporting table          MMSGSVCLOG_0326_1_O_4        178 rows exported
  2168. . . exporting table          MMSGSVCLOG_0326_1_O_5        230 rows exported
  2169. . . exporting table          MMSGSVCLOG_0326_1_O_6        284 rows exported
  2170. . . exporting table          MMSGSVCLOG_0326_1_O_7        282 rows exported
  2171. . . exporting table          MMSGSVCLOG_0326_1_O_8        258 rows exported
  2172. . . exporting table          MMSGSVCLOG_0326_1_O_9        238 rows exported
  2173. . . exporting table          MMSGSVCLOG_0327_1_O_0       2450 rows exported
  2174. . . exporting table          MMSGSVCLOG_0327_1_O_1       2176 rows exported
  2175. . . exporting table          MMSGSVCLOG_0327_1_O_2       2734 rows exported
  2176. . . exporting table          MMSGSVCLOG_0327_1_O_3       2702 rows exported
  2177. . . exporting table          MMSGSVCLOG_0327_1_O_4       3590 rows exported
  2178. . . exporting table          MMSGSVCLOG_0327_1_O_5       3924 rows exported
  2179. . . exporting table          MMSGSVCLOG_0327_1_O_6       3432 rows exported
  2180. . . exporting table          MMSGSVCLOG_0327_1_O_7       2946 rows exported
  2181. . . exporting table          MMSGSVCLOG_0327_1_O_8       2482 rows exported
  2182. . . exporting table          MMSGSVCLOG_0327_1_O_9       2118 rows exported
  2183. . . exporting table          MMSGSVCLOG_0328_1_O_0       1614 rows exported
  2184. . . exporting table          MMSGSVCLOG_0328_1_O_1       1360 rows exported
  2185. . . exporting table          MMSGSVCLOG_0328_1_O_2       1390 rows exported
  2186. . . exporting table          MMSGSVCLOG_0328_1_O_3       1684 rows exported
  2187. . . exporting table          MMSGSVCLOG_0328_1_O_4       1598 rows exported
  2188. . . exporting table          MMSGSVCLOG_0328_1_O_5       1814 rows exported
  2189. . . exporting table          MMSGSVCLOG_0328_1_O_6       1758 rows exported
  2190. . . exporting table          MMSGSVCLOG_0328_1_O_7       1624 rows exported
  2191. . . exporting table          MMSGSVCLOG_0328_1_O_8       1386 rows exported
  2192. . . exporting table          MMSGSVCLOG_0328_1_O_9       1454 rows exported
  2193. . . exporting table          MMSGSVCLOG_0329_1_O_0       1250 rows exported
  2194. . . exporting table          MMSGSVCLOG_0329_1_O_1       1344 rows exported
  2195. . . exporting table          MMSGSVCLOG_0329_1_O_2       1367 rows exported
  2196. . . exporting table          MMSGSVCLOG_0329_1_O_3       1399 rows exported
  2197. . . exporting table          MMSGSVCLOG_0329_1_O_4       1208 rows exported
  2198. . . exporting table          MMSGSVCLOG_0329_1_O_5       1385 rows exported
  2199. . . exporting table          MMSGSVCLOG_0329_1_O_6       1351 rows exported
  2200. . . exporting table          MMSGSVCLOG_0329_1_O_7       1630 rows exported
  2201. . . exporting table          MMSGSVCLOG_0329_1_O_8       1420 rows exported
  2202. . . exporting table          MMSGSVCLOG_0329_1_O_9       1267 rows exported
  2203. . . exporting table          MMSGSVCLOG_0330_1_O_0       1545 rows exported
  2204. . . exporting table          MMSGSVCLOG_0330_1_O_1       1706 rows exported
  2205. . . exporting table          MMSGSVCLOG_0330_1_O_2       1470 rows exported
  2206. . . exporting table          MMSGSVCLOG_0330_1_O_3       1309 rows exported
  2207. . . exporting table          MMSGSVCLOG_0330_1_O_4       1219 rows exported
  2208. . . exporting table          MMSGSVCLOG_0330_1_O_5       1456 rows exported
  2209. . . exporting table          MMSGSVCLOG_0330_1_O_6       1384 rows exported
  2210. . . exporting table          MMSGSVCLOG_0330_1_O_7       1539 rows exported
  2211. . . exporting table          MMSGSVCLOG_0330_1_O_8       1401 rows exported
  2212. . . exporting table          MMSGSVCLOG_0330_1_O_9       1540 rows exported
  2213. . . exporting table          MMSGSVCLOG_0331_1_O_0      17978 rows exported
  2214. . . exporting table          MMSGSVCLOG_0331_1_O_1      18403 rows exported
  2215. . . exporting table          MMSGSVCLOG_0331_1_O_2      18454 rows exported
  2216. . . exporting table          MMSGSVCLOG_0331_1_O_3      18122 rows exported
  2217. . . exporting table          MMSGSVCLOG_0331_1_O_4      17853 rows exported
  2218. . . exporting table          MMSGSVCLOG_0331_1_O_5      17472 rows exported
  2219. . . exporting table          MMSGSVCLOG_0331_1_O_6      17510 rows exported
  2220. . . exporting table          MMSGSVCLOG_0331_1_O_7      17667 rows exported
  2221. . . exporting table          MMSGSVCLOG_0331_1_O_8      18157 rows exported
  2222. . . exporting table          MMSGSVCLOG_0331_1_O_9      18110 rows exported
  2223. . . exporting table          MMSGSVCLOG_0401_1_O_0         78 rows exported
  2224. . . exporting table          MMSGSVCLOG_0401_1_O_1        143 rows exported
  2225. . . exporting table          MMSGSVCLOG_0401_1_O_2         57 rows exported
  2226. . . exporting table          MMSGSVCLOG_0401_1_O_3         39 rows exported
  2227. . . exporting table          MMSGSVCLOG_0401_1_O_4         56 rows exported
  2228. . . exporting table          MMSGSVCLOG_0401_1_O_5        192 rows exported
  2229. . . exporting table          MMSGSVCLOG_0401_1_O_6         87 rows exported
  2230. . . exporting table          MMSGSVCLOG_0401_1_O_7        135 rows exported
  2231. . . exporting table          MMSGSVCLOG_0401_1_O_8        155 rows exported
  2232. . . exporting table          MMSGSVCLOG_0401_1_O_9        103 rows exported
  2233. . . exporting table          MMSGSVCLOG_0402_1_O_2         36 rows exported
  2234. . . exporting table          MMSGSVCLOG_0402_1_O_3         42 rows exported
  2235. . . exporting table          MMSGSVCLOG_0402_1_O_6         16 rows exported
  2236. . . exporting table          MMSGSVCLOG_0402_1_O_8         16 rows exported
  2237. . . exporting table        MMSGSVCLOG_20100324_1_S         86 rows exported
  2238. . . exporting table        MMSGSVCLOG_20100325_1_S        108 rows exported
  2239. . . exporting table        MMSGSVCLOG_20100326_1_S        404 rows exported
  2240. . . exporting table        MMSGSVCLOG_20100327_1_S       4118 rows exported
  2241. . . exporting table        MMSGSVCLOG_20100328_1_S       2322 rows exported
  2242. . . exporting table        MMSGSVCLOG_20100329_1_S       2076 rows exported
  2243. . . exporting table        MMSGSVCLOG_20100330_1_S       2241 rows exported
  2244. . . exporting table        MMSGSVCLOG_20100331_1_S      23131 rows exported
  2245. . . exporting table        MMSGSVCLOG_20100401_1_S        168 rows exported
  2246. . . exporting table        MMSGSVCLOG_20100402_1_S         16 rows exported
  2247. . . exporting table                      MMSTARIFF          1 rows exported
  2248. . . exporting table                      MODULECMD         18 rows exported
  2249. . . exporting table                        MODULES         16 rows exported
  2250. . . exporting table                 MONITOREDUSERS          0 rows exported
  2251. . . exporting table                MONITORPERFSTAT          0 rows exported
  2252. . . exporting table               MONTHORDERINFO_0          0 rows exported
  2253. . . exporting table               MONTHORDERINFO_1          0 rows exported
  2254. . . exporting table               MONTHORDERINFO_2          0 rows exported
  2255. . . exporting table               MONTHORDERINFO_3          0 rows exported
  2256. . . exporting table               MONTHORDERINFO_4          0 rows exported
  2257. . . exporting table               MONTHORDERINFO_5          0 rows exported
  2258. . . exporting table               MONTHORDERINFO_6          0 rows exported
  2259. . . exporting table               MONTHORDERINFO_7          0 rows exported
  2260. . . exporting table               MONTHORDERINFO_8          0 rows exported
  2261. . . exporting table               MONTHORDERINFO_9          0 rows exported
  2262. . . exporting table                   NATIVEPREFIX          1 rows exported
  2263. . . exporting table                    NETWORKCODE         24 rows exported
  2264. . . exporting table                NETWORKCODE_BAK         44 rows exported
  2265. . . exporting table              PORTALLOG20100323         22 rows exported
  2266. . . exporting table              PORTALLOG20100324         66 rows exported
  2267. . . exporting table              PORTALLOG20100325        200 rows exported
  2268. . . exporting table              PORTALLOG20100326         74 rows exported
  2269. . . exporting table              PORTALLOG20100327        164 rows exported
  2270. . . exporting table              PORTALLOG20100329        176 rows exported
  2271. . . exporting table              PORTALLOG20100330        133 rows exported
  2272. . . exporting table              PORTALLOG20100331         90 rows exported
  2273. . . exporting table              PORTALLOG20100402         64 rows exported
  2274. . . exporting table              PORTALLOG20100416         32 rows exported
  2275. . . exporting table              PORTALLOG20100420         30 rows exported
  2276. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  2277. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  2278. . . exporting table                   REALTIMEFLOW          0 rows exported
  2279. . . exporting table                  RENTALFEEINFO          1 rows exported
  2280. . . exporting table                      RIGHTINFO        250 rows exported
  2281. . . exporting table                  RIGHTINFO_BAK        494 rows exported
  2282. . . exporting table                           ROLE          4 rows exported
  2283. . . exporting table                   ROLEMAPRIGHT        519 rows exported
  2284. . . exporting table               ROLEMAPRIGHT_BAK       1030 rows exported
  2285. . . exporting table                    ROUTERTABLE          5 rows exported
  2286. . . exporting table                 RPT_BUSYSERVER         56 rows exported
  2287. . . exporting table                  RPT_DELAYTIME          0 rows exported
  2288. . . exporting table         RPT_DELAYTIME_20100324         24 rows exported
  2289. . . exporting table         RPT_DELAYTIME_20100325         86 rows exported
  2290. . . exporting table         RPT_DELAYTIME_20100326         36 rows exported
  2291. . . exporting table         RPT_DELAYTIME_20100327        122 rows exported
  2292. . . exporting table         RPT_DELAYTIME_20100328         40 rows exported
  2293. . . exporting table         RPT_DELAYTIME_20100329         37 rows exported
  2294. . . exporting table         RPT_DELAYTIME_20100330        246 rows exported
  2295. . . exporting table         RPT_DELAYTIME_20100331        242 rows exported
  2296. . . exporting table         RPT_DELAYTIME_20100401          0 rows exported
  2297. . . exporting table         RPT_DELAYTIME_20100402         11 rows exported
  2298. . . exporting table         RPT_DELAYTIME_20100403          0 rows exported
  2299. . . exporting table         RPT_DELAYTIME_20100404          0 rows exported
  2300. . . exporting table         RPT_DELAYTIME_20100405          0 rows exported
  2301. . . exporting table         RPT_DELAYTIME_20100406          0 rows exported
  2302. . . exporting table         RPT_DELAYTIME_20100407          0 rows exported
  2303. . . exporting table         RPT_DELAYTIME_20100416         18 rows exported
  2304. . . exporting table         RPT_DELAYTIME_20100417          0 rows exported
  2305. . . exporting table         RPT_DELAYTIME_20100420          0 rows exported
  2306. . . exporting table         RPT_DELAYTIME_20100421          0 rows exported
  2307. . . exporting table                  RPT_INTERFACE          0 rows exported
  2308. . . exporting table         RPT_INTERFACE_20100324         36 rows exported
  2309. . . exporting table         RPT_INTERFACE_20100325        116 rows exported
  2310. . . exporting table         RPT_INTERFACE_20100326         40 rows exported
  2311. . . exporting table         RPT_INTERFACE_20100327        203 rows exported
  2312. . . exporting table         RPT_INTERFACE_20100328         63 rows exported
  2313. . . exporting table         RPT_INTERFACE_20100329         44 rows exported
  2314. . . exporting table         RPT_INTERFACE_20100330        456 rows exported
  2315. . . exporting table         RPT_INTERFACE_20100331        229 rows exported
  2316. . . exporting table         RPT_INTERFACE_20100401          0 rows exported
  2317. . . exporting table         RPT_INTERFACE_20100402         16 rows exported
  2318. . . exporting table         RPT_INTERFACE_20100403          0 rows exported
  2319. . . exporting table         RPT_INTERFACE_20100404          0 rows exported
  2320. . . exporting table         RPT_INTERFACE_20100405          0 rows exported
  2321. . . exporting table         RPT_INTERFACE_20100406          0 rows exported
  2322. . . exporting table         RPT_INTERFACE_20100407          0 rows exported
  2323. . . exporting table         RPT_INTERFACE_20100416         52 rows exported
  2324. . . exporting table         RPT_INTERFACE_20100417          0 rows exported
  2325. . . exporting table         RPT_INTERFACE_20100420          0 rows exported
  2326. . . exporting table         RPT_INTERFACE_20100421          0 rows exported
  2327. . . exporting table               RPT_MM7_VASPSUCC          6 rows exported
  2328. . . exporting table                   RPT_MMSCSUCC          8 rows exported
  2329. . . exporting table              RPT_MMSC_20100324          0 rows exported
  2330. . . exporting table              RPT_MMSC_20100325          0 rows exported
  2331. . . exporting table              RPT_MMSC_20100326          0 rows exported
  2332. . . exporting table              RPT_MMSC_20100327          0 rows exported
  2333. . . exporting table              RPT_MMSC_20100328          0 rows exported
  2334. . . exporting table              RPT_MMSC_20100329          0 rows exported
  2335. . . exporting table              RPT_MMSC_20100330          0 rows exported
  2336. . . exporting table              RPT_MMSC_20100331          0 rows exported
  2337. . . exporting table              RPT_MMSC_20100401          0 rows exported
  2338. . . exporting table              RPT_MMSC_20100402          0 rows exported
  2339. . . exporting table              RPT_MMSC_20100403          0 rows exported
  2340. . . exporting table              RPT_MMSC_20100404          0 rows exported
  2341. . . exporting table              RPT_MMSC_20100405          0 rows exported
  2342. . . exporting table              RPT_MMSC_20100406          0 rows exported
  2343. . . exporting table              RPT_MMSC_20100407          0 rows exported
  2344. . . exporting table              RPT_MMSC_20100416          0 rows exported
  2345. . . exporting table              RPT_MMSC_20100417          0 rows exported
  2346. . . exporting table              RPT_MMSC_20100420          0 rows exported
  2347. . . exporting table              RPT_MMSC_20100421          0 rows exported
  2348. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  2349. . . exporting table                   RPT_USECOUNT          0 rows exported
  2350. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  2351. . . exporting table              RPT_VASP_20100324          0 rows exported
  2352. . . exporting table              RPT_VASP_20100325          0 rows exported
  2353. . . exporting table              RPT_VASP_20100326          0 rows exported
  2354. . . exporting table              RPT_VASP_20100327          0 rows exported
  2355. . . exporting table              RPT_VASP_20100328          0 rows exported
  2356. . . exporting table              RPT_VASP_20100329          0 rows exported
  2357. . . exporting table              RPT_VASP_20100330          0 rows exported
  2358. . . exporting table              RPT_VASP_20100331          0 rows exported
  2359. . . exporting table              RPT_VASP_20100401          0 rows exported
  2360. . . exporting table              RPT_VASP_20100402          0 rows exported
  2361. . . exporting table              RPT_VASP_20100403          0 rows exported
  2362. . . exporting table              RPT_VASP_20100404          0 rows exported
  2363. . . exporting table              RPT_VASP_20100405          0 rows exported
  2364. . . exporting table              RPT_VASP_20100406          0 rows exported
  2365. . . exporting table              RPT_VASP_20100407          0 rows exported
  2366. . . exporting table              RPT_VASP_20100416          0 rows exported
  2367. . . exporting table              RPT_VASP_20100417          0 rows exported
  2368. . . exporting table              RPT_VASP_20100420          0 rows exported
  2369. . . exporting table              RPT_VASP_20100421          0 rows exported
  2370. . . exporting table        SERVICEACCOUNT_20100324         48 rows exported
  2371. . . exporting table        SERVICEACCOUNT_20100325        117 rows exported
  2372. . . exporting table        SERVICEACCOUNT_20100326         65 rows exported
  2373. . . exporting table        SERVICEACCOUNT_20100327        200 rows exported
  2374. . . exporting table        SERVICEACCOUNT_20100328         71 rows exported
  2375. . . exporting table        SERVICEACCOUNT_20100329         96 rows exported
  2376. . . exporting table        SERVICEACCOUNT_20100330        204 rows exported
  2377. . . exporting table        SERVICEACCOUNT_20100331        516 rows exported
  2378. . . exporting table        SERVICEACCOUNT_20100401          0 rows exported
  2379. . . exporting table        SERVICEACCOUNT_20100402         19 rows exported
  2380. . . exporting table        SERVICEACCOUNT_20100403          0 rows exported
  2381. . . exporting table        SERVICEACCOUNT_20100404          0 rows exported
  2382. . . exporting table        SERVICEACCOUNT_20100405          0 rows exported
  2383. . . exporting table        SERVICEACCOUNT_20100406          0 rows exported
  2384. . . exporting table        SERVICEACCOUNT_20100407          0 rows exported
  2385. . . exporting table        SERVICEACCOUNT_20100416         33 rows exported
  2386. . . exporting table        SERVICEACCOUNT_20100417          0 rows exported
  2387. . . exporting table        SERVICEACCOUNT_20100420          0 rows exported
  2388. . . exporting table        SERVICEACCOUNT_20100421          0 rows exported
  2389. . . exporting table                         SIINFO          0 rows exported
  2390. . . exporting table                    SMSNOTEINFO          4 rows exported
  2391. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  2392. . . exporting table                SPECIALCUSTINFO          0 rows exported
  2393. . . exporting table                  SUBMITRESINFO        128 rows exported
  2394. . . exporting table                    SYSOPERATOR         13 rows exported
  2395. . . exporting table                SYSTEMPARAMETER        340 rows exported
  2396. . . exporting table            SYSTEMPARAMETER_BAK        662 rows exported
  2397. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  2398. . . exporting table              TERMINALBLACKLIST          2 rows exported
  2399. . . exporting table              TMP_ATTACH_RESULT          0 rows exported
  2400. . . exporting table                TMP_BASE_RESULT          0 rows exported
  2401. . . exporting table                     TMP_RESULT          0 rows exported
  2402. . . exporting table                   TMP_RESULTID          0 rows exported
  2403. . . exporting table                  TMP_RESULTMEM          0 rows exported
  2404. . . exporting table                   TRACEMSGINFO          0 rows exported
  2405. . . exporting table                      UAPROFILE          2 rows exported
  2406. . . exporting table                       VASPINFO         12 rows exported
  2407. . . exporting table                  VASPLEVELINFO          2 rows exported
  2408. . . exporting table               VASPPRIORITYINFO          5 rows exported
  2409. . . exporting table                VASPRIORITYINFO          5 rows exported
  2410. . . exporting table                VASPSERVICE_SUP         15 rows exported
  2411. . . exporting table              VASSERVEDAREALIST          1 rows exported
  2412. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  2413. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  2414. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  2415. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  2416. . . exporting table                    VPNCORP_100          3 rows exported
  2417. . . exporting table                    VPNCORP_300          3 rows exported
  2418. . . exporting table                  VPNSUBSCRIBER          6 rows exported
  2419. . . exporting table                 VPNUNITECORPID          1 rows exported
  2420. . about to export CHYJ's tables via Conventional Path ...
  2421. . . exporting table                       AREAINFO        374 rows exported
  2422. . . exporting table                     AREANUMBER        364 rows exported
  2423. . . exporting table               AREANUMBERPREFIX      36158 rows exported
  2424. . . exporting table                BEARERVALUELIST          3 rows exported
  2425. . . exporting table                    CARRIERINFO          1 rows exported
  2426. . . exporting table               CHARGINGKPCONFIG         28 rows exported
  2427. . . exporting table                 CONNECTIONINFO          0 rows exported
  2428. . . exporting table                    COUNTRYCODE         21 rows exported
  2429. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  2430. . . exporting table               DETAILSTATUSCODE        247 rows exported
  2431. . . exporting table                     DNSSRVINFO          0 rows exported
  2432. . . exporting table                  DRMACCESSCODE          0 rows exported
  2433. . . exporting table                     ECTOSIINFO          0 rows exported
  2434. . . exporting table                    ENUMSRVINFO          5 rows exported
  2435. . . exporting table                  EXP_CACHESTAT          0 rows exported
  2436. . . exporting table                    HISTORYFLOW          0 rows exported
  2437. . . exporting table      INTERFACEACCOUNT_20100421          0 rows exported
  2438. . . exporting table      INTERFACEACCOUNT_20100422          0 rows exported
  2439. . . exporting table                    INTERPREFIX         21 rows exported
  2440. . . exporting table               IPRANGEPARTITION         93 rows exported
  2441. . . exporting table                        MESSAGE          0 rows exported
  2442. . . exporting table               MESSAGEREFERENCE          0 rows exported
  2443. . . exporting table            MESSAGESENDSCHEDULE         15 rows exported
  2444. . . exporting table                     MIBLEAFINT         79 rows exported
  2445. . . exporting table                     MIBLEAFSTR         10 rows exported
  2446. . . exporting table                       MISCINFO          0 rows exported
  2447. . . exporting table                MISCROUTERTABLE          0 rows exported
  2448. . . exporting table                      MMBOXTYPE          5 rows exported
  2449. . . exporting table           MMINTERFACELEVELINFO          2 rows exported
  2450. . . exporting table                       MMSCINFO          1 rows exported
  2451. . . exporting table                     MMSCIPINFO          0 rows exported
  2452. . . exporting table             MMSGMMSCMSGIDMAP00          0 rows exported
  2453. . . exporting table             MMSGMMSCMSGIDMAP01          0 rows exported
  2454. . . exporting table             MMSGMMSCMSGIDMAP02          0 rows exported
  2455. . . exporting table             MMSGMMSCMSGIDMAP03          0 rows exported
  2456. . . exporting table             MMSGMMSCMSGIDMAP04          0 rows exported
  2457. . . exporting table             MMSGMMSCMSGIDMAP05          0 rows exported
  2458. . . exporting table             MMSGMMSCMSGIDMAP06          0 rows exported
  2459. . . exporting table             MMSGMMSCMSGIDMAP07          0 rows exported
  2460. . . exporting table             MMSGMMSCMSGIDMAP08          0 rows exported
  2461. . . exporting table             MMSGMMSCMSGIDMAP09          0 rows exported
  2462. . . exporting table             MMSGMMSCMSGIDMAP10          0 rows exported
  2463. . . exporting table             MMSGMMSCMSGIDMAP11          0 rows exported
  2464. . . exporting table             MMSGMMSCMSGIDMAP12          0 rows exported
  2465. . . exporting table             MMSGMMSCMSGIDMAP13          0 rows exported
  2466. . . exporting table             MMSGMMSCMSGIDMAP14          0 rows exported
  2467. . . exporting table             MMSGMMSCMSGIDMAP15          0 rows exported
  2468. . . exporting table             MMSGMMSCMSGIDMAP16          0 rows exported
  2469. . . exporting table             MMSGMMSCMSGIDMAP17          0 rows exported
  2470. . . exporting table             MMSGMMSCMSGIDMAP18          0 rows exported
  2471. . . exporting table             MMSGMMSCMSGIDMAP19          0 rows exported
  2472. . . exporting table             MMSGMMSCMSGIDMAP20          0 rows exported
  2473. . . exporting table             MMSGMMSCMSGIDMAP21          0 rows exported
  2474. . . exporting table             MMSGMMSCMSGIDMAP22          0 rows exported
  2475. . . exporting table             MMSGMMSCMSGIDMAP23          0 rows exported
  2476. . . exporting table             MMSGMMSCMSGIDMAP24          0 rows exported
  2477. . . exporting table             MMSGMMSCMSGIDMAP25          0 rows exported
  2478. . . exporting table             MMSGMMSCMSGIDMAP26          0 rows exported
  2479. . . exporting table             MMSGMMSCMSGIDMAP27          0 rows exported
  2480. . . exporting table             MMSGMMSCMSGIDMAP28          0 rows exported
  2481. . . exporting table             MMSGMMSCMSGIDMAP29          0 rows exported
  2482. . . exporting table             MMSGMMSCMSGIDMAP30          0 rows exported
  2483. . . exporting table             MMSGMMSCMSGIDMAP31          0 rows exported
  2484. . . exporting table             MMSGMMSCMSGIDMAP32          0 rows exported
  2485. . . exporting table             MMSGMMSCMSGIDMAP33          0 rows exported
  2486. . . exporting table             MMSGMMSCMSGIDMAP34          0 rows exported
  2487. . . exporting table             MMSGMMSCMSGIDMAP35          0 rows exported
  2488. . . exporting table             MMSGMMSCMSGIDMAP36          0 rows exported
  2489. . . exporting table             MMSGMMSCMSGIDMAP37          0 rows exported
  2490. . . exporting table             MMSGMMSCMSGIDMAP38          0 rows exported
  2491. . . exporting table             MMSGMMSCMSGIDMAP39          0 rows exported
  2492. . . exporting table             MMSGMMSCMSGIDMAP40          0 rows exported
  2493. . . exporting table             MMSGMMSCMSGIDMAP41          0 rows exported
  2494. . . exporting table             MMSGMMSCMSGIDMAP42          0 rows exported
  2495. . . exporting table             MMSGMMSCMSGIDMAP43          0 rows exported
  2496. . . exporting table             MMSGMMSCMSGIDMAP44          0 rows exported
  2497. . . exporting table             MMSGMMSCMSGIDMAP45          0 rows exported
  2498. . . exporting table             MMSGMMSCMSGIDMAP46          0 rows exported
  2499. . . exporting table             MMSGMMSCMSGIDMAP47          0 rows exported
  2500. . . exporting table             MMSGMMSCMSGIDMAP48          0 rows exported
  2501. . . exporting table             MMSGMMSCMSGIDMAP49          0 rows exported
  2502. . . exporting table             MMSGMMSCMSGIDMAP50          0 rows exported
  2503. . . exporting table             MMSGMMSCMSGIDMAP51          0 rows exported
  2504. . . exporting table             MMSGMMSCMSGIDMAP52          0 rows exported
  2505. . . exporting table             MMSGMMSCMSGIDMAP53          0 rows exported
  2506. . . exporting table             MMSGMMSCMSGIDMAP54          0 rows exported
  2507. . . exporting table             MMSGMMSCMSGIDMAP55          0 rows exported
  2508. . . exporting table             MMSGMMSCMSGIDMAP56          0 rows exported
  2509. . . exporting table             MMSGMMSCMSGIDMAP57          0 rows exported
  2510. . . exporting table             MMSGMMSCMSGIDMAP58          0 rows exported
  2511. . . exporting table             MMSGMMSCMSGIDMAP59          0 rows exported
  2512. . . exporting table             MMSGMMSCMSGIDMAP60          0 rows exported
  2513. . . exporting table             MMSGMMSCMSGIDMAP61          0 rows exported
  2514. . . exporting table             MMSGMMSCMSGIDMAP62          0 rows exported
  2515. . . exporting table             MMSGMMSCMSGIDMAP63          0 rows exported
  2516. . . exporting table             MMSGMMSCMSGIDMAP64          0 rows exported
  2517. . . exporting table             MMSGMMSCMSGIDMAP65          0 rows exported
  2518. . . exporting table             MMSGMMSCMSGIDMAP66          0 rows exported
  2519. . . exporting table             MMSGMMSCMSGIDMAP67          0 rows exported
  2520. . . exporting table             MMSGMMSCMSGIDMAP68          0 rows exported
  2521. . . exporting table             MMSGMMSCMSGIDMAP69          0 rows exported
  2522. . . exporting table             MMSGMMSCMSGIDMAP70          0 rows exported
  2523. . . exporting table             MMSGMMSCMSGIDMAP71          0 rows exported
  2524. . . exporting table             MMSGMMSCMSGIDMAP72          0 rows exported
  2525. . . exporting table             MMSGMMSCMSGIDMAP73          0 rows exported
  2526. . . exporting table             MMSGMMSCMSGIDMAP74          0 rows exported
  2527. . . exporting table             MMSGMMSCMSGIDMAP75          0 rows exported
  2528. . . exporting table             MMSGMMSCMSGIDMAP76          0 rows exported
  2529. . . exporting table             MMSGMMSCMSGIDMAP77          0 rows exported
  2530. . . exporting table             MMSGMMSCMSGIDMAP78          0 rows exported
  2531. . . exporting table             MMSGMMSCMSGIDMAP79          0 rows exported
  2532. . . exporting table             MMSGMMSCMSGIDMAP80          0 rows exported
  2533. . . exporting table             MMSGMMSCMSGIDMAP81          0 rows exported
  2534. . . exporting table             MMSGMMSCMSGIDMAP82          0 rows exported
  2535. . . exporting table             MMSGMMSCMSGIDMAP83          0 rows exported
  2536. . . exporting table             MMSGMMSCMSGIDMAP84          0 rows exported
  2537. . . exporting table             MMSGMMSCMSGIDMAP85          0 rows exported
  2538. . . exporting table             MMSGMMSCMSGIDMAP86          0 rows exported
  2539. . . exporting table             MMSGMMSCMSGIDMAP87          0 rows exported
  2540. . . exporting table             MMSGMMSCMSGIDMAP88          0 rows exported
  2541. . . exporting table             MMSGMMSCMSGIDMAP89          0 rows exported
  2542. . . exporting table             MMSGMMSCMSGIDMAP90          0 rows exported
  2543. . . exporting table             MMSGMMSCMSGIDMAP91          0 rows exported
  2544. . . exporting table             MMSGMMSCMSGIDMAP92          0 rows exported
  2545. . . exporting table             MMSGMMSCMSGIDMAP93          0 rows exported
  2546. . . exporting table             MMSGMMSCMSGIDMAP94          0 rows exported
  2547. . . exporting table             MMSGMMSCMSGIDMAP95          0 rows exported
  2548. . . exporting table             MMSGMMSCMSGIDMAP96          0 rows exported
  2549. . . exporting table             MMSGMMSCMSGIDMAP97          0 rows exported
  2550. . . exporting table             MMSGMMSCMSGIDMAP98          0 rows exported
  2551. . . exporting table             MMSGMMSCMSGIDMAP99          0 rows exported
  2552. . . exporting table                      MMSTARIFF          1 rows exported
  2553. . . exporting table                      MODULECMD         18 rows exported
  2554. . . exporting table                        MODULES         16 rows exported
  2555. . . exporting table                 MONITOREDUSERS          0 rows exported
  2556. . . exporting table                MONITORPERFSTAT          0 rows exported
  2557. . . exporting table               MONTHORDERINFO_0          0 rows exported
  2558. . . exporting table               MONTHORDERINFO_1          0 rows exported
  2559. . . exporting table               MONTHORDERINFO_2          0 rows exported
  2560. . . exporting table               MONTHORDERINFO_3          0 rows exported
  2561. . . exporting table               MONTHORDERINFO_4          0 rows exported
  2562. . . exporting table               MONTHORDERINFO_5          0 rows exported
  2563. . . exporting table               MONTHORDERINFO_6          0 rows exported
  2564. . . exporting table               MONTHORDERINFO_7          0 rows exported
  2565. . . exporting table               MONTHORDERINFO_8          0 rows exported
  2566. . . exporting table               MONTHORDERINFO_9          0 rows exported
  2567. . . exporting table                   NATIVEPREFIX          1 rows exported
  2568. . . exporting table                    NETWORKCODE         24 rows exported
  2569. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  2570. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  2571. . . exporting table                   REALTIMEFLOW          0 rows exported
  2572. . . exporting table                  RENTALFEEINFO          1 rows exported
  2573. . . exporting table                      RIGHTINFO        250 rows exported
  2574. . . exporting table                           ROLE          4 rows exported
  2575. . . exporting table                   ROLEMAPRIGHT        519 rows exported
  2576. . . exporting table                    ROUTERTABLE          2 rows exported
  2577. . . exporting table                 RPT_BUSYSERVER         19 rows exported
  2578. . . exporting table                  RPT_DELAYTIME          0 rows exported
  2579. . . exporting table         RPT_DELAYTIME_20100421          0 rows exported
  2580. . . exporting table         RPT_DELAYTIME_20100422          0 rows exported
  2581. . . exporting table                  RPT_INTERFACE          0 rows exported
  2582. . . exporting table         RPT_INTERFACE_20100421          0 rows exported
  2583. . . exporting table         RPT_INTERFACE_20100422          0 rows exported
  2584. . . exporting table               RPT_MM7_VASPSUCC          0 rows exported
  2585. . . exporting table                   RPT_MMSCSUCC          0 rows exported
  2586. . . exporting table              RPT_MMSC_20100421          0 rows exported
  2587. . . exporting table              RPT_MMSC_20100422          0 rows exported
  2588. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  2589. . . exporting table                   RPT_USECOUNT          0 rows exported
  2590. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  2591. . . exporting table              RPT_VASP_20100421          0 rows exported
  2592. . . exporting table              RPT_VASP_20100422          0 rows exported
  2593. . . exporting table        SERVICEACCOUNT_20100421          0 rows exported
  2594. . . exporting table        SERVICEACCOUNT_20100422          0 rows exported
  2595. . . exporting table                         SIINFO          0 rows exported
  2596. . . exporting table                    SMSNOTEINFO          4 rows exported
  2597. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  2598. . . exporting table                SPECIALCUSTINFO          0 rows exported
  2599. . . exporting table                  SUBMITRESINFO        128 rows exported
  2600. . . exporting table                    SYSOPERATOR         13 rows exported
  2601. . . exporting table                SYSTEMPARAMETER        340 rows exported
  2602. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  2603. . . exporting table              TERMINALBLACKLIST          0 rows exported
  2604. . . exporting table              TMP_ATTACH_RESULT          0 rows exported
  2605. . . exporting table                TMP_BASE_RESULT          0 rows exported
  2606. . . exporting table                     TMP_RESULT          0 rows exported
  2607. . . exporting table                   TMP_RESULTID          0 rows exported
  2608. . . exporting table                  TMP_RESULTMEM          0 rows exported
  2609. . . exporting table                   TRACEMSGINFO          0 rows exported
  2610. . . exporting table                      UAPROFILE          2 rows exported
  2611. . . exporting table                       VASPINFO          1 rows exported
  2612. . . exporting table                  VASPLEVELINFO          1 rows exported
  2613. . . exporting table               VASPPRIORITYINFO          5 rows exported
  2614. . . exporting table                VASPRIORITYINFO          5 rows exported
  2615. . . exporting table                VASPSERVICE_SUP          6 rows exported
  2616. . . exporting table              VASSERVEDAREALIST          1 rows exported
  2617. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  2618. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  2619. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  2620. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  2621. . . exporting table                  VPNSUBSCRIBER          0 rows exported
  2622. . . exporting table                 VPNUNITECORPID          0 rows exported
  2623. . about to export SYC's tables via Conventional Path ...
  2624. . . exporting table                       AREAINFO        375 rows exported
  2625. . . exporting table                     AREANUMBER        364 rows exported
  2626. . . exporting table               AREANUMBERPREFIX          4 rows exported
  2627. . . exporting table                BEARERVALUELIST          3 rows exported
  2628. . . exporting table                    CARRIERINFO          1 rows exported
  2629. . . exporting table               CHARGINGKPCONFIG         28 rows exported
  2630. . . exporting table                 CONNECTIONINFO          0 rows exported
  2631. . . exporting table                    COUNTRYCODE         22 rows exported
  2632. . . exporting table             DATAFILESTATUSCODE          0 rows exported
  2633. . . exporting table               DETAILSTATUSCODE        247 rows exported
  2634. . . exporting table                     DNSSRVINFO          0 rows exported
  2635. . . exporting table                  DRMACCESSCODE          0 rows exported
  2636. . . exporting table                     ECTOSIINFO          0 rows exported
  2637. . . exporting table                    ENUMSRVINFO          1 rows exported
  2638. . . exporting table                  EXP_CACHESTAT          0 rows exported
  2639. . . exporting table                    HISTORYFLOW          0 rows exported
  2640. . . exporting table      INTERFACEACCOUNT_20100428         37 rows exported
  2641. . . exporting table      INTERFACEACCOUNT_20100429        374 rows exported
  2642. . . exporting table      INTERFACEACCOUNT_20100430        135 rows exported
  2643. . . exporting table      INTERFACEACCOUNT_20100501          0 rows exported
  2644. . . exporting table      INTERFACEACCOUNT_20100502          0 rows exported
  2645. . . exporting table      INTERFACEACCOUNT_20100503          0 rows exported
  2646. . . exporting table      INTERFACEACCOUNT_20100504          0 rows exported
  2647. . . exporting table      INTERFACEACCOUNT_20100505        103 rows exported
  2648. . . exporting table      INTERFACEACCOUNT_20100506          6 rows exported
  2649. . . exporting table      INTERFACEACCOUNT_20100507          0 rows exported
  2650. . . exporting table      INTERFACEACCOUNT_20101027        320 rows exported
  2651. . . exporting table                    INTERPREFIX         22 rows exported
  2652. . . exporting table               IPRANGEPARTITION         93 rows exported
  2653. . . exporting table                        MESSAGE          0 rows exported
  2654. . . exporting table               MESSAGEREFERENCE          0 rows exported
  2655. . . exporting table            MESSAGESENDSCHEDULE         15 rows exported
  2656. . . exporting table                     MIBLEAFINT         79 rows exported
  2657. . . exporting table                     MIBLEAFSTR          9 rows exported
  2658. . . exporting table                       MISCINFO          2 rows exported
  2659. . . exporting table                MISCROUTERTABLE          7 rows exported
  2660. . . exporting table                      MMBOXTYPE          5 rows exported
  2661. . . exporting table           MMINTERFACELEVELINFO          2 rows exported
  2662. . . exporting table                       MMSCINFO          2 rows exported
  2663. . . exporting table                     MMSCIPINFO          0 rows exported
  2664. . . exporting table             MMSGMMSCMSGIDMAP00          0 rows exported
  2665. . . exporting table             MMSGMMSCMSGIDMAP01          1 rows exported
  2666. . . exporting table             MMSGMMSCMSGIDMAP02          0 rows exported
  2667. . . exporting table             MMSGMMSCMSGIDMAP03          0 rows exported
  2668. . . exporting table             MMSGMMSCMSGIDMAP04          0 rows exported
  2669. . . exporting table             MMSGMMSCMSGIDMAP05          1 rows exported
  2670. . . exporting table             MMSGMMSCMSGIDMAP06          0 rows exported
  2671. . . exporting table             MMSGMMSCMSGIDMAP07          0 rows exported
  2672. . . exporting table             MMSGMMSCMSGIDMAP08          0 rows exported
  2673. . . exporting table             MMSGMMSCMSGIDMAP09          0 rows exported
  2674. . . exporting table             MMSGMMSCMSGIDMAP10          0 rows exported
  2675. . . exporting table             MMSGMMSCMSGIDMAP11          0 rows exported
  2676. . . exporting table             MMSGMMSCMSGIDMAP12          0 rows exported
  2677. . . exporting table             MMSGMMSCMSGIDMAP13          0 rows exported
  2678. . . exporting table             MMSGMMSCMSGIDMAP14          0 rows exported
  2679. . . exporting table             MMSGMMSCMSGIDMAP15          0 rows exported
  2680. . . exporting table             MMSGMMSCMSGIDMAP16          0 rows exported
  2681. . . exporting table             MMSGMMSCMSGIDMAP17          0 rows exported
  2682. . . exporting table             MMSGMMSCMSGIDMAP18          0 rows exported
  2683. . . exporting table             MMSGMMSCMSGIDMAP19          0 rows exported
  2684. . . exporting table             MMSGMMSCMSGIDMAP20          0 rows exported
  2685. . . exporting table             MMSGMMSCMSGIDMAP21          0 rows exported
  2686. . . exporting table             MMSGMMSCMSGIDMAP22          0 rows exported
  2687. . . exporting table             MMSGMMSCMSGIDMAP23          0 rows exported
  2688. . . exporting table             MMSGMMSCMSGIDMAP24          0 rows exported
  2689. . . exporting table             MMSGMMSCMSGIDMAP25          0 rows exported
  2690. . . exporting table             MMSGMMSCMSGIDMAP26          0 rows exported
  2691. . . exporting table             MMSGMMSCMSGIDMAP27          0 rows exported
  2692. . . exporting table             MMSGMMSCMSGIDMAP28          0 rows exported
  2693. . . exporting table             MMSGMMSCMSGIDMAP29          0 rows exported
  2694. . . exporting table             MMSGMMSCMSGIDMAP30          0 rows exported
  2695. . . exporting table             MMSGMMSCMSGIDMAP31          0 rows exported
  2696. . . exporting table             MMSGMMSCMSGIDMAP32          0 rows exported
  2697. . . exporting table             MMSGMMSCMSGIDMAP33          0 rows exported
  2698. . . exporting table             MMSGMMSCMSGIDMAP34          0 rows exported
  2699. . . exporting table             MMSGMMSCMSGIDMAP35          0 rows exported
  2700. . . exporting table             MMSGMMSCMSGIDMAP36          0 rows exported
  2701. . . exporting table             MMSGMMSCMSGIDMAP37          0 rows exported
  2702. . . exporting table             MMSGMMSCMSGIDMAP38          0 rows exported
  2703. . . exporting table             MMSGMMSCMSGIDMAP39          0 rows exported
  2704. . . exporting table             MMSGMMSCMSGIDMAP40          0 rows exported
  2705. . . exporting table             MMSGMMSCMSGIDMAP41          0 rows exported
  2706. . . exporting table             MMSGMMSCMSGIDMAP42          0 rows exported
  2707. . . exporting table             MMSGMMSCMSGIDMAP43          0 rows exported
  2708. . . exporting table             MMSGMMSCMSGIDMAP44          0 rows exported
  2709. . . exporting table             MMSGMMSCMSGIDMAP45          0 rows exported
  2710. . . exporting table             MMSGMMSCMSGIDMAP46          0 rows exported
  2711. . . exporting table             MMSGMMSCMSGIDMAP47          0 rows exported
  2712. . . exporting table             MMSGMMSCMSGIDMAP48          0 rows exported
  2713. . . exporting table             MMSGMMSCMSGIDMAP49          0 rows exported
  2714. . . exporting table             MMSGMMSCMSGIDMAP50          0 rows exported
  2715. . . exporting table             MMSGMMSCMSGIDMAP51          0 rows exported
  2716. . . exporting table             MMSGMMSCMSGIDMAP52          0 rows exported
  2717. . . exporting table             MMSGMMSCMSGIDMAP53          0 rows exported
  2718. . . exporting table             MMSGMMSCMSGIDMAP54          0 rows exported
  2719. . . exporting table             MMSGMMSCMSGIDMAP55          0 rows exported
  2720. . . exporting table             MMSGMMSCMSGIDMAP56          0 rows exported
  2721. . . exporting table             MMSGMMSCMSGIDMAP57          0 rows exported
  2722. . . exporting table             MMSGMMSCMSGIDMAP58          0 rows exported
  2723. . . exporting table             MMSGMMSCMSGIDMAP59          0 rows exported
  2724. . . exporting table             MMSGMMSCMSGIDMAP60          0 rows exported
  2725. . . exporting table             MMSGMMSCMSGIDMAP61          0 rows exported
  2726. . . exporting table             MMSGMMSCMSGIDMAP62          0 rows exported
  2727. . . exporting table             MMSGMMSCMSGIDMAP63          0 rows exported
  2728. . . exporting table             MMSGMMSCMSGIDMAP64          0 rows exported
  2729. . . exporting table             MMSGMMSCMSGIDMAP65          0 rows exported
  2730. . . exporting table             MMSGMMSCMSGIDMAP66          0 rows exported
  2731. . . exporting table             MMSGMMSCMSGIDMAP67          0 rows exported
  2732. . . exporting table             MMSGMMSCMSGIDMAP68          0 rows exported
  2733. . . exporting table             MMSGMMSCMSGIDMAP69          0 rows exported
  2734. . . exporting table             MMSGMMSCMSGIDMAP70          0 rows exported
  2735. . . exporting table             MMSGMMSCMSGIDMAP71          0 rows exported
  2736. . . exporting table             MMSGMMSCMSGIDMAP72          0 rows exported
  2737. . . exporting table             MMSGMMSCMSGIDMAP73          0 rows exported
  2738. . . exporting table             MMSGMMSCMSGIDMAP74          0 rows exported
  2739. . . exporting table             MMSGMMSCMSGIDMAP75          0 rows exported
  2740. . . exporting table             MMSGMMSCMSGIDMAP76          0 rows exported
  2741. . . exporting table             MMSGMMSCMSGIDMAP77          0 rows exported
  2742. . . exporting table             MMSGMMSCMSGIDMAP78          0 rows exported
  2743. . . exporting table             MMSGMMSCMSGIDMAP79          0 rows exported
  2744. . . exporting table             MMSGMMSCMSGIDMAP80          0 rows exported
  2745. . . exporting table             MMSGMMSCMSGIDMAP81          0 rows exported
  2746. . . exporting table             MMSGMMSCMSGIDMAP82          0 rows exported
  2747. . . exporting table             MMSGMMSCMSGIDMAP83          0 rows exported
  2748. . . exporting table             MMSGMMSCMSGIDMAP84          0 rows exported
  2749. . . exporting table             MMSGMMSCMSGIDMAP85          0 rows exported
  2750. . . exporting table             MMSGMMSCMSGIDMAP86          0 rows exported
  2751. . . exporting table             MMSGMMSCMSGIDMAP87          0 rows exported
  2752. . . exporting table             MMSGMMSCMSGIDMAP88          0 rows exported
  2753. . . exporting table             MMSGMMSCMSGIDMAP89          0 rows exported
  2754. . . exporting table             MMSGMMSCMSGIDMAP90          0 rows exported
  2755. . . exporting table             MMSGMMSCMSGIDMAP91          0 rows exported
  2756. . . exporting table             MMSGMMSCMSGIDMAP92          0 rows exported
  2757. . . exporting table             MMSGMMSCMSGIDMAP93          0 rows exported
  2758. . . exporting table             MMSGMMSCMSGIDMAP94          0 rows exported
  2759. . . exporting table             MMSGMMSCMSGIDMAP95          0 rows exported
  2760. . . exporting table             MMSGMMSCMSGIDMAP96          0 rows exported
  2761. . . exporting table             MMSGMMSCMSGIDMAP97          0 rows exported
  2762. . . exporting table             MMSGMMSCMSGIDMAP98          0 rows exported
  2763. . . exporting table             MMSGMMSCMSGIDMAP99          0 rows exported
  2764. . . exporting table          MMSGSVCLOG_0429_1_O_0         48 rows exported
  2765. . . exporting table          MMSGSVCLOG_0429_1_O_1        115 rows exported
  2766. . . exporting table          MMSGSVCLOG_0429_1_O_2         80 rows exported
  2767. . . exporting table          MMSGSVCLOG_0429_1_O_3         74 rows exported
  2768. . . exporting table          MMSGSVCLOG_0429_1_O_4         83 rows exported
  2769. . . exporting table          MMSGSVCLOG_0429_1_O_5        104 rows exported
  2770. . . exporting table          MMSGSVCLOG_0429_1_O_6        131 rows exported
  2771. . . exporting table          MMSGSVCLOG_0429_1_O_7        123 rows exported
  2772. . . exporting table          MMSGSVCLOG_0429_1_O_8        141 rows exported
  2773. . . exporting table          MMSGSVCLOG_0429_1_O_9         63 rows exported
  2774. . . exporting table          MMSGSVCLOG_0430_1_O_0       1209 rows exported
  2775. . . exporting table          MMSGSVCLOG_0430_1_O_1       1208 rows exported
  2776. . . exporting table          MMSGSVCLOG_0430_1_O_2       1253 rows exported
  2777. . . exporting table          MMSGSVCLOG_0430_1_O_3       1272 rows exported
  2778. . . exporting table          MMSGSVCLOG_0430_1_O_4       1309 rows exported
  2779. . . exporting table          MMSGSVCLOG_0430_1_O_5       1377 rows exported
  2780. . . exporting table          MMSGSVCLOG_0430_1_O_6       1358 rows exported
  2781. . . exporting table          MMSGSVCLOG_0430_1_O_7       1386 rows exported
  2782. . . exporting table          MMSGSVCLOG_0430_1_O_8       1343 rows exported
  2783. . . exporting table          MMSGSVCLOG_0430_1_O_9       1381 rows exported
  2784. . . exporting table          MMSGSVCLOG_0505_1_O_0         23 rows exported
  2785. . . exporting table          MMSGSVCLOG_0505_1_O_1         50 rows exported
  2786. . . exporting table          MMSGSVCLOG_0505_1_O_2         26 rows exported
  2787. . . exporting table          MMSGSVCLOG_0505_1_O_3         45 rows exported
  2788. . . exporting table          MMSGSVCLOG_0505_1_O_4         23 rows exported
  2789. . . exporting table          MMSGSVCLOG_0505_1_O_5         35 rows exported
  2790. . . exporting table          MMSGSVCLOG_0505_1_O_6         17 rows exported
  2791. . . exporting table          MMSGSVCLOG_0505_1_O_7         23 rows exported
  2792. . . exporting table          MMSGSVCLOG_0505_1_O_8         36 rows exported
  2793. . . exporting table          MMSGSVCLOG_0505_1_O_9         18 rows exported
  2794. . . exporting table          MMSGSVCLOG_0506_1_O_3          5 rows exported
  2795. . . exporting table        MMSGSVCLOG_20100429_1_S         95 rows exported
  2796. . . exporting table        MMSGSVCLOG_20100430_1_S       2306 rows exported
  2797. . . exporting table        MMSGSVCLOG_20100505_1_S         35 rows exported
  2798. . . exporting table        MMSGSVCLOG_20100506_1_S          1 rows exported
  2799. . . exporting table        MMSGSVCLOG_20101027_1_S        159 rows exported
  2800. . . exporting table                      MMSTARIFF          1 rows exported
  2801. . . exporting table                      MODULECMD         18 rows exported
  2802. . . exporting table                        MODULES         17 rows exported
  2803. . . exporting table                 MONITOREDUSERS          0 rows exported
  2804. . . exporting table                MONITORPERFSTAT          1 rows exported
  2805. . . exporting table               MONTHORDERINFO_0          0 rows exported
  2806. . . exporting table               MONTHORDERINFO_1          2 rows exported
  2807. . . exporting table               MONTHORDERINFO_2          1 rows exported
  2808. . . exporting table               MONTHORDERINFO_3          0 rows exported
  2809. . . exporting table               MONTHORDERINFO_4          0 rows exported
  2810. . . exporting table               MONTHORDERINFO_5          0 rows exported
  2811. . . exporting table               MONTHORDERINFO_6          0 rows exported
  2812. . . exporting table               MONTHORDERINFO_7          0 rows exported
  2813. . . exporting table               MONTHORDERINFO_8          0 rows exported
  2814. . . exporting table               MONTHORDERINFO_9          0 rows exported
  2815. . . exporting table                   NATIVEPREFIX          1 rows exported
  2816. . . exporting table                    NETWORKCODE         24 rows exported
  2817. . . exporting table              PORTALLOG20100428         86 rows exported
  2818. . . exporting table              PORTALLOG20100429        121 rows exported
  2819. . . exporting table              PORTALLOG20100430         49 rows exported
  2820. . . exporting table              PORTALLOG20100505        114 rows exported
  2821. . . exporting table              PORTALLOG20100506        184 rows exported
  2822. . . exporting table                PPSNUMBERPREFIX          0 rows exported
  2823. . . exporting table                PROHIBITEDRIGHT          0 rows exported
  2824. . . exporting table                   REALTIMEFLOW          0 rows exported
  2825. . . exporting table                  RENTALFEEINFO          1 rows exported
  2826. . . exporting table                      RIGHTINFO        250 rows exported
  2827. . . exporting table                           ROLE          4 rows exported
  2828. . . exporting table                   ROLEMAPRIGHT        519 rows exported
  2829. . . exporting table                    ROUTERTABLE          3 rows exported
  2830. . . exporting table                 RPT_BUSYSERVER        214 rows exported
  2831. . . exporting table                  RPT_DELAYTIME        105 rows exported
  2832. . . exporting table         RPT_DELAYTIME_20100506          1 rows exported
  2833. . . exporting table         RPT_DELAYTIME_20100507          0 rows exported
  2834. . . exporting table                  RPT_INTERFACE         85 rows exported
  2835. . . exporting table         RPT_INTERFACE_20100507          0 rows exported
  2836. . . exporting table               RPT_MM7_VASPSUCC         40 rows exported
  2837. . . exporting table                   RPT_MMSCSUCC         30 rows exported
  2838. . . exporting table              RPT_MMSC_20100428          0 rows exported
  2839. . . exporting table              RPT_MMSC_20100429          0 rows exported
  2840. . . exporting table              RPT_MMSC_20100430          0 rows exported
  2841. . . exporting table              RPT_MMSC_20100501          0 rows exported
  2842. . . exporting table              RPT_MMSC_20100502          0 rows exported
  2843. . . exporting table              RPT_MMSC_20100503          0 rows exported
  2844. . . exporting table              RPT_MMSC_20100504          0 rows exported
  2845. . . exporting table              RPT_MMSC_20100505          0 rows exported
  2846. . . exporting table              RPT_MMSC_20100506          0 rows exported
  2847. . . exporting table              RPT_MMSC_20100507          0 rows exported
  2848. . . exporting table              RPT_MMSC_20101027          0 rows exported
  2849. . . exporting table              RPT_TERMINALCOUNT          0 rows exported
  2850. . . exporting table                   RPT_USECOUNT          0 rows exported
  2851. . . exporting table              RPT_USEOFSPSERVER          0 rows exported
  2852. . . exporting table              RPT_VASP_20100428          0 rows exported
  2853. . . exporting table              RPT_VASP_20100429          0 rows exported
  2854. . . exporting table              RPT_VASP_20100430          0 rows exported
  2855. . . exporting table              RPT_VASP_20100501          0 rows exported
  2856. . . exporting table              RPT_VASP_20100502          0 rows exported
  2857. . . exporting table              RPT_VASP_20100503          0 rows exported
  2858. . . exporting table              RPT_VASP_20100504          0 rows exported
  2859. . . exporting table              RPT_VASP_20100505          0 rows exported
  2860. . . exporting table              RPT_VASP_20100506          0 rows exported
  2861. . . exporting table              RPT_VASP_20100507          0 rows exported
  2862. . . exporting table              RPT_VASP_20101027          0 rows exported
  2863. . . exporting table        SERVICEACCOUNT_20100428         24 rows exported
  2864. . . exporting table        SERVICEACCOUNT_20100429        227 rows exported
  2865. . . exporting table        SERVICEACCOUNT_20100430         96 rows exported
  2866. . . exporting table        SERVICEACCOUNT_20100501          0 rows exported
  2867. . . exporting table        SERVICEACCOUNT_20100502          0 rows exported
  2868. . . exporting table        SERVICEACCOUNT_20100503          0 rows exported
  2869. . . exporting table        SERVICEACCOUNT_20100504          0 rows exported
  2870. . . exporting table        SERVICEACCOUNT_20100505         80 rows exported
  2871. . . exporting table        SERVICEACCOUNT_20100506          5 rows exported
  2872. . . exporting table        SERVICEACCOUNT_20100507          0 rows exported
  2873. . . exporting table        SERVICEACCOUNT_20101027        237 rows exported
  2874. . . exporting table                         SIINFO          0 rows exported
  2875. . . exporting table                    SMSNOTEINFO          4 rows exported
  2876. . . exporting table              SMSPROTOCOLCONFIG          0 rows exported
  2877. . . exporting table                SPECIALCUSTINFO          0 rows exported
  2878. . . exporting table                  SUBMITRESINFO        128 rows exported
  2879. . . exporting table                    SYSOPERATOR         14 rows exported
  2880. . . exporting table                SYSTEMPARAMETER        340 rows exported
  2881. . . exporting table                SZXNUMBERPREFIX          0 rows exported
  2882. . . exporting table              TERMINALBLACKLIST          2 rows exported
  2883. . . exporting table              TMP_ATTACH_RESULT        161 rows exported
  2884. . . exporting table                TMP_BASE_RESULT         28 rows exported
  2885. . . exporting table                     TMP_RESULT          0 rows exported
  2886. . . exporting table                   TMP_RESULTID          0 rows exported
  2887. . . exporting table                  TMP_RESULTMEM          0 rows exported
  2888. . . exporting table                   TRACEMSGINFO          0 rows exported
  2889. . . exporting table                      UAPROFILE          2 rows exported
  2890. . . exporting table                       VASPINFO         12 rows exported
  2891. . . exporting table                  VASPLEVELINFO          2 rows exported
  2892. . . exporting table               VASPPRIORITYINFO          5 rows exported
  2893. . . exporting table                VASPRIORITYINFO          5 rows exported
  2894. . . exporting table                VASPSERVICE_SUP         15 rows exported
  2895. . . exporting table              VASSERVEDAREALIST          1 rows exported
  2896. . . exporting table               VASSUBSCRIBEINFO          0 rows exported
  2897. . . exporting table              VCARRIERNBRPREFIX          5 rows exported
  2898. . . exporting table             VIRTUALCARRIERINFO          1 rows exported
  2899. . . exporting table            VIRTUALCARRIERLEVEL          1 rows exported
  2900. . . exporting table                    VPNCORP_100          3 rows exported
  2901. . . exporting table                    VPNCORP_300          3 rows exported
  2902. . . exporting table                  VPNSUBSCRIBER          6 rows exported
  2903. . . exporting table                 VPNUNITECORPID          1 rows exported
  2904. . exporting synonyms
  2905. . exporting views
  2906. . exporting referential integrity constraints
  2907. . exporting stored procedures
  2908. . exporting operators
  2909. . exporting indextypes
  2910. . exporting bitmap, functional and extensible indexes
  2911. . exporting posttables actions
  2912. . exporting triggers
  2913. . exporting materialized views
  2914. . exporting snapshot logs
  2915. . exporting job queues
  2916. . exporting refresh groups and children
  2917. . exporting dimensions
  2918. . exporting post-schema procedural objects and actions
  2919. . exporting user history table
  2920. . exporting default and system auditing options
  2921. . exporting statistics
  2922. Export terminated successfully without warnings.
复制代码
验证过程

数据完备性验证

应用数据导入到数据库B后,数据完备性验证。
重要操作是查询导入后的数据信息,比方通过PLSQL Developer工具查询雷同的表,前后进行数据对比操作。
TNS设置

使用oracle用户,在MMSG单板侧增加tns信息,即修改 $ORACLE_HOME/network/admin/tnsnames.ora文件
比方:
shell
  1. vi $ORACLE_HOME/network/admin/tnsnames.ora
  2. MMSGDB62 =
  3.   (DESCRIPTION =
  4.     (ADDRESS_LIST =
  5.       (ADDRESS = (PROTOCOL = TCP)(HOST = 10.71.167.62)(PORT = 1523))
  6.     )
  7.     (CONNECT_DATA =
  8.       (SERVICE_NAME = iagw)
  9.     )
  10.   )
复制代码
注:


  • 蓝色部分为增加的TNS信息,请根据实际情况进行增加。
MMSG与切换后的数据库连接验证

使用MMSG用户登录单板,验证网关与切换后的数据库的连接是否正常
操作如下

1、使用tnsping大概sqlplus命令验证
tnsping dbname N
此中:


  • dbname为TNS中增加的数据库的别名
  • N 体现一个正整数
2、使用sqlplus命令验证
shell
  1. sqlplus  username/passwd@dbname
复制代码
此中:


  • username体现切换数据库后应用用户名
  • passwd 体现切换数据库后应用用户的密码
  • dbname 体现 TNS中增加的数据库名(示例中为MMSGDB62)
验证如下

shell
  1. 69 mmsg [mmsg] :/home/mmsg>tnsping mmsgdb62 10
  2. TNS Ping Utility for Linux: Version 11.1.0.7.0 - Production on 07-MAY-2010 14:33:10
  3. Copyright (c) 1997, 2008, Oracle.  All rights reserved.
  4. Used parameter files:
  5. Used TNSNAMES adapter to resolve the alias
  6. Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.71.167.62)(PORT = 1523))) (CONNECT_DATA = (SERVICE_NAME = iagw)))
  7. OK (50 msec)
  8. OK (50 msec)
  9. OK (50 msec)
  10. OK (50 msec)
  11. OK (50 msec)
  12. OK (60 msec)
  13. OK (50 msec)
  14. OK (50 msec)
  15. OK (50 msec)
  16. OK (50 msec)
  17. 70 mmsg [mmsg] :/home/mmsg>sqlplus wyz/wyz@mmsgdb62
  18. SQL*Plus: Release 11.1.0.7.0 - Production on Fri May 7 14:33:43 2010
  19. Copyright (c) 1982, 2008, Oracle.  All rights reserved.
  20. Connected to:
  21. Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
  22. With the Partitioning, Oracle Label Security, OLAP, Data Mining,
  23. Oracle Database Vault and Real Application Testing options
  24. SQL> select * from modules;
  25.   MODULEID MODULENAME
  26. ---------- ----------------------------------------------------------------
  27. MODULETYPE MODULEIPADDR         LISTENPORT
  28. ---------- -------------------- ----------
  29. MODULEDESC
  30. --------------------------------------------------------------------------------
  31. HOSTNAME                                                                PID
  32. ---------------------------------------------------------------- ----------
  33.       PING
  34. ----------
  35.       1001 OMCAgent
  36.          1 10.137.49.114             52238
  37. OMCAgent
  38.   MODULEID MODULENAME
  39. ---------- ----------------------------------------------------------------
  40. MODULETYPE MODULEIPADDR         LISTENPORT
  41. ---------- -------------------- ----------
  42. MODULEDESC
  43. --------------------------------------------------------------------------------
  44. HOSTNAME                                                                PID
  45. ---------------------------------------------------------------- ----------
  46.       PING
  47. ----------
  48.                                                                           0
  49.          0
  50.   MODULEID MODULENAME
  51. ---------- ----------------------------------------------------------------
  52. MODULETYPE MODULEIPADDR         LISTENPORT
  53. ---------- -------------------- ----------
  54. MODULEDESC
  55. --------------------------------------------------------------------------------
  56. HOSTNAME                                                                PID
  57. ---------------------------------------------------------------- ----------
  58.       PING
  59. ----------
  60.       2001 ChargeServer
  61.          2 10.137.49.114             52234
  62. ChargeServer
  63.   MODULEID MODULENAME
  64. ---------- ----------------------------------------------------------------
  65. MODULETYPE MODULEIPADDR         LISTENPORT
  66. ---------- -------------------- ----------
  67. MODULEDESC
  68. --------------------------------------------------------------------------------
  69. HOSTNAME                                                                PID
  70. ---------------------------------------------------------------- ----------
  71.       PING
  72. ----------
  73.                                                                           0
  74.          0
  75.   MODULEID MODULENAME
  76. ---------- ----------------------------------------------------------------
  77. MODULETYPE MODULEIPADDR         LISTENPORT
  78. ---------- -------------------- ----------
  79. MODULEDESC
  80. --------------------------------------------------------------------------------
  81. HOSTNAME                                                                PID
  82. ---------------------------------------------------------------- ----------
  83.       PING
  84. ----------
  85.          1 MMSServer
  86.          3 10.137.49.114             52233
  87. MMSServer
  88.   MODULEID MODULENAME
  89. ---------- ----------------------------------------------------------------
  90. MODULETYPE MODULEIPADDR         LISTENPORT
  91. ---------- -------------------- ----------
  92. MODULEDESC
  93. --------------------------------------------------------------------------------
  94. HOSTNAME                                                                PID
  95. ---------------------------------------------------------------- ----------
  96.       PING
  97. ----------
  98.                                                                           0
  99.          0
  100.   MODULEID MODULENAME
  101. ---------- ----------------------------------------------------------------
  102. MODULETYPE MODULEIPADDR         LISTENPORT
  103. ---------- -------------------- ----------
  104. MODULEDESC
  105. --------------------------------------------------------------------------------
  106. HOSTNAME                                                                PID
  107. ---------------------------------------------------------------- ----------
  108.       PING
  109. ----------
  110.         80 Dispatcher
  111.         88 10.137.49.114             52299
  112. Dispatcher
  113.   MODULEID MODULENAME
  114. ---------- ----------------------------------------------------------------
  115. MODULETYPE MODULEIPADDR         LISTENPORT
  116. ---------- -------------------- ----------
  117. MODULEDESC
  118. --------------------------------------------------------------------------------
  119. HOSTNAME                                                                PID
  120. ---------------------------------------------------------------- ----------
  121.       PING
  122. ----------
  123.                                                                           0
  124.          0
  125.   MODULEID MODULENAME
  126. ---------- ----------------------------------------------------------------
  127. MODULETYPE MODULEIPADDR         LISTENPORT
  128. ---------- -------------------- ----------
  129. MODULEDESC
  130. --------------------------------------------------------------------------------
  131. HOSTNAME                                                                PID
  132. ---------------------------------------------------------------- ----------
  133.       PING
  134. ----------
  135.       1901 VASPServer
  136.         71 10.137.49.114             52280
  137. VASPServer
  138.   MODULEID MODULENAME
  139. ---------- ----------------------------------------------------------------
  140. MODULETYPE MODULEIPADDR         LISTENPORT
  141. ---------- -------------------- ----------
  142. MODULEDESC
  143. --------------------------------------------------------------------------------
  144. HOSTNAME                                                                PID
  145. ---------------------------------------------------------------- ----------
  146.       PING
  147. ----------
  148.                                                                           0
  149.          0
  150.   MODULEID MODULENAME
  151. ---------- ----------------------------------------------------------------
  152. MODULETYPE MODULEIPADDR         LISTENPORT
  153. ---------- -------------------- ----------
  154. MODULEDESC
  155. --------------------------------------------------------------------------------
  156. HOSTNAME                                                                PID
  157. ---------------------------------------------------------------- ----------
  158.       PING
  159. ----------
  160.       1811 MMSCServer
  161.         70 10.137.49.114             52288
  162. MMSCServer
  163.   MODULEID MODULENAME
  164. ---------- ----------------------------------------------------------------
  165. MODULETYPE MODULEIPADDR         LISTENPORT
  166. ---------- -------------------- ----------
  167. MODULEDESC
  168. --------------------------------------------------------------------------------
  169. HOSTNAME                                                                PID
  170. ---------------------------------------------------------------- ----------
  171.       PING
  172. ----------
  173.                                                                           0
  174.          0
  175.   MODULEID MODULENAME
  176. ---------- ----------------------------------------------------------------
  177. MODULETYPE MODULEIPADDR         LISTENPORT
  178. ---------- -------------------- ----------
  179. MODULEDESC
  180. --------------------------------------------------------------------------------
  181. HOSTNAME                                                                PID
  182. ---------------------------------------------------------------- ----------
  183.       PING
  184. ----------
  185.       1101 ENUMDNSAgent
  186.         11 10.137.49.114             52237
  187. EnumDNSAgent
  188.   MODULEID MODULENAME
  189. ---------- ----------------------------------------------------------------
  190. MODULETYPE MODULEIPADDR         LISTENPORT
  191. ---------- -------------------- ----------
  192. MODULEDESC
  193. --------------------------------------------------------------------------------
  194. HOSTNAME                                                                PID
  195. ---------------------------------------------------------------- ----------
  196.       PING
  197. ----------
  198.                                                                           0
  199.          0
  200.   MODULEID MODULENAME
  201. ---------- ----------------------------------------------------------------
  202. MODULETYPE MODULEIPADDR         LISTENPORT
  203. ---------- -------------------- ----------
  204. MODULEDESC
  205. --------------------------------------------------------------------------------
  206. HOSTNAME                                                                PID
  207. ---------------------------------------------------------------- ----------
  208.       PING
  209. ----------
  210.       5301 VASPClient
  211.         73 10.137.49.114             52298
  212. VASPClient
  213.   MODULEID MODULENAME
  214. ---------- ----------------------------------------------------------------
  215. MODULETYPE MODULEIPADDR         LISTENPORT
  216. ---------- -------------------- ----------
  217. MODULEDESC
  218. --------------------------------------------------------------------------------
  219. HOSTNAME                                                                PID
  220. ---------------------------------------------------------------- ----------
  221.       PING
  222. ----------
  223.                                                                           0
  224.          0
  225.   MODULEID MODULENAME
  226. ---------- ----------------------------------------------------------------
  227. MODULETYPE MODULEIPADDR         LISTENPORT
  228. ---------- -------------------- ----------
  229. MODULEDESC
  230. --------------------------------------------------------------------------------
  231. HOSTNAME                                                                PID
  232. ---------------------------------------------------------------- ----------
  233.       PING
  234. ----------
  235.       5401 MMSCClient
  236.         74 10.137.49.114             52278
  237. MMSCClient
  238.   MODULEID MODULENAME
  239. ---------- ----------------------------------------------------------------
  240. MODULETYPE MODULEIPADDR         LISTENPORT
  241. ---------- -------------------- ----------
  242. MODULEDESC
  243. --------------------------------------------------------------------------------
  244. HOSTNAME                                                                PID
  245. ---------------------------------------------------------------- ----------
  246.       PING
  247. ----------
  248.                                                                           0
  249.          0
  250.   MODULEID MODULENAME
  251. ---------- ----------------------------------------------------------------
  252. MODULETYPE MODULEIPADDR         LISTENPORT
  253. ---------- -------------------- ----------
  254. MODULEDESC
  255. --------------------------------------------------------------------------------
  256. HOSTNAME                                                                PID
  257. ---------------------------------------------------------------- ----------
  258.       PING
  259. ----------
  260.       1201 DSMPAgent
  261.         12 10.137.49.114             52281
  262. DSMPAgent
  263.   MODULEID MODULENAME
  264. ---------- ----------------------------------------------------------------
  265. MODULETYPE MODULEIPADDR         LISTENPORT
  266. ---------- -------------------- ----------
  267. MODULEDESC
  268. --------------------------------------------------------------------------------
  269. HOSTNAME                                                                PID
  270. ---------------------------------------------------------------- ----------
  271.       PING
  272. ----------
  273.                                                                           0
  274.          0
  275.   MODULEID MODULENAME
  276. ---------- ----------------------------------------------------------------
  277. MODULETYPE MODULEIPADDR         LISTENPORT
  278. ---------- -------------------- ----------
  279. MODULEDESC
  280. --------------------------------------------------------------------------------
  281. HOSTNAME                                                                PID
  282. ---------------------------------------------------------------- ----------
  283.       PING
  284. ----------
  285.       2200 LOG2DB
  286.         22 10.137.49.114             52232
  287. LOG2DB
  288.   MODULEID MODULENAME
  289. ---------- ----------------------------------------------------------------
  290. MODULETYPE MODULEIPADDR         LISTENPORT
  291. ---------- -------------------- ----------
  292. MODULEDESC
  293. --------------------------------------------------------------------------------
  294. HOSTNAME                                                                PID
  295. ---------------------------------------------------------------- ----------
  296.       PING
  297. ----------
  298.                                                                           0
  299.          0
  300.   MODULEID MODULENAME
  301. ---------- ----------------------------------------------------------------
  302. MODULETYPE MODULEIPADDR         LISTENPORT
  303. ---------- -------------------- ----------
  304. MODULEDESC
  305. --------------------------------------------------------------------------------
  306. HOSTNAME                                                                PID
  307. ---------------------------------------------------------------- ----------
  308.       PING
  309. ----------
  310.       4001 SMSAgent
  311.          4 10.137.49.114             52235
  312. SMSAgent
  313.   MODULEID MODULENAME
  314. ---------- ----------------------------------------------------------------
  315. MODULETYPE MODULEIPADDR         LISTENPORT
  316. ---------- -------------------- ----------
  317. MODULEDESC
  318. --------------------------------------------------------------------------------
  319. HOSTNAME                                                                PID
  320. ---------------------------------------------------------------- ----------
  321.       PING
  322. ----------
  323.                                                                           0
  324.          0
  325.   MODULEID MODULENAME
  326. ---------- ----------------------------------------------------------------
  327. MODULETYPE MODULEIPADDR         LISTENPORT
  328. ---------- -------------------- ----------
  329. MODULEDESC
  330. --------------------------------------------------------------------------------
  331. HOSTNAME                                                                PID
  332. ---------------------------------------------------------------- ----------
  333.       PING
  334. ----------
  335.       8201 BILLAgent
  336.         82 10.137.49.114             52266
  337. BILLAgent
  338.   MODULEID MODULENAME
  339. ---------- ----------------------------------------------------------------
  340. MODULETYPE MODULEIPADDR         LISTENPORT
  341. ---------- -------------------- ----------
  342. MODULEDESC
  343. --------------------------------------------------------------------------------
  344. HOSTNAME                                                                PID
  345. ---------------------------------------------------------------- ----------
  346.       PING
  347. ----------
  348.                                                                           0
  349.          0
  350.   MODULEID MODULENAME
  351. ---------- ----------------------------------------------------------------
  352. MODULETYPE MODULEIPADDR         LISTENPORT
  353. ---------- -------------------- ----------
  354. MODULEDESC
  355. --------------------------------------------------------------------------------
  356. HOSTNAME                                                                PID
  357. ---------------------------------------------------------------- ----------
  358.       PING
  359. ----------
  360.       8202 VPNBILLAgent
  361.         82 10.137.49.114             52277
  362. VPNBILLAgent
  363.   MODULEID MODULENAME
  364. ---------- ----------------------------------------------------------------
  365. MODULETYPE MODULEIPADDR         LISTENPORT
  366. ---------- -------------------- ----------
  367. MODULEDESC
  368. --------------------------------------------------------------------------------
  369. HOSTNAME                                                                PID
  370. ---------------------------------------------------------------- ----------
  371.       PING
  372. ----------
  373.                                                                           0
  374.          0
  375.   MODULEID MODULENAME
  376. ---------- ----------------------------------------------------------------
  377. MODULETYPE MODULEIPADDR         LISTENPORT
  378. ---------- -------------------- ----------
  379. MODULEDESC
  380. --------------------------------------------------------------------------------
  381. HOSTNAME                                                                PID
  382. ---------------------------------------------------------------- ----------
  383.       PING
  384. ----------
  385.       8203 DRBILLAgent
  386.         82 10.137.49.114             53398
  387. DRBILLAgent
  388.   MODULEID MODULENAME
  389. ---------- ----------------------------------------------------------------
  390. MODULETYPE MODULEIPADDR         LISTENPORT
  391. ---------- -------------------- ----------
  392. MODULEDESC
  393. --------------------------------------------------------------------------------
  394. HOSTNAME                                                                PID
  395. ---------------------------------------------------------------- ----------
  396.       PING
  397. ----------
  398.                                                                           0
  399.          0
  400.   MODULEID MODULENAME
  401. ---------- ----------------------------------------------------------------
  402. MODULETYPE MODULEIPADDR         LISTENPORT
  403. ---------- -------------------- ----------
  404. MODULEDESC
  405. --------------------------------------------------------------------------------
  406. HOSTNAME                                                                PID
  407. ---------------------------------------------------------------- ----------
  408.       PING
  409. ----------
  410.       8901 VPNAgent
  411.         89 10.137.49.114             52222
  412. VPNAgent
  413.   MODULEID MODULENAME
  414. ---------- ----------------------------------------------------------------
  415. MODULETYPE MODULEIPADDR         LISTENPORT
  416. ---------- -------------------- ----------
  417. MODULEDESC
  418. --------------------------------------------------------------------------------
  419. HOSTNAME                                                                PID
  420. ---------------------------------------------------------------- ----------
  421.       PING
  422. ----------
  423.                                                                           0
  424.          0
  425. 16 rows selected.
复制代码
修改MMSG侧设置文件

注:


  • 在修改MMSG侧设置文件前,请先停止正在运行的网关。
修改$MMS_HOME/cfg目录下下列文件信息

shell
  1. cshrc
  2. mms.cfg
  3. log2db.cfg
  4. vpn.cfg
复制代码
shell
  1. vi cshrc
  2. #The SID for accessing the Oracle database must be consistent with the contents in the tnsname.ora configuration file of the Oracle client
  3. setenv ORACLE_SID mmsgdb62   //请根据实际情况进行修改,示例中TNS为mmsgdb62
复制代码
shell
  1. vi mms.cfg
  2. //Note: This configuration file is used for setting the database access mode of the MMSC.
  3. //Other settings are stored in the database. You can set the configuration items on the Web management page.
  4. [Database]
  5. DBName = mmsgdb62
  6. DBUserName =wyz
  7. DBPassword = wyz
  8. DBType = oracle
  9. DBUrl = jdbc:oracle:thin:@10.71.167.62:1523:iagw
  10. DBJdbcClass=oracle.jdbc.driver.OracleDriver
  11. MMS_LOCAL_FLOATIP = 10.137.49.114
复制代码
shell
  1. vi log2db.cfg
  2. //Log2db configuration file
  3. [Database]
  4. //Database user name
  5. DBUser = wyz
  6. //Database password
  7. DBPassword = wyz
  8. //URL used by the database JDBC
  9. DBUrl = jdbc:oracle:thin:@10.71.167.62:1523:iagw
  10. //DBUrl = jdbc:db2://10.164.78.178:50003/mmsgdb
  11. //DBUrl = jdbc:microsoft:sqlserver://127.0.0.1:1433
  12. //Drive used by the database JDBC
  13. DBDriver = oracle.jdbc.driver.OracleDriver
  14. //DBDriver = com.ibm.db2.jcc.DB2Driver
  15. //DBDriver = com.microsoft.jdbc.sqlserver.SQLServerDriver
复制代码
shell
  1. vi vpn.cfg
  2. [DataBase]
  3. #Database connection information. This parameter is valid only when VpnDbMode is set to 0 indicating to connect to the WEBSMS.
  4. #Oracle database
  5. DBUrl=jdbc:oracle:thin:@10.71.167.62:1523:iagw
  6. DBDriver=oracle.jdbc.driver.OracleDriver
  7. #DB2 database
  8. #DBUrl=jdbc:db2://10.164.75.87:50001/iagdb1
  9. #DBDriver=com.ibm.db2.jcc.DB2Driver
  10. DBUser=wyz
  11. DBPassword=wyz
复制代码
注:


  • 1、蓝色部分信息请根据实际情况进行修改。
  • 2、修改后重新source一下cfg目录下cshrc文件
  • 3、它设置信息,如后台命令实行的备份脚本等不必要做任何改动,当mms.cfg文件发生修改后,在某时候后台实行定时使命时候会重新读取这个设置文件,故而相干的定时使命不做任何变动。
  • 4、假如在原数据库上进行了数据库的备份计谋,请将备份计谋在切换后的AIX 11g数据库上重新进行。
遇见题目 Get DB Connection is null

假如出现如下错误(Get DB Connection is null),请检查cfg目录下相干设置文件(重要是cfg目录下cshrc、mms.cfg、log2db.cfg三个文件)是否正确修改。
shell
  1. 91 mmsg [mmsg] :/home/mmsg/mms_home/cfg>Get DB Connection is null
  2. Exception in thread "main" java.lang.NullPointerException
  3.         at com.huawei.mms.common.conf.ModulesData.getModuleNameByID(ModulesData.java:83)
  4.         at com.huawei.mms.common.log.Alarmer.<init>(Alarmer.java:61)
  5.         at com.huawei.mms.common.log.Alarmer.getInstance(Alarmer.java:74)
  6.         at com.huawei.mms.common.dbproxy.DBProxyJDBCImp.query(DBProxyJDBCImp.java:351)
  7.         at com.huawei.mms.common.dbproxy.DBProxyJDBCImp.query(DBProxyJDBCImp.java:271)
  8.         at com.huawei.mms.common.conf.CfgMgr.reload(CfgMgr.java:107)
  9.         at com.huawei.mms.init.HttpAgentData.init(HttpAgentData.java:131)
  10.         at com.huawei.mms.init.MMSCClientInitiator.initCfgData(MMSCClientInitiator.java:155)
  11.         at com.huawei.mms.init.Initiator.initSystem(Initiator.java:97)
  12.         at com.huawei.mms.mm7agent.MMSCClient.main(MMSCClient.java:49)
复制代码
启动网关

使用mms start命令启动数据库切换后的网关。
假如在启动过程中出现如下信息,请修改端标语,以server主调度模块为例
shell
  1. [05-07 15:22:37 511][INFO][ServerApp][serverapp.cpp 263][-140986064]*****************  Initialize Static Data Successfully!!  ******
  2. **************
  3. [05-07 15:22:37 511][FINE][Platform][mms_acceptor.cpp 85][-140986064]Tcp Server start fail!ip address is:10.137.49.114, port no is:5
  4. 2233
  5. [05-07 15:22:37 511][WARNING][ServerApp][serverapp.cpp 492][-140986064]Open Socket Server Failed, Exit System...!ServerIP = 10.137.4
  6. 9.114, ListenPort = 52233
  7. [05-07 15:22:37 511][FINE][Platform][appmanager.cpp 173][-140986064]OnInit() return -1
复制代码
server模块启动失败

shell
  1. 144 mmsg [mmsg] :/home/mmsg/mms_home/log/server_1/run>netstat -an | grep 52233
  2. tcp        0      0 10.137.49.114:52277     10.137.49.114:52233     ESTABLISHED
  3. tcp        0      0 10.137.49.114:52233     10.137.49.114:52277     ESTABLISHED
复制代码
解决方法如下
1、server端口信息
shell
  1. update  modules  set listenport =52239 where MODULENAME='MMSServer';
复制代码
2、重启server模块
shell
  1. mms start 1
复制代码
流程验证

网关各个模块启动后,验证流程是否通畅。
注:


  • 必要修改portal设置信息,由于数据库已经发生切换。本文不做先容。
下行流程,不支持DR优化

计费话单

shell
  1. 0507155553800800011020000,008613810243001,,0,822000,008613810243001,,2,1,3,0,0,0,0,1,2,0,1000,800800,910000,822000,7800,121000,,2010
  2. 0507155553,20100507155558,,00000,1,1,1,0,0,0,050708001402708220010,
复制代码
统计话单

shell
  1. 0507155553800800011020000,008613810243001,,0,822000,008613810243001,,2,1,3,0,0,0,0,1,2,0,0100,800800,910000,822000,7800,121000,,2010
  2. 0507155553,20100507155553,,00000,1,1,1,0,0,0,,,1,
  3. 0507155553800800011020000,008613810243001,,0,822000,008613810243001,,3,1,3,0,0,0,0,1,2,0,1000,800800,910000,822000,7800,121000,,2010
  4. 0507155553,20100507155558,,00000,1,1,1,0,0,0,,1,1,
复制代码
Vaspserver日志片段

shell
  1. Begin to dispose message from SP!
  2. [2010-05-07 15:55:53.335] [FINEST] [vaspserver_1901] [Tools.java:615] [ ] [Receive SOAP Message]
  3. HttpRequest Content:
  4. 15:55:53.334(Tools.java:362) byte[719] @3682584 {
  5.     [HEX]    0  1  2  3  4  5  6  7-  8  9  a  b  c  d  e  f | 0123456789abcdef
  6.   ----------------------------------------------------------------------------
  7.   00000000: 3c 3f 78 6d 6c 20 76 65.72 73 69 6f 6e 3d 22 31 | <?xml version="1
  8.   00000010: 2e 30 22 20 65 6e 63 6f.64 69 6e 67 3d 22 55 54 | .0" encoding="UT
  9.   00000020: 46 2d 38 22 3f 3e 3c 65.6e 76 3a 45 6e 76 65 6c | F-8"?><env:Envel
  10.   00000030: 6f 70 65 20 78 6d 6c 6e.73 3a 65 6e 76 3d 22 68 | ope xmlns:env="h
  11.   00000040: 74 74 70 3a 2f 2f 73 63.68 65 6d 61 73 2e 78 6d |
  12. ttp://schemas.xm
  13.   00000050: 6c 73 6f 61 70 2e 6f 72.67 2f 73 6f 61 70 2f 65 | lsoap.org/soap/e
  14.   00000060: 6e 76 65 6c 6f 70 65 2f.22 3e 3c 65 6e 76 3a 48 | nvelope/"><env:H
  15.   00000070: 65 61 64 65 72 3e 3c 6d.6d 37 3a 54 72 61 6e 73 | eader><mm7:Trans
  16.   00000080: 61 63 74 69 6f 6e 49 44.20 78 6d 6c 6e 73 3a 6d | actionID xmlns:m
  17.   00000090: 6d 37 3d 22 68 74 74 70.3a 2f 2f 77 77 77 2e 33 | m7="http://www.3
  18.   000000a0: 67 70 70 2e 6f 72 67 2f.66 74 70 2f 53 70 65 63 | gpp.org/ftp/Spec
  19.   000000b0: 73 2f 61 72 63 68 69 76.65 2f 32 33 5f 73 65 72 | s/archive/23_ser
  20.   000000c0: 69 65 73 2f 32 33 2e 31.34 30 2f 73 63 68 65 6d | ies/23.140/schem
  21.   000000d0: 61 2f 52 45 4c 2d 36 2d.4d 4d 37 2d 31 2d 30 22 | a/REL-6-MM7-1-0"
  22.   000000e0: 20 65 6e 76 3a 6d 75 73.74 55 6e 64 65 72 73 74 |  env:mustUnderst
  23.   000000f0: 61 6e 64 3d 22 31 22 3e.74 69 64 31 30 30 30 30 | and="1">tid10000
  24.   00000100: 30 30 30 30 3c 2f 6d 6d.37 3a 54 72 61 6e 73 61 | 0000</mm7:Transa
  25.   00000110: 63 74 69 6f 6e 49 44 3e.3c 2f 65 6e 76 3a 48 65 | ctionID></env:He
  26.   00000120: 61 64 65 72 3e 3c 65 6e.76 3a 42 6f 64 79 3e 3c | ader><env:Body><
  27.   00000130: 53 75 62 6d 69 74 52 65.71 20 78 6d 6c 6e 73 3d | SubmitReq xmlns=
  28.   00000140: 22 68 74 74 70 3a 2f 2f.77 77 77 2e 33 67 70 70 | "http://www.3gpp
  29.   00000150: 2e 6f 72 67 2f 66 74 70.2f 53 70 65 63 73 2f 61 | .org/ftp/Specs/a
  30.   00000160: 72 63 68 69 76 65 2f 32.33 5f 73 65 72 69 65 73 | rchive/23_series
  31.   00000170: 2f 32 33 2e 31 34 30 2f.73 63 68 65 6d 61 2f 52 | /23.140/schema/R
  32.   00000180: 45 4c 2d 36 2d 4d 4d 37.2d 31 2d 30 22 3e 3c 4d | EL-6-MM7-1-0"><M
  33.   00000190: 4d 37 56 65 72 73 69 6f.6e 3e 36 2e 33 2e 30 3c | M7Version>6.3.0<
  34.   000001a0: 2f 4d 4d 37 56 65 72 73.69 6f 6e 3e 3c 53 65 6e | /MM7Version><Sen
  35.   000001b0: 64 65 72 49 64 65 6e 74.69 66 69 63 61 74 69 6f | derIdentificatio
  36.   000001c0: 6e 3e 3c 56 41 53 50 49.44 3e 38 32 32 30 30 30 | n><VASPID>822000
  37.   000001d0: 3c 2f 56 41 53 50 49 44.3e 3c 56 41 53 49 44 3e | </VASPID><VASID>
  38.   000001e0: 37 38 30 30 3c 2f 56 41.53 49 44 3e 3c 2f 53 65 | 7800</VASID></Se
  39.   000001f0: 6e 64 65 72 49 64 65 6e.74 69 66 69 63 61 74 69 | nderIdentificati
  40. }
  41. [2010-05-07 15:55:53.337] [FINER] [vaspserver_1901] [HttpAgentForSoap.java:167] [ ] [SP to Server]
  42. Decoder soap message to mm7 message success, detail is:
  43. MessageType = MM7-Submit.req
  44. TransactionID = tid100000000
  45. MM7Version = 6.3.0
  46. To = [13810243001]
  47. DeliveryReport = YES
  48. Subject = This is a test.
  49. VASPID = 822000
  50. VASID = 7800
  51. ServiceCode = 121000
  52. Content: Content-Type=application/vnd.wap.multipart.mixed
  53. [2010-05-07 15:55:53.337] [FINER] [vaspserver_1901] [VASPServerCheckTools.java:224] [ ] [VASPServer]
  54. MM7 Message will be sended to server!
  55. [2010-05-07 15:55:53.338] [FINEST] [vaspserver_1901] [SocketConnection.java:612] [ ] [Send Message]
  56. Send message to module[1]
  57. 15:55:53.338(Tools.java:374) byte[105000] @25068634 {
  58.     [HEX]    0  1  2  3  4  5  6  7-  8  9  a  b  c  d  e  f | 0123456789abcdef
  59.   ----------------------------------------------------------------------------
  60.   00000000: 49 d9 00 00 00 76 17 40.00 00 4b e3 c7 89 01 51 | I....v.@..K....Q
  61.   00000010: 00 47 07 6d 00 00 00 00.00 03 00 01 10 01 00 00 | .G.m............
  62.   00000020: 00 00 00 02 8c c0 98 74.69 64 31 30 30 30 30 30 | .......tid100000
  63.   00000030: 30 30 30 00 d5 02 06 36.86 80 96 54 68 69 73 20 | 000....6...This
  64.   00000040: 69 73 20 61 20 74 65 73.74 2e 00 97 31 33 38 31 | is a test...1381
  65.   00000050: 30 32 34 33 30 30 31 00.d7 31 32 31 30 30 30 00 | 0243001..121000.
  66.   00000060: d9 37 38 30 30 00 d8 38.32 32 30 30 30 00 ed 37 | .7800..822000..7
  67.   00000070: 38 30 30 00 b4 01      .                        | 800...         
  68. }
  69. [2010-05-07 15:55:53.341] [FINEST] [vaspserver_1901] [SocketConnection.java:539] [ ] [Receive Message]
  70. Receive message from module[1], binary stream:
  71. 15:55:53.340(Tools.java:374) byte[200] @18818021 {
  72.     [HEX]    0  1  2  3  4  5  6  7-  8  9  a  b  c  d  e  f | 0123456789abcdef
  73.   ----------------------------------------------------------------------------
  74.   00000000: 00 00 00 64 17 41 00 00.4b e3 c7 89 01 51 00 03 | ...d.A..K....Q..
  75.   00000010: 00 01 10 01 00 01 00 47.07 6d 00 00 00 00 00 00 | .......G.m......
  76.   00000020: 00 02 8c c1 98 74 69 64.31 30 30 30 30 30 30 30 | .....tid10000000
  77.   00000030: 30 00 d5 02 06 30 8b 30.35 30 37 31 35 35 35 35 | 0....0.050715555
  78.   00000040: 33 38 30 30 38 30 30 30.31 31 30 32 00 bc 02 03 | 380080001102....
  79.   00000050: e8 be 0f ea 7f e5 8f 91.e9 80 81 e6 88 90 e5 8a | ................
  80.   00000060: 9f 00                  .                        | ..              
  81. }
  82. [2010-05-07 15:55:53.341] [FINER] [vaspserver_1901] [TransactionMgr.java:157] [ ] [Message Process Interval]
  83. MessageType: MM7-Submit.req; SourceModuleID: 1901; TargetModuleID: 1; Interval: 4
  84. [2010-05-07 15:55:53.341] [FINER] [vaspserver_1901] [MM7MessageSenderMgr.java:357] [ ] [SP to Server]
  85. Get response from MMSGserver, detail:
  86. MessageType = MM7-Submit.res
  87. TransactionID = tid100000000
  88. MM7Version = 6.3.0
  89. MessageID = 050715555380080001102
  90. StatusCode = 1000
  91. StatusText = 发送成功
  92. [2010-05-07 15:55:53.342] [FINER] [vaspserver_1901] [HttpAgentForSoap.java:456] [ ] [SP to Server]
  93. Get response from server or dispatcher, detail:
  94. MessageType = MM7-Submit.res
  95. TransactionID = tid100000000
  96. MM7Version = 6.3.0
  97. MessageID = 050715555380080001102
  98. StatusCode = 1000
  99. StatusText = 发送成功
复制代码
SVC日志片段

shell
  1. [2010-05-07 15:55:53 339][LgTp:FRSMSG][AfOrgn:][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SqncNum:2][SessID:0110000000001100507155553][MsgID:050715555380080001102][TransID:tid100000000][ExMsgID:][MPRP:MM7][MsgType:MM7_SUBMIT_REQ][AfrAtrbt:RCV][AfrStat:OK]; SV:NULL; MsgCls:NULL; DR:YES; RR:NULL; MsgSz:0 Byte(s); VASPID:822000; VASID:7800; SrvCd:121000; DispMsgID:;
  2. [2010-05-07 15:55:53 340][LgTp:SRVMSG][AfOrgn:][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SqncNum:2][SessID:0110000000001100507155553][MsgID:050715555380080001102][TransID:tid100000000][ExMsgID:][MPRP:MM7][MsgType:MM7_SUBMIT_RES][AfrAtrbt:SND][AfrStat:OK]; MM7RspStat:SUCCESS; DispMsgID:;
  3. [2010-05-07 15:55:53 345][LgTp:OFLWVR][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SessID:0110000000001100507155553][MsgID:050715555380080001102][ExMsgID:][FlwCls:NORMAL]; FlwOvrStat:SUBMIT_OK; FlwOvrStatCode:0100; DtlCd:STAT_SUBMIT_SUCCESS; DlvrTimer:0 Second(s);
  4. [2010-05-07 15:55:53 346][LgTp:ENTRLS][SessID:0110000000001100507155553][MsgID:050715555380080001102][ExMsgID:][EntAct:SUBMIT_SESSION_RELEASE]; RealFlwCls:NORMAL;
  5. [2010-05-07 15:55:53 346][LgTp:SRVMSG][AfOrgn:][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SqncNum:-1][SessID:0110000000002100507155553][MsgID:050715555380080001102][TransID:0110000000002100507155553001][ExMsgID:][MPRP:MM7][MsgType:MM7_SUBMIT_REQ][AfrAtrbt:SND][AfrStat:OK]; SV:NULL; MsgCls:PRSL; DR:YES; RR:NO; MsgSz:0 Byte(s); VASPID:800100; VASID:7788; SrvCd:822001;
  6. [2010-05-07 15:55:53 470][LgTp:SRVMSG][AfOrgn:][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SqncNum:0][SessID:0110000000002100507155553][MsgID:050715555380080001102][TransID:0110000000002100507155553001][ExMsgID:050708001402708220010][MPRP:MM7][MsgType:MM7_SUBMIT_RES][AfrAtrbt:RCV][AfrStat:OK]; MM7RspStat:SUCCESS;ResOriginStat:1000;
  7. [2010-05-07 15:55:58 638][LgTp:SRVMSG][AfOrgn:][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SqncNum:2][SessID:0110000000002100507155553][MsgID:050715555380080001102][TransID:tid00001003][ExMsgID:050708001402708220010][MPRP:MM7][MsgType:MM7_DELIVERY_REPORT_REQ][AfrAtrbt:RCV][AfrStat:OK]; FtchStat:RETRIEVED;
  8. [2010-05-07 15:55:58 638][LgTp:SRVMSG][AfOrgn:][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SqncNum:2][SessID:0110000000002100507155553][MsgID:050715555380080001102][TransID:tid00001003][ExMsgID:050708001402708220010][MPRP:MM7][MsgType:MM7_DELIVERY_REPORT_RES][AfrAtrbt:SND][AfrStat:OK]; MM7RspStat:SUCCESS;
  9. [2010-05-07 15:55:58 638][LgTp:TFLWVR][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SessID:0110000000002100507155553][MsgID:050715555380080001102][ExMsgID:050708001402708220010][FlwCls:NORMAL]; FlwOvrStat:DELIVER_OK; FlwOvrStatCode:1000; DtlCd:STAT_FRWRD_SNDR_ADDR_IN_FRWRD_RCVR_USER_BLKLST; RealFlwCls:NORMAL;
  10. [2010-05-07 15:55:58 638][LgTp:SRVMSG][AfOrgn:][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SqncNum:-1][SessID:0110000000002100507155553][MsgID:050715555380080001102][TransID:0110000000002100507155553303][ExMsgID:050708001402708220010][MPRP:MM7][MsgType:MM7_DELIVERY_REPORT_REQ][AfrAtrbt:SND][AfrStat:SNDING]; FtchStat:RETRIEVED; DispMsgID:;
  11. [2010-05-07 15:55:58 657][LgTp:SRVMSG][AfOrgn:][Sndr:7800121000][Rcvr:+8613810243001][FwdAddr:][SqncNum:0][SessID:0110000000002100507155553][MsgID:050715555380080001102][TransID:0110000000002100507155553303][ExMsgID:050708001402708220010][MPRP:MM7][MsgType:MM7_DELIVERY_REPORT_RES][AfrAtrbt:RCV][AfrStat:OK]; MM7RspStat:SUCCESS;
  12. [2010-05-07 15:55:58 657][LgTp:ENTRLS][SessID:0110000000002100507155553][MsgID:050715555380080001102][ExMsgID:050708001402708220010][EntAct:DELIVER_SESSION_RELEASE]; RealFlwCls:NORMAL;
  13. [2010-05-07 15:55:58 657][LgTp:ENTRLS][MsgID:050715555380080001102][ExMsgID:][EntAct:ORIGINMSG_RELEASE];
复制代码
CS日志片段

shell
  1. m_ucAreaFlag  = 0
  2. m_ucRoamingStatus  = 255
  3. m_strIMSI =  
  4. m_strVisitedSGSN =  
  5. m_addrXMmsSenderAddress end:
  6. m_strXMmsSenderActaulProperties =  
  7. m_strXMmsResulText = 处理成功
  8. m_listRecipientAddress Start:
  9. m_strXMmsTransactionIDofPPS  = 011000000999910050715555300011
  10. m_addrXMmsRecipientAddress Start:
  11. m_strAddress  = +8613810243001
  12. m_iAddressType = 0
  13. m_iAddressSendType = 0
复制代码
Mmscclient日志片段

shell
  1. [2010-05-07 15:55:53.321] [FINER] [mmscclient_5401] [ConnectionManager.java:333] [ ] [Update SocketConnection's Load]
  2. Update module[1]'s state to 0
  3. [2010-05-07 15:55:53.347] [FINEST] [mmscclient_5401] [SocketConnection.java:539] [ ] [Receive Message]
  4. Receive message from module[1], binary stream:
  5. 15:55:53.346(Tools.java:374) byte[297] @16747636 {
  6.     [HEX]    0  1  2  3  4  5  6  7-  8  9  a  b  c  d  e  f | 0123456789abcdef
  7.   ----------------------------------------------------------------------------
  8.   00000000: 00 00 00 c5 17 40 00 00.ff ff ff ff ff ff 00 03 | .....@..........
  9.   00000010: 00 01 10 01 00 01 00 4a.15 19 00 00 00 00 ff ff | .......J........
  10.   00000020: ff ff 8c c0 98 30 31 31.30 30 30 30 30 30 30 30 | .....01100000000
  11.   00000030: 30 32 31 30 30 35 30 37.31 35 35 35 35 33 30 30 | 0210050715555300
  12.   00000040: 31 00 f1 30 35 30 37 31.35 35 35 35 33 38 30 30 | 1..0507155553800
  13.   00000050: 38 30 30 30 31 31 30 32.00 ea 38 32 32 30 30 30 | 80001102..822000
  14.   00000060: 00 eb 37 38 30 30 00 ec.31 32 31 30 30 30 00 d5 | ..7800..121000..
  15.   00000070: 02 06 30 d8 38 30 30 31.30 30 00 d9 37 37 38 38 | ..0.800100..7788
  16.   00000080: 00 85 04 4b e3 c7 89 97.2b 38 36 31 33 38 31 30 | ...K....+8613810
  17.   00000090: 32 34 33 30 30 31 00 d7.38 32 32 30 30 31 00 96 | 243001..822001..
  18.   000000a0: 54 68 69 73 20 69 73 20.61 20 74 65 73 74 2e 00 | This is a test..
  19.   000000b0: 8a 80 88 06 80 04 4b e3.c7 c5 86 80 90 81 d6 03 | ......K.........
  20.   000000c0: 0d e2 b0               .                        | ...            
  21. }
  22. [2010-05-07 15:55:53.347] [FINER] [mmscclient_5401] [MMSCProcessor.java:56] [ ] [MMSG to MMSC]
  23. Begin to dispose message from MMSGserver!
  24. [2010-05-07 15:55:53.348] [FINER] [mmscclient_5401] [MMSCProcessor.java:124] [ ] [MMSG to MMSC]
  25. PDU message detail is:
  26. MessageType = MM7-Submit.req
  27. TransactionID = 0110000000002100507155553001
  28. MM7Version = 6.3.0
  29. To = [+8613810243001]
  30. Date = 2010-05-07 15:55:53 +0800
  31. DeliveryReport = YES
  32. Expiry = 2010-05-07 15:56:53 +0800
  33. MessageClass = Personal
  34. ReadReply = NO
  35. Subject = This is a test.
  36. MMSCID = 910000
  37. VASPID = 800100
  38. VASID = 7788
  39. ServiceCode = 822001
  40. MMSGMessageID = 050715555380080001102
  41. RealVASPID = 822000
  42. RealVASID = 7800
  43. RealServiceCode = 121000
  44. [2010-05-07 15:55:53.348] [FINER] [mmscclient_5401] [MMSCProcessor.java:240] [ ] [MMSG to MMSC]
  45. MMSC Don't Support DR Optimization
  46. [2010-05-07 15:55:53.348] [FINER] [mmscclient_5401] [MMSCProxyHTTPImp.java:461] [ ] [MMSG to MMSC]
  47. MMSCURL(soap) is: http://10.137.48.60:1190/mmsc
  48. [2010-05-07 15:55:53.382] [FINEST] [mmscclient_5401] [MMSCProxyHTTPImp.java:778] [ ] [MMSG to MMSC]
  49. Get response from MMSC, detail:
  50. <?xml version="1.0"?><env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header><mm7:TransactionID xmlns:mm7="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-0">0110000000002100507155553001</mm7:TransactionID></env:Header><env:Body><SubmitRsp xmlns="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-0"><MM7Version>6.3.0</MM7Version><Status><StatusCode>1000</StatusCode></Status><MessageID>050708001402708220010</MessageID></SubmitRsp></env:Body></env:Envelope>
  51. [2010-05-07 15:55:53.382] [FINER] [mmscclient_5401] [MMSCProxyHTTPImp.java:1140] [ ] [MMSCProxyHTTPImp]
  52. get response from MMSC, detail:
  53. MessageType = MM7-Submit.res
  54. TransactionID = 0110000000002100507155553001
  55. MM7Version = 6.3.0
  56. MessageID = 050708001402708220010
  57. StatusCode = 1000
  58. [2010-05-07 15:55:53.443] [FINEST] [mmscclient_5401] [MMSCProcessor.java:665] [ ] [insert data successful. MMSGMessageID = 050715555380080001102, MMSCMessageID = 050708001402708220010 tableName:MMSGMMSCMsgIDMap04 , current time is: Fri May 07 15:55:53 CST 2010]
  59. [2010-05-07 15:55:53.469] [FINER] [mmscclient_5401] [MMSCProcessor.java:449] [ ] [MMSCProxyHTTPImp]
  60. Send response to Server, detail:
  61. MessageType = MM7-Submit.res
  62. TransactionID = 0110000000002100507155553001
  63. MM7Version = 6.3.0
  64. MessageID = 050708001402708220010
  65. StatusCode = 1000
复制代码
上行流程

SVC日志片段

shell
  1. [2010-05-07 16:00:16 177][LgTp:FRSMSG][AfOrgn:][Sndr:+8613810243001][Rcvr:7800121000][FwdAddr:][SqncNum:3][SessID:0120000000003100507160016][MsgID:050716001680080001203][TransID:tid00001004][ExMsgID:][MPRP:MM7][MsgType:MM7_DELIVER_REQ][AfrAtrbt:RCV][AfrStat:OK]; SV:NULL; MsgCls:NULL; DR:NULL; RR:NULL; Expiry:-1 Second(s); MsgSz:0 Byte(s); VASPID:; VASID:; SrvCd:; DlvrType:; SessType:Normal;
  2. [2010-05-07 16:00:16 177][LgTp:SRVMSG][AfOrgn:][Sndr:+8613810243001][Rcvr:7800121000][FwdAddr:][SqncNum:3][SessID:0120000000003100507160016][MsgID:050716001680080001203][TransID:tid00001004][ExMsgID:][MPRP:MM7][MsgType:MM7_DELIVER_RES][AfrAtrbt:SND][AfrStat:OK]; MM7RspStat:SUCCESS;
  3. [2010-05-07 16:00:16 182][LgTp:OFLWVR][Sndr:+8613810243001][Rcvr:7800121000][FwdAddr:][SessID:0120000000003100507160016][MsgID:050716001680080001203][ExMsgID:][FlwCls:NORMAL]; FlwOvrStat:SUBMIT_OK; FlwOvrStatCode:0400; DtlCd:STAT_SUBMIT_SUCCESS; DlvrTimer:0 Second(s);
  4. [2010-05-07 16:00:16 182][LgTp:ENTRLS][SessID:0120000000003100507160016][MsgID:050716001680080001203][ExMsgID:][EntAct:SUBMIT_SESSION_RELEASE]; RealFlwCls:NORMAL;
  5. [2010-05-07 16:00:16 183][LgTp:SRVMSG][AfOrgn:][Sndr:+8613810243001][Rcvr:7800121000][FwdAddr:][SqncNum:-1][SessID:0120000000004100507160016][MsgID:050716001680080001203][TransID:0120000000004100507160016001][ExMsgID:][MPRP:MM7][MsgType:MM7_DELIVER_REQ][AfrAtrbt:SND][AfrStat:SNDING]; SV:SHOW; MsgCls:PRSL; DR:NO; RR:NO; Expiry:100 Second(s); MsgSz:0 Byte(s); VASPID:822000; VASID:7800; SrvCd:121000; DlvrType:NORMAL; SessType:Normal;
  6. [2010-05-07 16:00:16 203][LgTp:SRVMSG][AfOrgn:][Sndr:+8613810243001][Rcvr:7800121000][FwdAddr:][SqncNum:0][SessID:0120000000004100507160016][MsgID:050716001680080001203][TransID:0120000000004100507160016001][ExMsgID:][MPRP:MM7][MsgType:MM7_DELIVER_RES][AfrAtrbt:RCV][AfrStat:OK]; MM7RspStat:SUCCESS;ResOriginStat:1000;
  7. [2010-05-07 16:00:16 203][LgTp:TFLWVR][Sndr:+8613810243001][Rcvr:7800121000][FwdAddr:][SessID:0120000000004100507160016][MsgID:050716001680080001203][ExMsgID:][FlwCls:NORMAL]; FlwOvrStat:DELIVER_OK; FlwOvrStatCode:1100; DtlCd:STAT_FRWRD_SNDR_ADDR_IN_FRWRD_RCVR_USER_BLKLST; RealFlwCls:NORMAL;
  8. [2010-05-07 16:00:16 207][LgTp:ENTRLS][SessID:0120000000004100507160016][MsgID:050716001680080001203][ExMsgID:][EntAct:DELIVER_SESSION_RELEASE]; RealFlwCls:NORMAL;
  9. [2010-05-07 16:00:16 207][LgTp:ENTRLS][MsgID:050716001680080001203][ExMsgID:][EntAct:ORIGINMSG_RELEASE];
复制代码
批价鉴权

验证了AOMT和MOAT批价鉴权流程,流程通畅。
二次确认流程

工具日志片段

shell
  1. [2010-05-08 16:19:54:447]  收到HTTP主动请求 AuthPriceReq, TransactionID=8008000000000007
  2. [2010-05-08 16:19:54:447]  返回响应 AuthPriceResp, hRet = 0
  3. [2010-05-08 16:19:59:447]  开始发送OnDemandReq
  4. [2010-05-08 16:19:59:447]  收到响应OnDemandRes, hRet = 0
复制代码
计费话单

shell
  1. 0507161533800800011060000,008613810243001,,0,008613810243001,822000,,5,1,4,0,3,0,0,1,2,0,1100,910000,800800,822000,7800,121000,,2010
  2. 0507161533,20100507161538,,00000,1,6,0,0,0,0,,
复制代码
统计话单

shell
  1. 0507161533800800011060000,008613810243001,,0,008613810243001,822000,,0,1,4,0,3,0,0,1,2,0,0400,910000,800800,822000,7800,121000,,20100507161533,20100507161538,,00000,1,6,0,0,0,0,,1,1,0507161533800800011060000,008613810243001,,0,008613810243001,822000,,5,1,4,0,3,0,0,1,2,0,1100,910000,800800,822000,7800,121000,,2010
  2. 0507161533,20100507161538,,00000,1,6,0,0,0,0,,
  3. ,1,
复制代码
支持DR优化

流程正常
Mmsclient日志片段

shell
  1. [2010-05-07 16:18:18.985] [FINEST] [mmscclient_5401] [SocketConnection.java:539] [ ] [Receive Message]
  2. Receive message from module[1], binary stream:
  3. 16:18:18.985(Tools.java:374) byte[297] @15430449 {
  4.     [HEX]    0  1  2  3  4  5  6  7-  8  9  a  b  c  d  e  f | 0123456789abcdef
  5.   ----------------------------------------------------------------------------
  6.   00000000: 00 00 00 c5 17 40 00 00.ff ff ff ff ff ff 00 03 | .....@..........
  7.   00000010: 00 01 10 01 00 02 00 4a.15 19 00 00 00 00 ff ff | .......J........
  8.   00000020: ff ff 8c c0 98 30 31 32.30 30 30 30 30 30 30 30 | .....01200000000
  9.   00000030: 31 32 31 30 30 35 30 37.31 36 31 38 31 38 30 30 | 1210050716181800
  10.   00000040: 31 00 f1 30 35 30 37 31.36 31 38 31 38 38 30 30 | 1..0507161818800
  11.   00000050: 38 30 30 30 31 32 30 37.00 ea 38 32 32 30 30 30 | 80001207..822000
  12.   00000060: 00 eb 37 38 30 30 00 ec.31 32 31 30 30 30 00 d5 | ..7800..121000..
  13.   00000070: 02 06 30 d8 38 30 30 31.30 30 00 d9 37 37 38 38 | ..0.800100..7788
  14.   00000080: 00 85 04 4b e3 cc ca 97.2b 38 36 31 33 38 31 30 | ...K....+8613810
  15.   00000090: 32 34 33 30 30 31 00 d7.38 32 32 30 30 31 00 96 | 243001..822001..
  16.   000000a0: 54 68 69 73 20 69 73 20.61 20 74 65 73 74 2e 00 | This is a test..
  17.   000000b0: 8a 80 88 06 80 04 4b e3.cd 06 86 80 90 81 d6 03 | ......K.........
  18.   000000c0: 0d e2 b0               .                        | ...            
  19. }
  20. [2010-05-07 16:18:18.986] [FINER] [mmscclient_5401] [MMSCProcessor.java:56] [ ] [MMSG to MMSC]
  21. Begin to dispose message from MMSGserver!
  22. [2010-05-07 16:18:18.986] [FINER] [mmscclient_5401] [MMSCProcessor.java:124] [ ] [MMSG to MMSC]
  23. PDU message detail is:
  24. MessageType = MM7-Submit.req
  25. TransactionID = 0120000000012100507161818001
  26. MM7Version = 6.3.0
  27. To = [+8613810243001]
  28. Date = 2010-05-07 16:18:18 +0800
  29. DeliveryReport = YES
  30. Expiry = 2010-05-07 16:19:18 +0800
  31. MessageClass = Personal
  32. ReadReply = NO
  33. Subject = This is a test.
  34. MMSCID = 910000
  35. VASPID = 800100
  36. VASID = 7788
  37. ServiceCode = 822001
  38. MMSGMessageID = 050716181880080001207
  39. RealVASPID = 822000
  40. RealVASID = 7800
  41. RealServiceCode = 121000
  42. [2010-05-07 16:18:18.986] [FINER] [mmscclient_5401] [MMSCProcessor.java:231] [ ] [MMSG to MMSC]
  43. MMSC Support DR Optimization
  44. [2010-05-07 16:18:18.986] [FINER] [mmscclient_5401] [MMSCProxyHTTPImp.java:461] [ ] [MMSG to MMSC]
  45. MMSCURL(soap) is: http://10.137.48.60:1190/mmsc
  46. [2010-05-07 16:18:19.022] [FINEST] [mmscclient_5401] [MMSCProxyHTTPImp.java:778] [ ] [MMSG to MMSC]
  47. Get response from MMSC, detail:
  48. <?xml version="1.0"?><env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header><mm7:TransactionID xmlns:mm7="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-0">050716181880080001207</mm7:TransactionID></env:Header><env:Body><SubmitRsp xmlns="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-6-MM7-1-0"><MM7Version>6.3.0</MM7Version><Status><StatusCode>1000</StatusCode></Status><MessageID>050708224000108220010</MessageID></SubmitRsp></env:Body></env:Envelope>
  49. [2010-05-07 16:18:19.023] [FINER] [mmscclient_5401] [MMSCProxyHTTPImp.java:1140] [ ] [MMSCProxyHTTPImp]
  50. get response from MMSC, detail:
  51. MessageType = MM7-Submit.res
  52. TransactionID = 050716181880080001207
  53. MM7Version = 6.3.0
  54. MessageID = 050708224000108220010
  55. StatusCode = 1000
  56. [2010-05-07 16:18:19.023] [FINER] [mmscclient_5401] [MMSCProcessor.java:449] [ ] [MMSCProxyHTTPImp]
  57. Send response to Server, detail:
  58. MessageType = MM7-Submit.res
  59. TransactionID = 0120000000012100507161818001
  60. MM7Version = 6.3.0
  61. MessageID = 050708224000108220010
  62. StatusCode = 1000
复制代码
要求包月计费

shell
  1. [2010-05-08 17:04:28:277]  收到HTTP主动请求 AuthPriceReq, TransactionID=8008000000000003
  2. [2010-05-08 17:04:28:277]  返回响应 AuthPriceResp, hRet = 0
  3. [2010-05-08 17:04:28:480]  收到HTTP主动请求 RequireMonthFeeReq, TransactionID=8008000000000004
  4. [2010-05-08 17:04:28:480]  返回响应 RequireMonthFeeReq, hRet = 0
复制代码
计费话单

shell
  1. 0507170006800800012030000,008613810243001,,0,822000,008613810243001,,2,1,3,0,3,0,0,1,2,0,1000,800800,910000,822000,7800,121000,,2010
  2. 0507170006,20100507170007,,00000,1,1,1,0,0,0,042803088220010000035,
复制代码
统计话单

shell
  1. 0507170006800800012030000,008613810243001,,0,822000,008613810243001,,2,1,3,0,3,0,0,1,2,0,0100,800800,910000,822000,7800,121000,,2010
  2. 0507170006,20100507170006,,00000,1,1,1,0,0,0,,,1,
  3. 0507170006800800012030000,008613810243001,,0,822000,008613810243001,,3,1,3,0,3,0,0,1,2,0,1000,800800,910000,822000,7800,121000,,2010
  4. 0507170006,20100507170007,,00000,1,1,1,0,0,0,,1,1,
复制代码
业务日志查询




来源: Transcendent
文章作者: Gavin Wang
文章链接: 联通数据库切换验证 | Transcendent
本文章著作权归作者全部,任何形式的转载都请注明出处。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

立聪堂德州十三局店

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表