<div dir="ltr"><span style="font-size:12.8px">Dear Tatsuo,</span><br><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">I have tried the </span><span style="font-size:12.8px"> </span><span style="font-size:12.8px">failover_command in various ways as following:</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">1. '/usr/local/etc/failover.sh %d %P "%H" %R'</span><br></div><div><span style="font-size:12.8px">2. '/usr/local/etc/failover.sh %d %P "%H" </span><span style="font-size:12.8px"> /var/log/pgpool</span><span style="font-size:12.8px">'</span><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">3. '/usr/local/etc/failover.sh 192.168.10.41 192.168.10.41 192.168.10.54 /var/log/pgpool'</span></div><div><span style="font-size:12.8px">4. 'ssh <a href="mailto:postgres@192.168.10.54">postgres@192.168.10.54</a> touch /var/log/pgpool/trigger/trigger_file1'</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Command 3 and 4 works if I execute them from command line. But none of these works automatically when Primay Server is down.</span></div><div><span style="font-size:12.8px"><br></span></div><div><span style="font-size:12.8px">Best Regards,</span></div><div><span style="font-size:12.8px">Giles.</span></div><div><span style="font-size:12.8px"> </span></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 6 October 2015 at 15:39, Giles Gomes <span dir="ltr"><<a href="mailto:giles.gomes@retailephant.com" target="_blank">giles.gomes@retailephant.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Dear Tatsuo,<div><br></div><div>Thanks for your quick response. I have edited the failover_command as following:</div><div><div><br></div><div>'/usr/local/etc/failover.sh %d %P "%H" %R'</div></div><div><br></div><div>But still it is not working :( </div><div><br></div><div>Best regards,</div><div>Giles.</div></div><div class="gmail_extra"><div><div class="h5"><br><div class="gmail_quote">On 6 October 2015 at 05:23, Tatsuo Ishii <span dir="ltr"><<a href="mailto:ishii@postgresql.org" target="_blank">ishii@postgresql.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>> Hi Tatsuo,<br>
><br>
> Please help me to solve the following problems.<br>
><br>
</span>> *Problem:1*<br>
<span>> Replication is working properly after I added  'password=1234' at<br>
> primary_conninfo<br>
> parameter in recovery.conf, but Standby Server didn't started automatically<br>
> after clicking "Recovery" from pgpool. I have edited the path of PFCTL<br>
> in pgpool_remote_start<br>
> file, do I need to edit anything else there?<br>
><br>
</span>> *Problem:2*<br>
<span>> I have stopped the Primary Server, but autofailover didn't work. Here are<br>
> some logs from Standby Server when I had stopped the Primary Server.<br>
<br>
<br>
</span>You have: failover_command = '/usr/local/etc/failover.sh %d "%h" %p %D<br>
%m %M "%H" %P' in pgpool.conf but your failover.sh does below. You are<br>
comparing failing node id with failing hostname, which never succeeds.<br>
<br>
#!/bin/bash -x<br>
FALLING_NODE=$1         # %d<br>
OLDPRIMARY_NODE=$2      # %P<br>
NEW_PRIMARY=$3          # %H<br>
PGDATA=$4               # %R<br>
<br>
if [ $FALLING_NODE = $OLDPRIMARY_NODE ]; then<br>
[snip]<br>
<div><div><br>
> -----------------------------------------------------------------<br>
> 9381 2015-10-05 11:47:01 UTC STATEMENT:  INSERT INTO rep_test VALUES<br>
> ('Shumi');<br>
> 9381 2015-10-05 11:47:32 UTC LOG:  statement: select * from rep_test;<br>
> 9381 2015-10-05 11:48:04 UTC LOG:  statement: select * from rep_test;<br>
> 9521 2015-10-05 11:49:28 UTC LOG:  statement: select * from t1;<br>
> 9521 2015-10-05 11:49:42 UTC LOG:  statement: select * from t1;<br>
> 9357 2015-10-05 11:53:22 UTC LOG:  replication terminated by primary server<br>
> 9357 2015-10-05 11:53:22 UTC DETAIL:  End of WAL reached on timeline 1 at<br>
> 0/4D000090.<br>
> 9357 2015-10-05 11:53:22 UTC FATAL:  could not send end-of-streaming<br>
> message to primary: no COPY in progress<br>
> 9356 2015-10-05 11:53:22 UTC LOG:  invalid record length at 0/4D000090<br>
> 9536 2015-10-05 11:53:28 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9537 2015-10-05 11:53:29 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9538 2015-10-05 11:53:30 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9539 2015-10-05 11:53:31 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9540 2015-10-05 11:53:32 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9542 2015-10-05 11:53:32 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9543 2015-10-05 11:53:33 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9544 2015-10-05 11:53:34 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9545 2015-10-05 11:53:35 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9546 2015-10-05 11:53:36 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9547 2015-10-05 11:53:37 UTC FATAL:  could not connect to the primary<br>
> server: could not connect to server: Connection refused<br>
> Is the server running on host "192.168.10.54" and accepting<br>
> TCP/IP connections on port 5432?<br>
> 9548 2015-10-05 11:53:37 UTC LOG:  statement: SELECT pg_is_in_recovery()<br>
> 9550 2015-10-05 11:53:42 UTC FATAL:  could not connect to the primary<br>
> server: could not connect to server: Connection refused<br>
> Is the server running on host "192.168.10.54" and accepting<br>
> TCP/IP connections on port 5432?<br>
> ---------------------------------------------------------------------------------------------------------------------------------------------<br>
><br>
> Please check the attachment.<br>
><br>
> Best regards,<br>
> Giles.<br>
><br>
><br>
> On 4 October 2015 at 11:36, Giles Gomes <<a href="mailto:giles.gomes@retailephant.com" target="_blank">giles.gomes@retailephant.com</a>><br>
> wrote:<br>
><br>
>> Hi Tatsuo,<br>
>><br>
>> Thanks for your response. I have attached postgresql.conf of primary and<br>
>> recovery.conf of standby with this email.<br>
>><br>
>> Regards,<br>
>> Giles.<br>
>><br>
>> On 3 October 2015 at 13:08, Tatsuo Ishii <<a href="mailto:ishii@postgresql.org" target="_blank">ishii@postgresql.org</a>> wrote:<br>
>><br>
>>> Seems streaming replication is not working.  Standby requests a WAL<br>
>>> segment but primary does not have it. Can you show me postgresql.conf<br>
>>> of primary and recovery.conf of standby?<br>
>>><br>
>>> Best regards,<br>
>>> --<br>
>>> Tatsuo Ishii<br>
>>> SRA OSS, Inc. Japan<br>
>>> English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_en.php</a><br>
>>> Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
>>><br>
>>> > Hi Tatsuo,<br>
>>> ><br>
>>> > I was able to minimize some errors at master (primary) PostgreSQL's<br>
>>> log. I<br>
>>> > have attached the new log with this email.<br>
>>> ><br>
>>> > Best regards,<br>
>>> > Giles.<br>
>>> ><br>
>>> ><br>
>>> > On 30 September 2015 at 18:59, Giles Gomes <<br>
>>> <a href="mailto:giles.gomes@retailephant.com" target="_blank">giles.gomes@retailephant.com</a>><br>
>>> > wrote:<br>
>>> ><br>
>>> >> Hi Tatsuo,<br>
>>> >><br>
>>> >> The pgpool log, master (primary) PostgreSQL's log and basebackup,sh<br>
>>> have<br>
>>> >> been attached with this email.<br>
>>> >><br>
>>> >> Best regards,<br>
>>> >> Giles.<br>
>>> >><br>
>>> >> On 28 September 2015 at 16:50, Giles Gomes <<br>
>>> <a href="mailto:giles.gomes@retailephant.com" target="_blank">giles.gomes@retailephant.com</a>><br>
>>> >> wrote:<br>
>>> >><br>
>>> >>> Hi Tatsuo,<br>
>>> >>><br>
>>> >>> The pgpool log, master (primary) PostgreSQL's log and basebackup,sh<br>
>>> have<br>
>>> >>> been attached with this email.<br>
>>> >>><br>
>>> >>> Best regards,<br>
>>> >>> Giles.<br>
>>> >>><br>
>>> >>> On 27 September 2015 at 11:06, Tatsuo Ishii <<a href="mailto:ishii@postgresql.org" target="_blank">ishii@postgresql.org</a>><br>
>>> wrote:<br>
>>> >>><br>
>>> >>>> pcp_recovery_node command failed for some reason.  Unfortunately the<br>
>>> >>>> error code emitted by pgpoolAdmin is not very helpful. pgpool log and<br>
>>> >>>> master (primary) PostgreSQL's log when the command ran will be<br>
>>> >>>> more helpful.<br>
>>> >>>><br>
>>> >>>> Best regards,<br>
>>> >>>> --<br>
>>> >>>> Tatsuo Ishii<br>
>>> >>>> SRA OSS, Inc. Japan<br>
>>> >>>> English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_en.php</a><br>
>>> >>>> Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
>>> >>>><br>
>>> >>>> > Hi, how are you??<br>
>>> >>>> > A query, you could solve this problem you had ??<br>
>>> >>>> > I have the same error connection error pgpooladmin<br>
>>> >>>> ><br>
>>> >>>> ><br>
>>> >>>> > 2015-09-20 11:29 GMT-03:00 Giles Gomes <<br>
>>> <a href="mailto:giles.gomes@retailephant.com" target="_blank">giles.gomes@retailephant.com</a>>:<br>
>>> >>>> ><br>
>>> >>>> >> Hello Tatsuo Ishii,<br>
>>> >>>> >><br>
>>> >>>> >> After enabling health check parameters 'postgres' is showing up<br>
>>> now.<br>
>>> >>>> But<br>
>>> >>>> >> when I click on Recovery an error is generating.<br>
>>> >>>> >> Error Code: e1012, Error Message: pcp_recovery_node command error<br>
>>> >>>> occurred and<br>
>>> >>>> >> 'Stop', 'Restart', 'Reload' and 'Remove' buttons are still<br>
>>> disabled.<br>
>>> >>>> >><br>
>>> >>>> >> I have attached the screen shots and waiting for your help.<br>
>>> >>>> >><br>
>>> >>>> >> Best regards,<br>
>>> >>>> >> Giles.<br>
>>> >>>> >><br>
>>> >>>> >><br>
>>> >>>> >> On 17 September 2015 at 19:52, Giles Gomes <<br>
>>> >>>> <a href="mailto:giles.gomes@retailephant.com" target="_blank">giles.gomes@retailephant.com</a>><br>
>>> >>>> >> wrote:<br>
>>> >>>> >><br>
>>> >>>> >>> Hello Tatsuo Ishii,<br>
>>> >>>> >>><br>
>>> >>>> >>> I was able to start the Standby Database and Successfully<br>
>>> Installed<br>
>>> >>>> >>> pgpoolAdmin. But 'postgres' is showing down and 'Stop',<br>
>>> 'Restart',<br>
>>> >>>> 'Reload'<br>
>>> >>>> >>> and 'Remove' buttons are disabled.<br>
>>> >>>> >>><br>
>>> >>>> >>> pgpool.log and the screen shot is attached with this email.<br>
>>> >>>> >>><br>
>>> >>>> >>> --<br>
>>> >>>> >>> Best regards,<br>
>>> >>>> >>> Giles Cornelius Gomes<br>
>>> >>>> >>> Database Administrator<br>
>>> >>>> >>> Impel IT Solutions Ltd.<br>
>>> >>>> >>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
>>> >>>> >>><br>
>>> >>>> >>> On 16 September 2015 at 21:24, Giles Gomes <<br>
>>> >>>> <a href="mailto:giles.gomes@retailephant.com" target="_blank">giles.gomes@retailephant.com</a>><br>
>>> >>>> >>> wrote:<br>
>>> >>>> >>><br>
>>> >>>> >>>> Hi Tatsuo,<br>
>>> >>>> >>>><br>
>>> >>>> >>>> Thanks for your response. install-functions.sh has worked<br>
>>> properly<br>
>>> >>>> >>>> after installing postgresql-server-dev-9.3.<br>
>>> >>>> >>>><br>
>>> >>>> >>>> I was also able to run basebackup.sh, although "mkdir: cannot<br>
>>> create<br>
>>> >>>> >>>> directory ‘/var/lib/postgresql/9.3/main/pg_xlog’: File exists"<br>
>>> is<br>
>>> >>>> showing<br>
>>> >>>> >>>> while running this as following:<br>
>>> >>>> >>>><br>
>>> >>>> >>>><br>
>>> >>>><br>
>>> -------------------------------------------------------------------------------------------<br>
>>> >>>> >>>> postgres@osspc17:~/9.3/main$ ./basebackup.sh<br>
>>> >>>> >>>>  pg_start_backup<br>
>>> >>>> >>>> -----------------<br>
>>> >>>> >>>>  0/1C000028<br>
>>> >>>> >>>> (1 row)<br>
>>> >>>> >>>><br>
>>> >>>> >>>> mkdir: cannot create directory<br>
>>> >>>> ‘/var/lib/postgresql/9.3/main/pg_xlog’:<br>
>>> >>>> >>>> File exists<br>
>>> >>>> >>>> mytemp23915<br>
>>> >>>> >>>><br>
>>>  100%<br>
>>> >>>> 153<br>
>>> >>>> >>>> 0.2KB/s   00:00<br>
>>> >>>> >>>> NOTICE:  pg_stop_backup complete, all required WAL segments have<br>
>>> >>>> been<br>
>>> >>>> >>>> archived<br>
>>> >>>> >>>>  pg_stop_backup<br>
>>> >>>> >>>> ----------------<br>
>>> >>>> >>>>  0/1C0000F0<br>
>>> >>>> >>>> (1 row)<br>
>>> >>>> >>>><br>
>>> >>>> >>>><br>
>>> >>>><br>
>>> --------------------------------------------------------------------------------------------<br>
>>> >>>> >>>><br>
>>> >>>> >>>> After running this script I have restarted the standby database<br>
>>> as<br>
>>> >>>> >>>> following:<br>
>>> >>>> >>>><br>
>>> >>>> >>>> $ service postgresql restart<br>
>>> >>>> >>>><br>
>>> >>>> >>>> After restarting the database I am unable to login to database.<br>
>>> >>>> >>>> following error is showing:<br>
>>> >>>> >>>><br>
>>> >>>> >>>><br>
>>> >>>><br>
>>> --------------------------------------------------------------------------<br>
>>> >>>> >>>> postgres@osspc18:~$ psql<br>
>>> >>>> >>>> psql: FATAL:  the database system is starting up<br>
>>> >>>> >>>><br>
>>> >>>> >>>><br>
>>> >>>><br>
>>> --------------------------------------------------------------------------<br>
>>> >>>> >>>><br>
>>> >>>> >>>> What should I do now?<br>
>>> >>>> >>>><br>
>>> >>>> >>>> Best regards,<br>
>>> >>>> >>>> Giles.<br>
>>> >>>> >>>><br>
>>> >>>> >>>><br>
>>> >>>> >>>><br>
>>> >>>> >>>> On 16 September 2015 at 04:59, Tatsuo Ishii <<br>
>>> <a href="mailto:ishii@postgresql.org" target="_blank">ishii@postgresql.org</a>><br>
>>> >>>> >>>> wrote:<br>
>>> >>>> >>>><br>
>>> >>>> >>>>> > Hi Tatsuo,<br>
>>> >>>> >>>>> ><br>
>>> >>>> >>>>> > Thanks for your quick response. I was trying to configure<br>
>>> >>>> replication<br>
>>> >>>> >>>>> with<br>
>>> >>>> >>>>> > pgpool II between three VM.<br>
>>> >>>> >>>>> > 1. Pgpool Server. where pgpool-II-3.4.3 is installed .I wish<br>
>>> to<br>
>>> >>>> >>>>> install<br>
>>> >>>> >>>>> > Pgpool Admin here also.<br>
>>> >>>> >>>>> > 2. Primary Server, where  PostgreSQL 9.3.9 is installed.<br>
>>> >>>> >>>>> > 3. Standby Server, where  PostgreSQL 9.3.9 is installed.<br>
>>> >>>> >>>>> ><br>
>>> >>>> >>>>> > The main problem is I didn't get any complete document where<br>
>>> all<br>
>>> >>>> the<br>
>>> >>>> >>>>> > necessary steps are described. Last time I was following the<br>
>>> >>>> document<br>
>>> >>>> >>>>> below.<br>
>>> >>>> >>>>> ><br>
>>> >>>> >>>>> ><br>
>>> >>>><br>
>>> <a href="http://www.pgpool.net/pgpool-web/contrib_docs/simple_sr_setting2_3.3/" rel="noreferrer" target="_blank">http://www.pgpool.net/pgpool-web/contrib_docs/simple_sr_setting2_3.3/</a><br>
>>> >>>> >>>>> ><br>
>>> >>>> >>>>> > Here they told to run a script named install-functions.sh<br>
>>> >>>> >>>>> ><br>
>>> >>>> >>>>> > But following errors are showing while running it.<br>
>>> >>>> >>>>> ><br>
>>> >>>> >>>>><br>
>>> >>>><br>
>>> --------------------------------------------------------------------------------------------------------------------<br>
>>> >>>> >>>>> > postgres@osspc16:/home/vagrant$ ./install-functions.sh<br>
>>> >>>> >>>>> > Makefile:19: /usr/lib/postgresql/9.3/lib/pgxs/src/makefiles/<br>
>>> >>>> <a href="http://pgxs.mk" rel="noreferrer" target="_blank">pgxs.mk</a>:<br>
>>> >>>> >>>>> No<br>
>>> >>>> >>>>> > such fil<br>
>>> >>>> >>>>> >                      e or directory<br>
>>> >>>> >>>>> > make: *** No rule to make target<br>
>>> >>>> >>>>><br>
>>> >>>> >>>>> Seems like a PostgreSQL RPM installation problem, rather than a<br>
>>> >>>> >>>>> pgpool-II installation problem. Have you installed<br>
>>> postgresql-devel<br>
>>> >>>> >>>>> package?<br>
>>> >>>> >>>>><br>
>>> >>>> >>>>> Best regards,<br>
>>> >>>> >>>>> --<br>
>>> >>>> >>>>> Tatsuo Ishii<br>
>>> >>>> >>>>> SRA OSS, Inc. Japan<br>
>>> >>>> >>>>> English: <a href="http://www.sraoss.co.jp/index_en.php" rel="noreferrer" target="_blank">http://www.sraoss.co.jp/index_en.php</a><br>
>>> >>>> >>>>> Japanese:<a href="http://www.sraoss.co.jp" rel="noreferrer" target="_blank">http://www.sraoss.co.jp</a><br>
>>> >>>> >>>>><br>
>>> >>>> >>>><br>
>>> >>>> >>>><br>
>>> >>>> >>>><br>
>>> >>>> >>>> --<br>
>>> >>>> >>>> Best regards,<br>
>>> >>>> >>>> Giles Cornelius Gomes<br>
>>> >>>> >>>> Database Administrator<br>
>>> >>>> >>>> Impel IT Solutions Ltd.<br>
>>> >>>> >>>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
>>> >>>> >>>><br>
>>> >>>> >>><br>
>>> >>>> >>><br>
>>> >>>> >>><br>
>>> >>>> >>> --<br>
>>> >>>> >>> Best regards,<br>
>>> >>>> >>> Giles Cornelius Gomes<br>
>>> >>>> >>> Database Administrator<br>
>>> >>>> >>> Impel IT Solutions Ltd.<br>
>>> >>>> >>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
>>> >>>> >>><br>
>>> >>>> >><br>
>>> >>>> >><br>
>>> >>>> >><br>
>>> >>>> >> --<br>
>>> >>>> >> Best regards,<br>
>>> >>>> >> Giles Cornelius Gomes<br>
>>> >>>> >> Database Administrator<br>
>>> >>>> >> Impel IT Solutions Ltd.<br>
>>> >>>> >> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
>>> >>>> >><br>
>>> >>>> >> _______________________________________________<br>
>>> >>>> >> pgpool-general mailing list<br>
>>> >>>> >> <a href="mailto:pgpool-general@pgpool.net" target="_blank">pgpool-general@pgpool.net</a><br>
>>> >>>> >> <a href="http://www.pgpool.net/mailman/listinfo/pgpool-general" rel="noreferrer" target="_blank">http://www.pgpool.net/mailman/listinfo/pgpool-general</a><br>
>>> >>>> >><br>
>>> >>>> >><br>
>>> >>>><br>
>>> >>><br>
>>> >>><br>
>>> >>><br>
>>> >>> --<br>
>>> >>> Best regards,<br>
>>> >>> Giles Cornelius Gomes<br>
>>> >>> Database Administrator<br>
>>> >>> Impel IT Solutions Ltd.<br>
>>> >>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
>>> >>><br>
>>> >><br>
>>> >><br>
>>> >><br>
>>> >> --<br>
>>> >> Best regards,<br>
>>> >> Giles Cornelius Gomes<br>
>>> >> Database Administrator<br>
>>> >> Impel IT Solutions Ltd.<br>
>>> >> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
>>> >><br>
>>> ><br>
>>> ><br>
>>> ><br>
>>> > --<br>
>>> > Best regards,<br>
>>> > Giles Cornelius Gomes<br>
>>> > Database Administrator<br>
>>> > Impel IT Solutions Ltd.<br>
>>> > Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
>>><br>
>><br>
>><br>
>><br>
>> --<br>
>> Best regards,<br>
>> Giles Cornelius Gomes<br>
>> Database Administrator<br>
>> Impel IT Solutions Ltd.<br>
>> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
>><br>
><br>
><br>
><br>
> --<br>
> Best regards,<br>
> Giles Cornelius Gomes<br>
> Database Administrator<br>
> Impel IT Solutions Ltd.<br>
> Phone: <a href="tel:%2B88%2001%20714329389" value="+8801714329389" target="_blank">+88 01 714329389</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div></div></div><span class="">-- <br><div><div dir="ltr"><div><div dir="ltr">Best regards,<div>Giles Cornelius Gomes</div><div>Database Administrator</div><div>Impel IT Solutions Ltd.</div><div>Phone: +88 01 714329389 </div></div></div></div></div>
</span></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr">Best regards,<div>Giles Cornelius Gomes</div><div>Database Administrator</div><div>Impel IT Solutions Ltd.</div><div>Phone: +88 01 714329389 </div></div></div></div></div>
</div>