Raúl Omar Rossi

Raúl Omar Rossi (August 13, 1938 – February 2, 2003) was a prelate of the Roman Catholic Church. He served as auxiliary bishop of Buenos Aires from 1992 till 2000, when he became bishop of San Martín.

Life

Born in Gualeguaychú, Rossi was ordained to the priesthood on December 3, 1966.

On May 20, 1992, he was appointed auxiliary bishop of Buenos Aires and titular bishop of Enera. Rossi received his episcopal consecration on the following June 27 from Antonio Cardinal Quarracino, archbishop of Buenos Aires, with the auxiliary bishop of Buenos Aires, Mario José Serra, and the auxiliary bishop of Buenos Aires, Eduardo Vicente Mirás, serving as co-consecrators.

On February 22, 2000, he was appointed bishop of San Martín, where he was installed on the following May 1.

He died on 2 February 2003.

gollark: ```sqlWITH RECURSIVE c(x)AS(VALUES(99)UNION ALL SELECT x-1 FROM c WHERE x>0),a(x, s)AS(SELECT x,SUBSTR(' bottles',1,(x<>1)+7)||' of beer'FROM c)SELECT PRINTF('%d%s on the wall%d%sTake one down, pass it around%d%s on the wall',a.x,a.s,a.x,a.s,a.x-1,b.s)FROM a JOIN a AS b ON b.x=a.x-1;```
gollark: It is done.
gollark: I'll go swap out the tables and variables for smaller ones later™.
gollark: This is an EXTREMELY reasonable way to do conditionals, lyric lυ.
gollark: ```sqlWITH RECURSIVE counter(x) AS (VALUES(10) UNION ALL SELECT x-1 FROM counter WHERE x>1), bottle(x, str) AS (SELECT x, SUBSTR(' bottles', 1, (x <> 1) + 7) || ' of beer' FROM counter)SELECT PRINTF('%d%s on the wall%d%sTake one down, pass it around%d%s on the wall', x, str, x, str, x - 1, (SELECT str FROM bottle WHERE x = x - 1)) FROM bottle;```

References

    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.