Update Database Preparation in Oracle Solaris Cluster Data Service for Oracle GoldenGate Guide (20170637)

Replace the final mysql command of Database Preparation in Oracle Solaris Cluster Data Service for Oracle GoldenGate Guide with the following command:

root@vzsoma1a:~# /usr/local/mysql/bin/mysql -h soma-1 -ugg -pgg
mysql> use golden
mysql> create table tab1 (row1 int not null, row2 char(64));
mysql> create unique index ind1 on tab1(row1);
mysql> exit