Forum Replies Created

Viewing 15 posts - 4,291 through 4,305 (of 9,241 total)

  • RE: Log Shipping Failover Test

    MissTippsInOz (2/14/2013)


    However I did, and still believe its necessary

    The idea is to keep the 2 way configuration in place as the document states.

    From the error it sounds like an agent...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Log Shipping Failover Test

    The link I posted does not tell you to run sp_delete_log_shipping_primary_secondary or sp_delete_log_shipping_primary_database for the role reversal!!

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Split VLDB into Multiple data files

    balasach82 (2/14/2013)


    My database is already populate, its 523gb now.

    1. Can I create new files in new drive but in Primary filegroup

    If the database and its primary filegroup is already at...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: create database failed

    sumith1andonly1 (2/13/2013)


    I try to create database in sql server(logon as windows authentication).

    GOT ERROR : "User does not have permission to create database".

    Then i tried to enable 'sa' account.but it also...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Log Shipping Failover Test

    MissTippsInOz (2/13/2013)


    Hi

    I'm currently running some DR testing and have failed over a couple of databases to our DR site. Generally the process was:

    Tail log backup on ServerA with NORECOVERY

    RESTORE...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving Database Files in SQL Server

    No but since the database id may change history would be lost here

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving Database Files in SQL Server

    Jason Shadonix (2/13/2013)


    Right...but the mere fact that you have to type in slightly different syntax to attach a database isn't by itself an argument to stop detatching and attaching databases....

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving Database Files in SQL Server

    I'm not being snarky that comment is a subtle hint.

    The old

    EXEC sp_attach_db @dbname = N'AdventureWorks2012', @filename1 =

    N'C:\Somepath\AdventureWorks2012_Data.mdf', @filename2 =

    N'C:\Somepath\AdventureWorks2012_log.ldf';

    The new

    CREATE DATABASE database_name

    ON PRIMARY (name=mydb_data, filename='d:\somepath\mydbdata.mdf')

    LOG ON (name=mydb_log,...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving Database Files in SQL Server

    Jason Shadonix (2/13/2013)


    But that's just a minor syntax change in the process. [/Quote]

    You're joking right? Create and alter database have been enhanced extensively to include extra commands (file management, mirroring,...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Split VLDB into Multiple data files

    balasach82 (2/13/2013)


    My database files are in 1 drive. My database has grown huge andwill keep on increasing in size. To better utilise the disk space and to manage the db,...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving Database Files in SQL Server

    Jason Shadonix (2/12/2013)


    Question - What advantages does this method have over the detatch/reattach method of moving files around?

    It's the supported way of moving database files and doesn't involve dropping the...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Split VLDB into Multiple data files

    balasach82 (2/12/2013)


    We have an 600gb database as a single mdf and ldf. Due to various reasons, we are planning to split them into multiple files (4) as,

    Database_Data.mdf

    Database_1.ndf

    Database_2.ndf

    Database_3.ndf

    Database_4.ndf

    Database_log.ldf

    I have decided on...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: large msdb databse

    Check the output of the following query for top consuming tables and post their names

    USE msdb

    GO

    SELECTOBJECT_NAME(i.object_id) AS TableName

    , ISNULL(i.name, 'HEAP') AS IndexName

    , i.type_desc AS IndexType

    , p.partition_number AS PartitionNo

    , p.rows AS...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server doesn't see Data drive

    The issue only seems to be affecting local disks too, all my windows 2012\sql server 2012 VMs are on ESX5.1 and are using iSCSI disks not VMWare virtual disks. I...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Moving Database Files in SQL Server

    kevaburg (2/12/2013)


    Although this is a very good article with regards to moving user databases

    That is exactly what it is targeted at!

    kevaburg (2/12/2013)


    what happens if you want to move the master...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 4,291 through 4,305 (of 9,241 total)