Forum Replies Created

Viewing 15 posts - 31 through 45 (of 1,068 total)

  • RE: Problems with transactional replication to a reporting server

    Reports are supposed to be read (SELECT) operation. Have you investigated why they are causing blocking?

    Have you created indexes on the report server?

  • RE: Change Publisher in a transactionnal Replication

    You can initialize a subscription with a backup.

    BOL:

    Initializing a subscription with a backup

    A backup contains an entire database; therefore each subscription database will contain a complete copy of the publication...

  • RE: SQL Developer to SQL DBA

    Must read "How to become an Exceptional DBA" by Brad McGehee

  • RE: Database in Recovery mode from last 7 days.

    The message in the SQL Server log might not be related the database status.

    Is the database Log-Shipped (Secondary Server)?

    Following command is used to bring the database online:

    RESTORE DATABASE <dbname> WITH...

  • RE: SQL 2000 to 2005 - Upgrade

    DBCC UPDATEUSAGE

  • RE: Urgent Help Needed

    -- Edited ---

    To move the system database (master and tempdb), SQL Server service needs to be stopped.

    Only for user databases and msdb, taking the database offline is enough.

  • RE: Urgent Help Needed

    Is the drive size same in Prod and Dev servers?

    Please read the BOL section about moving system and user database files.

  • RE: Stored Proc and performance

    dwilliscp (1/16/2013)


    Is there any SQL that can be added to a Stored Proc to track if there was any blocking of its SQL, or for that matter explain the example...

  • RE: recover old data

    Where is the old data? Was it deleted? Was it moved to some other database or server before deleting?

    Restore the old backup as dbname_old. Then get the data from this...

  • RE: Proactive sql dba activities for Production Databases

    Monitor blocking

    Monitor free space in the data, log and disks. Increase the DB, Log file size when required to avoid auto-growth

    Alerts for job, log shipping, replication, etc.

    Monitor log file...

  • RE: Partition Switch to another database

    Bhuvnesh (1/16/2013)


    Suresh B. (1/16/2013)


    However, the filegroup can be different from that of the corresponding tables or other corresponding indexes.

    What does it mean ?

    It means table and index can be...

  • RE: Partition Switch to another database

    No. It's not possible.

    Not only in the same database, objects should be in the same filegroup.

    BOL:

    Source and target tables must share the same filegroup. The source and the target table...

  • RE: Executing Insert statements in a batch / group

    You can try BCP. It has options to inset rows in batches.

    BCP is known to be faster than other methods.

  • RE: sql upgrade

    While upgrading replicated instances, order matters.

    Upgrade should be done in the following order:

    1) Distributor

    2) Subscriber

    3) Publisher

  • RE: Configuring Replication in 2012

    jjolk (11/21/2012)


    Did I set something up wrong during my install?

    Yes.

    While installing you need to select Replication component.

    You can run setup program again and add replication component to an existing...

Viewing 15 posts - 31 through 45 (of 1,068 total)