Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to overcome on views limits

Status
Not open for further replies.

wizard10

Programmer
Jun 20, 2005
1
CA

Hi Everyone,

I have 6 tables with many many columns and I have a SELECT statement that joins all the table and brings me all the columns in each table in single view. The number of columns that I get by executing this SELECT statement are more than 2000. The SELECT statement runs perfect and give me no problem. But the problem comes when I use this select statement in a view. I get the error message

CREATE VIEW failed because column '' in view '' exceeds the maximum of 1024 columns

Is there a way I can get all the columns in one single view. I know SQL Server View has maximum limit of 1024 colums.

Please help if someone has a better idea.

I will appreciate your help in this regard

Thanks.




 
Run MySQL Administrator (you can find it on mysql web), Choose StartUp Variables -> MyISAM Parameters (Tab) -> Advanced Settings Block -> Increase Block Size. This should do it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top