看你做什么项目了,如果是ERP,一个表70个字段就很正常了,,,
150个字段的没见过,,,

解决方案 »

  1.   

    还真实ERP...1024个字段真的假的啊....那数据库不抛异常?
      

  2.   

    大哥别骗我,MMSQL最多字段是256
    你弄300多.我服了
      

  3.   

    SQL Server can have as many as two billion tables per database and 1,024 columns per table. The number of rows and total size of the table are limited only by the available storage. The maximum number of bytes per row is 8,060. If you create tables with varchar, nvarchar, or varbinary columns in which the total defined width exceeds 8,060 bytes, the table is created, but a warning message appears. Trying to insert more than 8,060 bytes into such a row or to update a row so that its total row size exceeds 8,060 produces an error message and the statement fails.CREATE TABLE statements that include a sql_variant column can generate the following warning:The total row size (xx) for table 'yy' exceeds the maximum number of bytes per row (8060). Rows that exceed the maximum number of bytes will not be added.
    This warning occurs because sql_variant can have a maximum length of 8016 bytes. When a sql_variant column contains values close to the maximum length, it can overshoot the row's maximum size limit.Each table can contain a maximum of 249 nonclustered indexes and clustered index. These include the indexes generated to support any PRIMARY KEY and UNIQUE constraints defined for the table.
      

  4.   

    SQL Server可以最多定义32767个数据库,每个数据库中,可以定义20亿个表格,每个表格可以有250个字段,每个表格的数据个数并没有限制,每一个表格可以定义250个索引,其中有一个可以是Clustered索引。
    http://www.itisedu.com/phrase/200604040933575.html
    也不知道谁的对.一会我去建一个看看哈哈..........
      

  5.   

    听一同事说,做医药的ERP,很多属性,就很多字段