Click here to Skip to main content
16,004,927 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have a table which does not have a primary key. it stores only 200 records, but i want to store more than that? how can i do that? can any one help me with this?
Posted
Updated 24-Mar-14 3:54am
v2

The numbers of rows is not limited to 200, maybe you saw in SQL Management the option: "Edit Top 200 Rows".

Here is the Maximum Capacity Specifications for SQL Server[^]

So as you can read on the link above the number of rows per table is "Limited by available storage"!
 
Share this answer
 
v3
The only reason I can think of if you could not add more records is because of a unique index or something along those lines. You can certainly store many, many more records than 200 so it sounds like you have something else going on.
 
Share this answer
 
You are not limited (number wise) if you don't have a primary key for a table.

Do a :
SQL
select count(*) from [yourtablename]

to see how many records are in your 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