March 10, 2008 at 10:01 pm
Maximum Number of rows allowed in sql server 2005 tables ?
Maximum Number of columns allowed in sql server 2005 tables ?
What are all the built in string functions can be allowed for 'TEXT' DataType in sql server 2005?
March 10, 2008 at 10:15 pm
I'll answer your third question right now. Don't use text, ntext, or image data types in SQL Server 2005. If converting a SQL Server 2000 data base to SQL Server 2005, consider changing any columns defined as such to varchar(max), nvarchar(max), and varbinary(max) respectively. The text, ntext, and image data types have been depreciated, and may not be supported in future versions of SQL Server.
😎
March 10, 2008 at 10:19 pm
Now for your other 2 questions.
Max number of columns: 1,024
Max number of rows: probably restricted by the amount of disk space available.
😎
March 11, 2008 at 8:36 am
Just to add to Lynn's answer: The maximum number of rows is purely a limitation of disk space available.
- Gus "GSquared", RSVP, OODA, MAP, NMVP, FAQ, SAT, SQL, DNA, RNA, UOI, IOU, AM, PM, AD, BC, BCE, USA, UN, CF, ROFL, LOL, ETC
Property of The Thread
"Nobody knows the age of the human race, but everyone agrees it's old enough to know better." - Anon
March 11, 2008 at 9:33 am
My answer would be, do your own interview. These answers are in Books Online.
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2008 at 10:23 am
Search Maximum Capacity Specifications in Books online (or google).
Some of these will change in SS2k8
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply