How do database operations (write, update, alter) on particular cell in a table are written to disk without overwriting entire file? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)SQL Server Optimization/Configuration for Inflexible ApplicationGetting “Conversion failed when converting the nvarchar value to data type int.”Sql Server 2012 Disk I/O Too highCreate transactional publication error in SQL Server 2014Move content between filestream containersSQL Server - What access do I have during a transaction rollback?Multiple databases, one backup fileLoad Testing When SQL Server Caching Is DisabledInvoke SQLCMD doesn't work when used with xp_cmdshellInvoke SQLCMD doesn't work when used with xp_cmdshell

tabularx column has extra padding at right?

What documents does someone with a long-term visa need to travel to another Schengen country?

What is the definining line between a helicopter and a drone a person can ride in?

Can this water damage be explained by lack of gutters and grading issues?

Should man-made satellites feature an intelligent inverted "cow catcher"?

Who's this lady in the war room?

When speaking, how do you change your mind mid-sentence?

Salesforce - multiple pre production environments

Why did Europeans not widely domesticate foxes?

How to mute a string and play another at the same time

What is the evidence that custom checks in Northern Ireland are going to result in violence?

Do chord progressions usually move by fifths?

What is the difference between 准时 and 按时?

Determine the generator of an ideal of ring of integers

Why do people think Winterfell crypts is the safest place for women, children & old people?

Short story about an alien named Ushtu(?) coming from a future Earth, when ours was destroyed by a nuclear explosion

Raising a bilingual kid. When should we introduce the majority language?

How to get a single big right brace?

Does traveling In The United States require a passport or can I use my green card if not a US citizen?

How to break 信じようとしていただけかも知れない into separate parts?

Why these surprising proportionalities of integrals involving odd zeta values?

What is the ongoing value of the Kanban board to the developers as opposed to management

Is there a way to convert Wolfram Language expression to string?

What helicopter has the most rotor blades?



How do database operations (write, update, alter) on particular cell in a table are written to disk without overwriting entire file?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)SQL Server Optimization/Configuration for Inflexible ApplicationGetting “Conversion failed when converting the nvarchar value to data type int.”Sql Server 2012 Disk I/O Too highCreate transactional publication error in SQL Server 2014Move content between filestream containersSQL Server - What access do I have during a transaction rollback?Multiple databases, one backup fileLoad Testing When SQL Server Caching Is DisabledInvoke SQLCMD doesn't work when used with xp_cmdshellInvoke SQLCMD doesn't work when used with xp_cmdshell



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








4















When I want to write to or alter particular cell of an excel file/table using python I'll use pandas read_csv then alter value in particular cell and write back to file with to_csv. But writing back to file seems to be overwriting the entire file with updated version of the file that differs only in single cell. This is a problem when am altering one or two cells in table of trillion rows and trillion columns.



When we are making write/alter database operations (like in SQL) on single cell out of trillion by trillion table, it seems to be making changes in the disk to only the cells that are modified rather than overwriting entire files.



How do databases facilitate writing/updating only particular cell in a table in the disk rather than overwriting entire file?



BTW, am not using SQL database as my table contains numerical column names and SQL doesn't support that. If you know any SQL/NOSQL database that supports numerical values as column names please let me know.










share|improve this question







New contributor




Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • DB storage have page granularity. Only changed pages are written. Assume your data is printed on many sheets of paper. When you need to change one digit it's enough to replace one paper sheet, not all sheets.

    – Akina
    Apr 16 at 9:55












  • I'm not sure what you mean when you say "SQL doesn't support" numerical column names?

    – George.Palacios
    Apr 16 at 9:57











  • @George.Palacios I mean column names with numerical values(without quotes).

    – Optic_Ray
    Apr 16 at 10:05











  • @Optic_Ray You can create a column name as whatever name you'd like - I've just created a table with a column called '123' as an example (no quotes in the name). Could you post the code you're having issues with?

    – George.Palacios
    Apr 16 at 10:06











  • Column names that don't conform to regular identifier naming rules must be enclosed in either square brackets or double quotes.

    – Dan Guzman
    Apr 16 at 10:38

















4















When I want to write to or alter particular cell of an excel file/table using python I'll use pandas read_csv then alter value in particular cell and write back to file with to_csv. But writing back to file seems to be overwriting the entire file with updated version of the file that differs only in single cell. This is a problem when am altering one or two cells in table of trillion rows and trillion columns.



When we are making write/alter database operations (like in SQL) on single cell out of trillion by trillion table, it seems to be making changes in the disk to only the cells that are modified rather than overwriting entire files.



How do databases facilitate writing/updating only particular cell in a table in the disk rather than overwriting entire file?



BTW, am not using SQL database as my table contains numerical column names and SQL doesn't support that. If you know any SQL/NOSQL database that supports numerical values as column names please let me know.










share|improve this question







New contributor




Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • DB storage have page granularity. Only changed pages are written. Assume your data is printed on many sheets of paper. When you need to change one digit it's enough to replace one paper sheet, not all sheets.

    – Akina
    Apr 16 at 9:55












  • I'm not sure what you mean when you say "SQL doesn't support" numerical column names?

    – George.Palacios
    Apr 16 at 9:57











  • @George.Palacios I mean column names with numerical values(without quotes).

    – Optic_Ray
    Apr 16 at 10:05











  • @Optic_Ray You can create a column name as whatever name you'd like - I've just created a table with a column called '123' as an example (no quotes in the name). Could you post the code you're having issues with?

    – George.Palacios
    Apr 16 at 10:06











  • Column names that don't conform to regular identifier naming rules must be enclosed in either square brackets or double quotes.

    – Dan Guzman
    Apr 16 at 10:38













4












4








4








When I want to write to or alter particular cell of an excel file/table using python I'll use pandas read_csv then alter value in particular cell and write back to file with to_csv. But writing back to file seems to be overwriting the entire file with updated version of the file that differs only in single cell. This is a problem when am altering one or two cells in table of trillion rows and trillion columns.



When we are making write/alter database operations (like in SQL) on single cell out of trillion by trillion table, it seems to be making changes in the disk to only the cells that are modified rather than overwriting entire files.



How do databases facilitate writing/updating only particular cell in a table in the disk rather than overwriting entire file?



BTW, am not using SQL database as my table contains numerical column names and SQL doesn't support that. If you know any SQL/NOSQL database that supports numerical values as column names please let me know.










share|improve this question







New contributor




Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












When I want to write to or alter particular cell of an excel file/table using python I'll use pandas read_csv then alter value in particular cell and write back to file with to_csv. But writing back to file seems to be overwriting the entire file with updated version of the file that differs only in single cell. This is a problem when am altering one or two cells in table of trillion rows and trillion columns.



When we are making write/alter database operations (like in SQL) on single cell out of trillion by trillion table, it seems to be making changes in the disk to only the cells that are modified rather than overwriting entire files.



How do databases facilitate writing/updating only particular cell in a table in the disk rather than overwriting entire file?



BTW, am not using SQL database as my table contains numerical column names and SQL doesn't support that. If you know any SQL/NOSQL database that supports numerical values as column names please let me know.







sql-server database-recommendation cursors btree






share|improve this question







New contributor




Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Apr 16 at 9:52









Optic_RayOptic_Ray

232




232




New contributor




Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Optic_Ray is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • DB storage have page granularity. Only changed pages are written. Assume your data is printed on many sheets of paper. When you need to change one digit it's enough to replace one paper sheet, not all sheets.

    – Akina
    Apr 16 at 9:55












  • I'm not sure what you mean when you say "SQL doesn't support" numerical column names?

    – George.Palacios
    Apr 16 at 9:57











  • @George.Palacios I mean column names with numerical values(without quotes).

    – Optic_Ray
    Apr 16 at 10:05











  • @Optic_Ray You can create a column name as whatever name you'd like - I've just created a table with a column called '123' as an example (no quotes in the name). Could you post the code you're having issues with?

    – George.Palacios
    Apr 16 at 10:06











  • Column names that don't conform to regular identifier naming rules must be enclosed in either square brackets or double quotes.

    – Dan Guzman
    Apr 16 at 10:38

















  • DB storage have page granularity. Only changed pages are written. Assume your data is printed on many sheets of paper. When you need to change one digit it's enough to replace one paper sheet, not all sheets.

    – Akina
    Apr 16 at 9:55












  • I'm not sure what you mean when you say "SQL doesn't support" numerical column names?

    – George.Palacios
    Apr 16 at 9:57











  • @George.Palacios I mean column names with numerical values(without quotes).

    – Optic_Ray
    Apr 16 at 10:05











  • @Optic_Ray You can create a column name as whatever name you'd like - I've just created a table with a column called '123' as an example (no quotes in the name). Could you post the code you're having issues with?

    – George.Palacios
    Apr 16 at 10:06











  • Column names that don't conform to regular identifier naming rules must be enclosed in either square brackets or double quotes.

    – Dan Guzman
    Apr 16 at 10:38
















DB storage have page granularity. Only changed pages are written. Assume your data is printed on many sheets of paper. When you need to change one digit it's enough to replace one paper sheet, not all sheets.

– Akina
Apr 16 at 9:55






DB storage have page granularity. Only changed pages are written. Assume your data is printed on many sheets of paper. When you need to change one digit it's enough to replace one paper sheet, not all sheets.

– Akina
Apr 16 at 9:55














I'm not sure what you mean when you say "SQL doesn't support" numerical column names?

– George.Palacios
Apr 16 at 9:57





I'm not sure what you mean when you say "SQL doesn't support" numerical column names?

– George.Palacios
Apr 16 at 9:57













@George.Palacios I mean column names with numerical values(without quotes).

– Optic_Ray
Apr 16 at 10:05





@George.Palacios I mean column names with numerical values(without quotes).

– Optic_Ray
Apr 16 at 10:05













@Optic_Ray You can create a column name as whatever name you'd like - I've just created a table with a column called '123' as an example (no quotes in the name). Could you post the code you're having issues with?

– George.Palacios
Apr 16 at 10:06





@Optic_Ray You can create a column name as whatever name you'd like - I've just created a table with a column called '123' as an example (no quotes in the name). Could you post the code you're having issues with?

– George.Palacios
Apr 16 at 10:06













Column names that don't conform to regular identifier naming rules must be enclosed in either square brackets or double quotes.

– Dan Guzman
Apr 16 at 10:38





Column names that don't conform to regular identifier naming rules must be enclosed in either square brackets or double quotes.

– Dan Guzman
Apr 16 at 10:38










1 Answer
1






active

oldest

votes


















12














A very common misconception about Databases can be dispelled with this:



 Database != File 


When you update a Row in a database, the underlying data file on disk isn't touched at all - at least not for "some time". Instead, the database makes a note of the change in its Transaction Log, then updates the value in memory. "Some time" later, the database might get around to needing that bit of memory for something else and will write the changed value to disk. How often that happens and how large a chunk of memory get written at a time varies from DBMS to DBMS.



Data storage in databases is measured in Pages, each of which can contain a number of Rows; those things that make up the Tables that you and I play with. When a Database needs some data, it works out where that data is in its data file(s) and then loads only those Pages that are relevant into its Buffer Cache (memory). This is why some queries run slowly the first time you run them, but are lightning fast thereafter - serving the same Page over and over from the Cache is way faster than hauling it up from the data file on disk.




... I am not using SQL database as my table contains numerical column names ...




Here's another misconception about databases, again easily dispelled:



 Database != SpreadSheet 


The way you structure data in Databases can seem quite "alien" when you're starting out; you seem to need to use "complicated", "artificial" constructs instead of just "rows" and "columns" of data. But, once you gain an understanding of why you need these structures and the power that they give you over your data, you'll get over it pretty quickly.




... operations ... on single cell out of trillion by trillion table ...




Do you really have a useful value for every single value in a trillion by trillion table? Personally, I'd doubt it, unless you work for Google.



I'd suggest what you actually have is a Sparse Array, where you have more "holes" than data. That's a structure that Relational Tables can support very easily and really quite efficiently.






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "182"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );






    Optic_Ray is a new contributor. Be nice, and check out our Code of Conduct.









    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f234890%2fhow-do-database-operations-write-update-alter-on-particular-cell-in-a-table%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    12














    A very common misconception about Databases can be dispelled with this:



     Database != File 


    When you update a Row in a database, the underlying data file on disk isn't touched at all - at least not for "some time". Instead, the database makes a note of the change in its Transaction Log, then updates the value in memory. "Some time" later, the database might get around to needing that bit of memory for something else and will write the changed value to disk. How often that happens and how large a chunk of memory get written at a time varies from DBMS to DBMS.



    Data storage in databases is measured in Pages, each of which can contain a number of Rows; those things that make up the Tables that you and I play with. When a Database needs some data, it works out where that data is in its data file(s) and then loads only those Pages that are relevant into its Buffer Cache (memory). This is why some queries run slowly the first time you run them, but are lightning fast thereafter - serving the same Page over and over from the Cache is way faster than hauling it up from the data file on disk.




    ... I am not using SQL database as my table contains numerical column names ...




    Here's another misconception about databases, again easily dispelled:



     Database != SpreadSheet 


    The way you structure data in Databases can seem quite "alien" when you're starting out; you seem to need to use "complicated", "artificial" constructs instead of just "rows" and "columns" of data. But, once you gain an understanding of why you need these structures and the power that they give you over your data, you'll get over it pretty quickly.




    ... operations ... on single cell out of trillion by trillion table ...




    Do you really have a useful value for every single value in a trillion by trillion table? Personally, I'd doubt it, unless you work for Google.



    I'd suggest what you actually have is a Sparse Array, where you have more "holes" than data. That's a structure that Relational Tables can support very easily and really quite efficiently.






    share|improve this answer



























      12














      A very common misconception about Databases can be dispelled with this:



       Database != File 


      When you update a Row in a database, the underlying data file on disk isn't touched at all - at least not for "some time". Instead, the database makes a note of the change in its Transaction Log, then updates the value in memory. "Some time" later, the database might get around to needing that bit of memory for something else and will write the changed value to disk. How often that happens and how large a chunk of memory get written at a time varies from DBMS to DBMS.



      Data storage in databases is measured in Pages, each of which can contain a number of Rows; those things that make up the Tables that you and I play with. When a Database needs some data, it works out where that data is in its data file(s) and then loads only those Pages that are relevant into its Buffer Cache (memory). This is why some queries run slowly the first time you run them, but are lightning fast thereafter - serving the same Page over and over from the Cache is way faster than hauling it up from the data file on disk.




      ... I am not using SQL database as my table contains numerical column names ...




      Here's another misconception about databases, again easily dispelled:



       Database != SpreadSheet 


      The way you structure data in Databases can seem quite "alien" when you're starting out; you seem to need to use "complicated", "artificial" constructs instead of just "rows" and "columns" of data. But, once you gain an understanding of why you need these structures and the power that they give you over your data, you'll get over it pretty quickly.




      ... operations ... on single cell out of trillion by trillion table ...




      Do you really have a useful value for every single value in a trillion by trillion table? Personally, I'd doubt it, unless you work for Google.



      I'd suggest what you actually have is a Sparse Array, where you have more "holes" than data. That's a structure that Relational Tables can support very easily and really quite efficiently.






      share|improve this answer

























        12












        12








        12







        A very common misconception about Databases can be dispelled with this:



         Database != File 


        When you update a Row in a database, the underlying data file on disk isn't touched at all - at least not for "some time". Instead, the database makes a note of the change in its Transaction Log, then updates the value in memory. "Some time" later, the database might get around to needing that bit of memory for something else and will write the changed value to disk. How often that happens and how large a chunk of memory get written at a time varies from DBMS to DBMS.



        Data storage in databases is measured in Pages, each of which can contain a number of Rows; those things that make up the Tables that you and I play with. When a Database needs some data, it works out where that data is in its data file(s) and then loads only those Pages that are relevant into its Buffer Cache (memory). This is why some queries run slowly the first time you run them, but are lightning fast thereafter - serving the same Page over and over from the Cache is way faster than hauling it up from the data file on disk.




        ... I am not using SQL database as my table contains numerical column names ...




        Here's another misconception about databases, again easily dispelled:



         Database != SpreadSheet 


        The way you structure data in Databases can seem quite "alien" when you're starting out; you seem to need to use "complicated", "artificial" constructs instead of just "rows" and "columns" of data. But, once you gain an understanding of why you need these structures and the power that they give you over your data, you'll get over it pretty quickly.




        ... operations ... on single cell out of trillion by trillion table ...




        Do you really have a useful value for every single value in a trillion by trillion table? Personally, I'd doubt it, unless you work for Google.



        I'd suggest what you actually have is a Sparse Array, where you have more "holes" than data. That's a structure that Relational Tables can support very easily and really quite efficiently.






        share|improve this answer













        A very common misconception about Databases can be dispelled with this:



         Database != File 


        When you update a Row in a database, the underlying data file on disk isn't touched at all - at least not for "some time". Instead, the database makes a note of the change in its Transaction Log, then updates the value in memory. "Some time" later, the database might get around to needing that bit of memory for something else and will write the changed value to disk. How often that happens and how large a chunk of memory get written at a time varies from DBMS to DBMS.



        Data storage in databases is measured in Pages, each of which can contain a number of Rows; those things that make up the Tables that you and I play with. When a Database needs some data, it works out where that data is in its data file(s) and then loads only those Pages that are relevant into its Buffer Cache (memory). This is why some queries run slowly the first time you run them, but are lightning fast thereafter - serving the same Page over and over from the Cache is way faster than hauling it up from the data file on disk.




        ... I am not using SQL database as my table contains numerical column names ...




        Here's another misconception about databases, again easily dispelled:



         Database != SpreadSheet 


        The way you structure data in Databases can seem quite "alien" when you're starting out; you seem to need to use "complicated", "artificial" constructs instead of just "rows" and "columns" of data. But, once you gain an understanding of why you need these structures and the power that they give you over your data, you'll get over it pretty quickly.




        ... operations ... on single cell out of trillion by trillion table ...




        Do you really have a useful value for every single value in a trillion by trillion table? Personally, I'd doubt it, unless you work for Google.



        I'd suggest what you actually have is a Sparse Array, where you have more "holes" than data. That's a structure that Relational Tables can support very easily and really quite efficiently.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Apr 16 at 10:59









        Phill W.Phill W.

        1,05944




        1,05944




















            Optic_Ray is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            Optic_Ray is a new contributor. Be nice, and check out our Code of Conduct.












            Optic_Ray is a new contributor. Be nice, and check out our Code of Conduct.











            Optic_Ray is a new contributor. Be nice, and check out our Code of Conduct.














            Thanks for contributing an answer to Database Administrators Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f234890%2fhow-do-database-operations-write-update-alter-on-particular-cell-in-a-table%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

            Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

            Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070