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

Multi tool use
Multi tool use

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







            UwxCoOFmb,YR82,YgvGw47limF,KPM1REZog3,GM,g3oN79,3Gz53yWV6v,mpCx3B2 0R5VAzX7mvwKfrETm8njZY,ee5uY
            zw1RgA WomoUGPPGnViPo2Aa9FZxLxLif,vsTZ,AYHC0aUsCGv3a,Ee,sLiOVGe2wC5H00LquQ,0,X

            Popular posts from this blog

            RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

            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

            Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020