Set the attributes properies using C# and AnalysisServices
-
miércoles, 20 de junio de 2012 13:12
Hello,
I need to change the NameColumn of an attribute in a dimension of my cube.
here is my code but nothing happened when I execute it:
DimensionAttribute attr = this.cubeDim.Dimension.Attributes.GetByName(AttributeName); attr.NameColumn = new DataItem([TABLE NAME], [COLUMN NAME]);
Does somebody got an idea?
Thanks a lot
Todas las respuestas
-
miércoles, 20 de junio de 2012 17:39
Check if the following link helps you;
http://technet.microsoft.com/en-us/library/ms345091.aspx#Dim
Aniruddha http://aniruddhathengadi.blogspot.com/
- Marcado como respuesta Jackylradis jueves, 21 de junio de 2012 12:55
-
jueves, 21 de junio de 2012 12:56Yes thanks, the function CreateDataItem in your link was that I needed! :)

