dbTalk Databases Forums  

CELLSETGRID error on row SET_CAPTION from control table set

microsoft.public.sqlserver.olap microsoft.public.sqlserver.olap


Discuss CELLSETGRID error on row SET_CAPTION from control table set in the microsoft.public.sqlserver.olap forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
I am blue
 
Posts: n/a

Default CELLSETGRID error on row SET_CAPTION from control table set - 05-23-2006 , 11:36 AM






The error occurs in the following maner:

I load the control, put some dimensions on row area, expand them, put
some measures and then, I go to other web page of my web application.
When I come back to the application I get the following error:

There is a problem with this cube.

La columna 'SET_CAPTION' no pertenece a la tabla rowsetTable.

(which means,SET_CAPTION column does not belong to rowsetTable)

Well, the error is on CubeSchema.cs on line 102 (inside Open
method).I'll try to solve the problem, but any help will be
appreciated, since I have no idea what SET_CAPTION stands for.

Thnak you for you attention


Reply With Quote
  #2  
Old   
amie
 
Posts: n/a

Default Re: CELLSETGRID error on row SET_CAPTION from control table set - 06-05-2006 , 06:53 PM






I am blue wrote:
Quote:
The error occurs in the following maner:

I load the control, put some dimensions on row area, expand them, put
some measures and then, I go to other web page of my web application.
When I come back to the application I get the following error:

There is a problem with this cube.

La columna 'SET_CAPTION' no pertenece a la tabla rowsetTable.

(which means,SET_CAPTION column does not belong to rowsetTable)

Well, the error is on CubeSchema.cs on line 102 (inside Open
method).I'll try to solve the problem, but any help will be
appreciated, since I have no idea what SET_CAPTION stands for.

Thnak you for you attention
I have fixed this for now by just putting an if around line 102 to
check that the column exists. Everything seems to work fine now but I
was wondering if anyone had found a better solution.

if ( sRow.Table.Columns.Contains("SET_CAPTION")) { // New IF statement
s.Caption = sRow["SET_CAPTION"].ToString(); // Original
Line 102
}



Reply With Quote
  #3  
Old   
I am blue
 
Posts: n/a

Default Re: CELLSETGRID error on row SET_CAPTION from control table set - 06-06-2006 , 03:02 AM




It seems that Richard wanted to save the state of the control while the
session was up.
I commented out lines 92-118, wich dealt with the saveing of the state
of the control and everything works fine.
SInce I donīt need to save the state of the control every time I leave
the page in which I've palced the control, this solution is fine for
me.


Reply With Quote
  #4  
Old   
amie
 
Posts: n/a

Default Re: CELLSETGRID error on row SET_CAPTION from control table set - 06-06-2006 , 06:41 PM




I am blue wrote:
Quote:
It seems that Richard wanted to save the state of the control while the
session was up.
I commented out lines 92-118, wich dealt with the saveing of the state
of the control and everything works fine.
SInce I donīt need to save the state of the control every time I leave
the page in which I've palced the control, this solution is fine for
me.
Thanks for the tip. I spent most of yesterday working on this as my
solution only just caused another problem, it didn't actually fix it.

I have commented out those lines and it appears to have fixed it for
me.

Thanks.



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.