This topic has been archived. It cannot be replied.
-
工作学习 / 学科技术讨论 / 项目上有个技术需求请大拿们指教 - 现在业务部门有个数据的Excel 表格里面有比较复杂的数据处理然后输出一个最后的Excel 表格,这个表格会load 到SQL 数据库中。现在,想设计开发stored procedure,将所有在Excel 中实现的数据处理全部在数据库中实现,然后在SQL 数据库中直接生成所需的最终数据表。
请问,最合理最容易维护的方案?
谢!
-doji(点赞狂人);
2014-11-28
{170}
(#9126066@0)
-
个人认为数据库就是存储数据的地方, 具体处理计算还是交给其他人做吧! ^_^要是我的设计 就是用perl 来读取 那个处理好的 excel , 然后塞到你的数据库就好了.
在数据库里面进行处理, 然后再存储起来. 要是我 我是不会这么干的. 毕竟大家要职责分开一点比较好.
^_^
-boolean(北漂一族);
2014-12-3
{181}
(#9133476@0)
-
Use python xlsxwriter module.
-ynxie2000(ynxie2000);
2014-12-14
(#9151120@0)
-
excel 的数据处理能力是sql 数据库不能比的。基本上不可能把数据处理从excel挪到数据库里。如果你能具体地说出你的需求,我愿意给你建议。
-journey2wonders(Journey2Wonders);
2014-12-14
(#9151303@0)
-
Are u kidding?SQL Server can easily come up with more complex functions than Excel which has pre-defined functions (well, I have to admit lots of pre-defined functions are pretty advanced and people need the domain knowledge to use them.). I think the idea to put data in database and using stored procedures/functions to handle the data is a good idea if the way the data is processed is very complex. Otherwise, I'd say just stick to Excel.
-yh_abc(yh_abc);
2014-12-20
{428}
(#9162214@0)