What professional and specific area define the layout of data in files in a software project?

2

Who and how do you define the layout of data in software such as Editors, DBMSs or even who creates the text encodings? When I say "data layout", I mean, for example, how a PDF file stores the data in the document; what comes first in the file, the encoding, the standards so that the software can understand the file, etc. In the case of DBMS, who and how do you design the layout that guarantees the efficiency and security of the databases? What is the area that studies this?

    
asked by anonymous 04.06.2017 / 16:39

2 answers

5

In general it is called a software engineer, but it also caters for developer, programmer, architect and a lot of other names. There is no such specific thing and there are few definitions of what each function should do. I even made a question and gave a answer about this.

In general, the same person who projects everything else determines the layouts of files or other forms. In practice the layout of the file is still a data structure, one of the most important things about software development is that it is common for people to overlook. When it is well made it is easier to produce the algorithms around it and evolve code and architecture.

Of course in a large project a person can be detached to do this, but it is not common. Maybe it's a data modeler, but I've never seen the term being used for it, let alone being just that. It's more or less like saying that the doctor specializes in skin sewing.

Perhaps because some people find this they study one part and not the whole and then they make mistakes because they do not know everything they need.

Overall this is still software engineering, more specifically the area of data structure .

Although tangentially it can help with security, it has little to do with the data structure itself.

Reading about database structures .

    
04.06.2017 / 17:08
2

The team as a whole defines how data will be handled in a meeting for example.

After this you have all the development documentation and scope of software with your requirements phases, etc.

    
04.06.2017 / 17:24