![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi, What is the way to do in ADOMD drillthrough while you have multiple partitions in the cube? I manage to do it using OleDbDataReader NextResult() method: OleDbCommand cmd = new OleDbCommand(); OleDbDataReader dr = null; cmd.CommandText = "DRILLTHROUGH SELECT From [Sales] Where ..."; dr = cmd.ExecuteReader(); do { ... } while (dr.NextResult()); |
#3
| |||
| |||
|
|
Looks correct. For multiple partitions, AS returns a recordset for each partition. -- Regards Darren Gosbell [MCSD] dgosbell_at_yahoo_dot_com Blog: http://www.geekswithblogs.net/darrengosbell In article <96244529-30E8-4A34-8D6A-104AFBBE917C (AT) microsoft (DOT) com>, Moshe (AT) discussions (DOT) microsoft.com says... Hi, What is the way to do in ADOMD drillthrough while you have multiple partitions in the cube? I manage to do it using OleDbDataReader NextResult() method: OleDbCommand cmd = new OleDbCommand(); OleDbDataReader dr = null; cmd.CommandText = "DRILLTHROUGH SELECT From [Sales] Where ..."; dr = cmd.ExecuteReader(); do { ... } while (dr.NextResult()); |
![]() |
| Thread Tools | |
| Display Modes | |
| |