Forum Replies Created

Viewing 15 posts - 481 through 495 (of 1,222 total)

  • RE: Replication Questions and Issues

    I would suggest that you do a little reading about both transactional and merge replication. Architecturally, they are very different ways do replicate data and you really should understand...

  • RE: Process a SSAS cube's dimension by a T-SQL query

    Using T-SQL it is not so easy.

    However, since you are planning to use SQL Agent, why not just use the step type of "SQL Server Analysis Services Command". You...

  • RE: delete without commit

    That's exactly what I do.

    The only other option I can think of involves restoring to a point in time prior to your delete - definitely more cumbersome...

  • RE: MDX for Today's date

    Not sure of the context. However, have a look at either FILTER or EXCEPT. They should be able to do what you need.

  • RE: MDX for Today's date

    You are on the right track with the NOW() function. However, you will need to format the string to match the member name. Not sure what the answer...

  • RE: Checking Multiple Values In a Precedence Constraint

    This is pretty straightforward - create a constraint, then right click the constraint and select "Edit".

    Change the "Evaluation operation" to "Expression and constraint". Add your condition to the expression...

  • RE: How to estimate the size of the distribution database?

    Steve's reply is close.

    Yes, once the each update has been applied to the subscriber, the record in the distribution database may be deleted. However, this is not done immediately....

  • RE: analysis service client tool

    There are many licensing options - you really need to know what your organisation has purchased.

    In fact, without that, any advice you get (including this advice) does not really tell...

  • RE: analysis service client tool

    The client tools are...

    SQL Server Business Intelligence Development Studio - this is used by AS developers to define dimensions, cubes etc

    SQL Server Managment Studio - used to administer cube once...

  • RE: How to estimate the size of the distribution database?

    With Transaction Replication, the size of the distribution database is more closely related to the number of transactions against the publishing database than the size of the publishing database. ...

  • RE: SQL Procedure

    2 things are wrong....

    If you use the "END" statement, it must be paired up with a "BEGIN" statement. In you code, you don't need the END statement, so remove it.

    The...

  • RE: T-Repl

    With SQL 2005, you can get replication to do most of the work for you. To get this in place, the publication should be created with @replicate_ddl = 1....

  • RE: problem with dynamic sql

    I suspect that your problem is happening because of some implicit type conversions.

    The string 'insert into ' is not unicode, nor is @tablo or @dil. When you...

  • RE: Adding an article to an existing pull transactional publication

    You have missed a step - you need to add a subscription to the new article. Once that is done, the distribution agent becomes aware that it needs to...

  • RE: Snapshots and Statistics

    A database snapshot contains the data as it was when the snapshot was created. This applies to all things in the database including system objects. So, updating statistics...

Viewing 15 posts - 481 through 495 (of 1,222 total)