Viewing 6 posts - 1 through 6 (of 6 total)
If you new in MDX you need this book
WITH
MEMBER [Measures].[Top Product in Children] AS
TopCount (
[Product].[ByCategory].CurrentMember.Children,
1,
[Measures].[Unit Sales]
).Item(0).Item(0).Name
MEMBER [Measures].[Top Product’s Units] AS
( [Measures].[Unit Sales],
TopCount (
[Product].[ByCategory].CurrentMember.Children,
1,
[Measures].[Unit Sales]
).Item(0) // in Essbase, need...
December 3, 2008 at 4:21 am
What about C# app. Did ADO has mechanism to read database schema and that information store in DataTable in DataSet. This DataTable must have all information needs to create database in SQL...
October 23, 2005 at 12:18 pm
After the database has be upgrade to SQL server some changes can be made in Access database. We want to updata SQL server database onli with this changes.
October 21, 2005 at 6:51 am
Viewing 6 posts - 1 through 6 (of 6 total)