Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 1,161 total)

  • RE: SSRS 2008R2 Data set Properties Error

    One issue with stored procedures in reporting services is that if the stored procedure is quite complex, e.g. has multiple select statements, that SSRS has trouble parsing them correctly to...

  • RE: Simple MDX query

    Try this also...

    With Member [Measures].[Thing Count YTD] As

    AGGREGATE(YTD([Effective Date].[Year-Week].CurrentMember)

    , [Measures].[Thing Count] )

    SELECT

    [Measures].[Thing Count YTD] ON 0,

    [Effective Date].[Year-Week].[Week].[2013 Week 6] ON 1

    FROM

    [Cube]

    This keeps whatever it is you are...

  • RE: How to set user for deploying reports?

    It's good if you still have friends there that can give you a reference. So don't burn your bridges completely.

    🙂

  • RE: How to set user for deploying reports?

    Sorry to hear this. I won't ask for details.

    Cheers

  • RE: INFORMATION_SCHEMA.COLUMNS reference

    INFORMATION_SCHEMA columns do not have exactly the same information as sys.columns, but it may work depending on the need. Overall, sql server 2000 just does not have all of the...

  • RE: Join's and Index's

    Maybe the clustered index that re-arranged the pages created disk fragmentation?

  • RE: Query tuning

    Also be sure your column emp_status does not contain nulls or else a

    emp_status !='01'

    will not return the nulled columns. I don't know if this is the intended behavior.

  • RE: How to set user for deploying reports?

    So you deleted a local user account? Be careful this does not cause issues in other areas.

  • RE: Computing on a cube?

    Hi,

    the total of contracts started in that year, having status different than '101', divided by the total of contracts ended in the previous year

    Look into the function "ParallelPeriod" in...

  • RE: address management software

    The US post office has a NCOA (national change of address) service. They in the process maintain a standardized version of US addresses. There are companies that buy/rent this data...

  • RE: Sample Insurance Data warehouse

    Model your business processes, that will light what are your facts and subsequently your dimensions. If you are familiar with your business this shouldn't trouble you too much.

  • RE: about storing sql script in a table?

    Certainly. Code repository systems work on this concept.

  • RE: Fact/Dimension design suggestions

    there is a record for every application and what term they are starting in, among other things

    I wouldn't be surprised if the OP has something similar looking in the relational...

  • RE: SSIS doesn't import TXT file

    I don't believe the forum users in general like the idea of clicking on obscure links.

  • RE: How To Validate in Procedure

    Might incorporating this work?

    select case when isnumeric(left(DCPI_Date,4))=1

    then DCPI_Date

    else '19000101'

    END

    when doing your insert into dbo.Reliance_Master

    Then later in your SSIS redirect those rows that have 1900-01-01 as the date to...

Viewing 15 posts - 1,021 through 1,035 (of 1,161 total)