|
|
|
|
|
by kodemager
1608 days ago
|
|
I build and operated an employee database in accordance to the Danish OIO model for years, I even sat on a comity to define either models within the OIO model set for the public service. These days I work with millions of entries from solar production. I’ve never had to use complex SQL more than one time. You use tools like SSIS or APIs on top of it to get and store the data. I know you “can” create a lot of stored procedures and views, but as I’ve already said, you really, really shouldn’t do that exactly because it’s so terrible to work with for so many people. Honestly though, SQL with an Odata api on top of it is one of my favorite ways of storing and retrieving data. If you have to actually transform the data, you do it with SSIS or similar tools that are much more efficient top level layers that are also testable and reusable. But to each their own I guess. The join logic never bothered me much, and that seems to be an issue for a lot of people here. |
|