Click here to Skip to main content
15,914,165 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
Can i know how many maximum rows and columns can a table have ?? if i insert 1025 rows what is the output?? and how many maximum parameters can i pass to a stored procedure?
Posted

Depends on the version, but MS publishes that info: http://technet.microsoft.com/en-us/library/ms143432.aspx[^]
 
Share this answer
 
in SQL SERVER 2008

Q 1.How many maximum column can be in a table in sql server 2008?
Ans: Max row size is 8,060 bytes so its depends on column type in a table.

Q 2. How many maximum foreign key table reference per table?
Ans : 253

Q.3 How many maximum nested sub quires/store procedure /triggers ?
Ans: 32

Q.4 How many maximum parameters in user function / store procedure?
Ans : 2100

Q.5 How many maximum number of columns in per SELECT/INSERT/UPDATE statement?
Ans : 4096

Q.6 How many rows in table in SQl Server 2008?

http://stackoverflow.com/questions/759244/sql-server-the-maximum-number-of-rows-in-table[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900