计算SQL Server 2005中存储过程的代码行数
使用 SQL Server 2005 Management Studio,我已将每个存储过程和函数导出为单独的 .sql 文件。
有没有一种方法可以使用 CLOC 工具生成代码行度量?
CLOC 站点声称它支持 SQL,但在这种情况下它不会生成任何指标。
谢谢,
阿吉特。
Using SQL Server 2005 management studio, I have exported each Sprocs and Functions as a separate .sql file.
Is there a way that using CLOC tool, I can produce lines of code metric?
The CLOC site states that it supports SQL but it does not generate any metric in this case.
Thanks,
Ajit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我得到了一个满足我要求的工具:
http://www .downloadthat.com/windows/Programming/Misc-Tools/OxyProject-Metrics_download.html
如果有更好的,请分享。
谢谢。
阿吉特。
I got a tool that satisfies my requirement:
http://www.downloadthat.com/windows/Programming/Misc-Tools/OxyProject-Metrics_download.html
If anything better, pl share it.
Thanks.
Ajit.
这可能有帮助: 如何计算 SQL Server 2005 中存储过程的大小?
Might this be of help: How do I calculate the SIZE of stored procedures in SQL Server 2005?
为什么你不通过在 Management studio 中右键单击数据库来使用“生成脚本”,选择表/存储的过程/函数,然后将其导出到一个巨大的文件。
由此,您可以使用像记事本++这样的工具(如果您关闭自动换行并打开状态栏,甚至可以使用记事本)来查看行数。
或者您可以对创建的这一文件使用 CLOC。 这让你快乐。
WHy don't you use "Generate Scripts" by rightlciking on your database in Management studio, selecting your tables/stored procs/functions, and then exporting it to one giant file.
From that, you can use a tool like notepad++ (or even notepad if u take word wrap off and status bar on), to see number of lines.
or you can use CLOC on this one file created. Which ever makes you happy.