Forum Replies Created

Viewing 15 posts - 646 through 660 (of 1,222 total)

  • RE: INSERT INTO and INDEXES

    I would disable the indexes instead of scripting/dropping them. This has pretty much the same affect as scripting/dropping but, I think, is a lot simpler to manage.

    Have a...

  • RE: Fact Table Foreign Keys -- How many is too many?

    FK's should not be a problem for applications that read data (Analysis Services only reads data for most of its activities). Indexes on the FK columns on your fact...

  • RE: Simple MDX Question

    Try the following

    SELECT { [Measures].[Satis Miktari] } ON Columns,

    {STRTOSET('[Dim Time].[Week Of Year].&[@MyWeekParamater]') ,

    STRTOSET('[Dim Time].[Week Of Year].&[@MyWeekParamater].PrevMember')}

    *

    {[Dim Stores].[Store Name].allmembers } on rows

    FROM

    [HCRetailSales]

  • RE: SSAS 2000 Cube on SSAS 2008

    Analysis Services had some big changes done to it between SQL 2000 and SQL 2005. From 2005 to 2008 there were more changes but not so major.

    There is a...

  • RE: Allow Users to Schedule SA-Owned Jobs

    You could create a sproc that starts the job - specify 'EXECUTE AS' in the definition of the sproc so that it runs as a user who is allowed to...

  • RE: Simple MDX Question

    Firstly, Reporting Services wants to have measures on columns and all other information required to be shown on the report needs to be rows. This is part of the...

  • RE: Updating Rows of large table in Replicated database

    You could write a stored proc to delete the data, add the stored procedure to the publication with the option set to replicate the execute of the stored procedure. ...

  • RE: Alias on 2000 to 6.5

    Been a while for me also but I think you will need to add an alias to EACH of the client machines using the Client Network Utility (should be in...

  • RE: Updating Rows of large table in Replicated database

    Replication will be quite happy with 100k rows. Depending on network speed etc it might take a while.

  • RE: Distribution DBs

    Yes you should be reorg-ing indexes periodically. Replication agents INSERT, UPDATE and DELETE data as required just like any other database and, hence, the table issues with fragmentation will...

  • RE: SQL Server 2005 Replication

    For transaction replication with updateable subscriptions, your table must have a primary key

    The tables will also need a uniqueidentifier column called "msrepl_tran_version" on each table. It may be the...

  • RE: Any SQL gurus / n00bs that are closet musicians?

    Ivanna Noh (12/21/2009)


    ...the bridge has got 6 manual adjust winders...

    Those little fine tuning screws at the bridge are great - so easy to get a perfect tuning that way (assuming...

  • RE: Problem with a simple import

    These are warnings being issues because you have not changed the default data type for each of the fields on your input file. If you know the correct sizes...

  • RE: SQL Server 2005 Replication

    I would not use Merge Replication for the scenario you are describing because there is a very real chance that the same ticket can be sold since merge replication does...

  • RE: Any SQL gurus / n00bs that are closet musicians?

    One factor for me was the neck width. I have large hands and too often I would find that I would be fretting one string and touching an adjacent...

Viewing 15 posts - 646 through 660 (of 1,222 total)