Thursday, August 14, 2008

Argentina in Beijing 2008 Olympic Part-1

  • Hola,

    First of all I would like to apologize to all readers here cos I wasn’t able to provide updates on the Olympics match, as it happens. It’s difficult for me because I couldn’t able to watch the Olympics games L . So this mail will give you the consolidated updates of three matches that Argentina won.


    Before that I have observed that many peoples are not giving that much attention on Olymics football games. Guys wake up ..Treat these games as Soccer world Cup. In this Beijing 2008 Olympic you could see many main players Messi, Riquelme, Robino, Ronaldino ,Viduka, Dorba etc. Let me tell all the teams are playing quality games.

    Anyways .. back to Business ..Argentina have won all their battles against Ivory Costa, Australia and Serbia and qualified for the quarter-finals where they are scheduled to met in the Nederland . If they won then Semi final will be big Party for us cos if Argentina beat Netherlands and Brazil beat Cameroon in the quarter-finals then the South American teams are scheduled to meet in the semi-finals. Sounds Gr8J.

    In last game Argentina beat Serbia 2-0. In that match Argentina coach Sergio Batista did not bring Lionel messi, Riquelme and Javier Mascherano. The goal scored by Ezequil Lavezzi and fantastic free kick by Diego Buonanotte.

    In the first match of the Olympic Lionel Messi starred for Argentina. It has been long controversy for the Lionel Messi for the olymic games. Barcelona doesn't want Lionel Messi to be in Argentina's lineup even but Lionel messi wanted to play for his beloved country ..so that leads to lot of mess but thanks God now messi is allowed to play for his country . In that first match Messi scored the opening Goal … and what a pass by Riquelme … He is really one Blessed Player on the Earth.. No words for Juan Riquelme ..(in my next article I will only speak about Riquelme J). So Argentina won that game by 2-1. Lautaro Acosta scored second goal for Argentina.

    Argentina played second match against Australia and once again Masterful Lionel Messi inspired Argentina to a hard-fought 1-0 win over a defensive Australia. In that match Ezequiel Lavezzi scored only goal for Argentina.

    That was the complete summery for three games. The next quarter-final game will be against Nederland on Saturday. Hope we will see Argentina in semi final against Brazil. That will be gr8 Sega .

    So thanks for reading .. I will update u soon ..God bless u all ..Take care …Vamos Argentina …

    Vandemataram ----Jai Hind…..
    JaiHind

We won by 4-1

We won 4-1

I am breathless, short of words, elated and most excited. Indian football team deserves a heartiest congratulations from all Indians. AFC Challenge cup final at Ambedkar Stadium on 13th August 2008, has been one of the most glorious moments in Indian Football history. We saw boys tremendously charged up right from the kick up. 3 goals in 23 minutes against Tajikistan

Congrats Sunil for your first international hattrick on the day it was required for team India. Congratulations Baichung and your team for taking India to Asia Cup 2011 at Qatar. 24 years of thirst has been quenched.

With today's win against Tajikistan we have arrived at the elite Asian stage. Full credit for this win goes to the coach Bob Houghton and the players.

Chhetri: A New Era For Indian Football


Viva India ...God Bless

Wednesday, August 13, 2008

Comma seperated columns

DECLARE
   vl_n_counter NUMBER := 0;

   vl_n_itrncntr NUMBER := 1

   vl_c_colrecord cols.column_name%TYPE;
CURSOR cur_col
IS
   SELECT column_name
   FROM cols
   WHERE table_name = 'EMP;
BEGIN
   OPEN cur_col;

   LOOP
   FETCH cur_col
   INTO vl_c_colrecord;

   EXIT WHEN cur_col%NOTFOUND;
   vl_n_counter := cur_col%ROWCOUNT;
   END LOOP;

   CLOSE cur_col;

       DBMS_OUTPUT.put_line ('(');
   vl_n_itrncntr := 1;

   FOR rec_col IN cur_col
   LOOP
      IF vl_n_itrncntr = vl_n_counter
      THEN
          DBMS_OUTPUT.put_line (rec_col.column_name);
      ELSE
         DBMS_OUTPUT.put_line (rec_col.column_name ',');
      END IF;

      vl_n_itrncntr := vl_n_itrncntr + 1;
   END LOOP;

      DBMS_OUTPUT.put_line (')');
END;



Method 2nd using V arrays

DECLARE
TYPE vl_t_columnlist IS VARRAY (100) OF VARCHAR2 (50);

vl_c_listcol vl_t_columnlist;
BEGIN
SELECT column_name
BULK COLLECT INTO vl_c_listcol
FROM cols
WHERE table_name = 'EMP';

FOR i IN vl_c_listcol.FIRST .. vl_c_listcol.LAST
LOOP
IF i = vl_c_listcol.COUNT
THEN
DBMS_OUTPUT.put_line (vl_c_listcol (i));
ELSE
DBMS_OUTPUT.put_line (vl_c_listcol (i) ',');
END IF;
END LOOP;

DBMS_OUTPUT.put_line (')');
END;