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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. justins57

    Attiribute Relationshipo and Full process

    If the RelationshipType = Rigid and the attributes change, you will get an error. If the RelationshipType = Rigid and the attributes do not change, the ProcessUpdate will not drop the aggregations. If the Relationship = Flexible and the attributes change, a ProcessUpdate will drop the...
  2. justins57

    Is there a concept such as GetDate in MDX

    Also, you may need to filter the Years so that only Years with data are returned.
  3. justins57

    Is there a concept such as GetDate in MDX

    I would use the WITH MEMBER [Date Transaction].[Date Transaction].[CurrentYear] as 'Tail([Date Transaction].[Date Transaction].[YearNo].Members).Item(0).Item(0)' SELECT [Measures].[GrsIncLR%] on 0 from PremiumsAndClaims WHERE [Date Transaction].[Date Transaction].[CurrentYear];
  4. justins57

    Security Roles - What Each Does

    Ovatvvon, Full control (Administrator) Assignment to the Full control role gives complete access to the database, including data, schema, processing, and operations. Administrators can also manage security roles. Process database The Process database role allows SSAS processing. This means a...
  5. justins57

    Calaculated dim not showing in Excell 2007

    Jeff, I found this explanation online, hope it helps. First of all, you need to change PivotTable options to enable the display of calculated members (check PivotTable Tools / Options / Options / Display / Show calculated members from OLAP server). When you do that, you choose to get all...
  6. justins57

    Mondrian and Sybase

    Is there more to the MDX than the simple select query at the top of the exception?
  7. justins57

    Row ID for DataSet

    I tried the Rank function, but it doesn't do what I needed. I ended up adding a Row column to my grid. Thanks for feedback.
  8. justins57

    MDX TopCount problem...

    Misko, Try this query. WITH SET [TOP 1] AS 'TopCount ([Customers].[City].members, 3,[Measures].[Unit Sales] )' SET [TOP 2] AS 'Generate({[TOP 1]},TopCount (Descendants([TOP 1].currentmember, 1), 2, [Measures].[Unit Sales]))' SET ColSet As 'Crossjoin({[Unit...
  9. justins57

    Row ID for DataSet

    Does anyone know an easy way to include the Row Number in the dataset results? I am hoping to get something like this: Row Store Sales 1 NE #11 10,000 2 SE #3 200 3 WC #22 5,000 Thanks, Justin
  10. justins57

    The case..when..then.. instruction in MDX ?

    Hungry, MDXer is correct. There is no Case Statement in AS 2000, there will be in AS 2005. The only way to do this is with the IIF statement - IIF(test, true expression, false expression). Justin
  11. justins57

    cube totals don't match the database

    Kasi, How are you partitioning the Cube, by Time or some other dimension? When you rebuild the Partition can you review the SQL it is using, maybe that will help answer your question. Justin
  12. justins57

    OLAP server registration

    Hi, When you first install AS 2000, its repository is the Access DB at the location specified in your connection string. Typically, you want to migrate the repository to a SQL DB for growth reasons. In your case, it sounds like you have two versions of AS going. Did you have SQL 7.0...
  13. justins57

    Averaging Measure across Time

    BK, Yes, you can do this. Look at the NonEmptyCrossjoin function to only use days with a headcount value and the Avg function to give you the average for the headcount. Something like this: MEMBER [Measures].[Avg Headcount] As...
  14. justins57

    Cube Processing Timeout

    Mark, Is it timing out or failing to process. I've seen the process just quit running and this is sometimes caused by Backups or Virus Scans. This seems to be a temporary condition and corrects itself the next time you rebuild the Cubes. Other times the OLAP database becomes corrupt and you...
  15. justins57

    Build cubes to distribute to many customers/servers

    MT, While modeling your dimensional data from reports is a start there are many pitfalls to avoid. I recommend you visit the Ralph Kimball website to review design tips for a good dimensional model. He is the leading authority on Dimensional Modeling. Here is the link...
  16. justins57

    Dependent Dimensions

    Galactico, Sounds like you need to build a snowflake dimension where one dimension is more or less a sub-dimension of the another dimension. An example would be a Department Dimension that is snowflaked into a Category Dimension that is snowflaked into a Product Dimension. FYI, this may not...
  17. justins57

    Calculated member - conditional sum

    Gaston, I think what you want to do is only sum the orders (IDs) where the actual finish date <= deadline date. In other words, don't include orders (IDs) that happen after the deadline. Is this correct? The calculation is a little confusing - do you mean you want to sum the number of orders...
  18. justins57

    MDX - Avg Per Store

    Hi, Add a where clause without the quotes "WHERE([Fiscal Year].[Year].[2005])" after the FROM clause. This should slice the data to only include 2005. hth, justin
  19. justins57

    How to filter cube data based on a status field in DB?

    Greg, Create a view in your Warehouse DB that filters the fact data to exclude cancelled or invalid line items. Use the view as the data source for your cube. hth, Justin
  20. justins57

    Troubleshooting suggestions pls!

    KC, Don't know if this will help, but version 8.00.382 is SP1. There are many known bugs with SP1. I recommend you apply SP3 which should be version 8.00.760. Justin

Part and Inventory Search

Back
Top