English 中文(简体)
是否有任何工具可以用来计算(a) 油轮的大小或单行(b) 粉碎机的交通量
原标题:Is there any tool available by which one can calculate (a)the size or a single row in sqlserver (b)the amount of traffic hitting the sqlserver

是否有任何工具可以用来计算服务器中的大小或单行。 这确实有助于计算非行的预期规模。 还有一种选择是使用间谍——空间使用,但它提供了整个表格的细节......我们希望的是记录的规模(最大大小)。

此外,还有任何工具来检查服务器上打上乘客的交通量,以便查明瓶颈。

提前感谢。

最佳回答

你们不需要一种工具,而是需要一个非常简单的问题来撰写:

SELECT SUM(length)
FROM syscolumns
WHERE id = OBJECT_ID( MyTable )
问题回答

暂无回答




相关问题
Export tables from SQL Server to be imported to Oracle 10g

I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...

SQL server: Can NT accounts be mapped to SQL server accounts

In our database we have an SQL server account that has the correct roles to access some of the databases. We are now switching to windows authentication and I was wondering if we can create a NT user ...

SQL Server 2000, ADO 2.8, VB6

How to determine if a Transaction is active i.e. before issuing Begin Transaction I want to ensure that no previous transaction are open.. the platform is VB6, MS-SQL Server 2000 and ADO 2.8

热门标签