Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: Error while executing xmla script

    Make that you are connected to a database after you open the file. That is an error when there is no database connection associated with the open file. HTH Thanks.

  • RE: Transfer SQL Server Objects Task - Bug

    Not for me across servers. I still get the error:

    [Transfer SQL Server Objects Task] Error: Table "ACHInvestDetails" does not exist at the source.

  • RE: Alter publication property of allow anonymous subscriptions

    Exec sp_changepublication

    @publication = 'yourpublication'

    ,@property = 'allow_anonymous'

    ,@value = 1

    ,@force_invalidate_snapshot = 1

    ,@force_reinit_subscription = 1

    The key is to look at the @Property parameter...

  • RE: Why must tables have PKs?

    There is no hard and fast rule that states that a table must have a PK. However it is recommended that they do. Now what type of PK should the...

  • RE: identity

    This is an age old question. There is no reason not to per se, it is more important to determine the use of the table and consider issues like replication...

  • RE: Death of the Production DBA

    I had to re-read the thread to see where it was. I have a question about those of us that work on two or more platforms/DBMS. In my case, I...

  • RE: The DBA Dot Com Bust

    The market has definitely slowed down. There is work but you have to be willing to compromise becuase it is an employers market. Those DBAs that have other collateral skills...

Viewing 7 posts - 1 through 7 (of 7 total)