Forum Replies Created

Viewing 15 posts - 3,826 through 3,840 (of 9,253 total)

  • RE: SQL Database using SAN

    Grant Fritchey (1/2/2014)


    100% true. But, you probably wouldn't be asking about where to put storage if you had no choice in the matter.

    Sure, about the only time is when migrating...

  • RE: Trace file error

    Krishna1 (4/9/2013)


    DECLARE @filename NVARCHAR(1000);

    DECLARE @bc INT;

    DECLARE @ec INT;

    DECLARE @bfn VARCHAR(1000);

    DECLARE @efn VARCHAR(10);

    -- Get the name of the current default trace

    SELECT @filename = CAST(value AS NVARCHAR(1000))

    FROM ::fn_trace_getinfo(DEFAULT)

    WHERE traceid = 1 AND...

  • RE: How to keep logshipping up after failover

    Follow this knowledge base article from MS

  • RE: Transactional Replication Questions and Concerns

    JoshDBGuy (12/30/2013)


    and need to replicate/mirror/copy/log ship to another server in the cloud.

    First thing to do is to decide on which you will use sounds like you have thought about it...

  • RE: SQL Database using SAN

    Grant Fritchey (1/2/2014)


    If you want faster performance for the system databases, you might consider local storage.

    Unless its an FCI then you are required to use shared storage not local

  • RE: Generate Table Scripts

    Right click the table and select "Script table as" > "Create to" > "New query editor window".

    Do you see the default constraint script there?

    Please post results of the following query

    SELECTdc.nameAS...

  • RE: High Availability Clustering and SQL SERVER 2008

    are you referring to database mirroring?

    You cannot mirror system databases. If you have installed a failover clustered instance of sql server, the system databases will be on shared drives that...

  • RE: Replicate filetables to a remote site

    when you mention filetables are you referring to filestream objects?

  • RE: Installation

    EdVassie (12/30/2013)


    The main benefit of doing an unattended installation is you can guarantee repeatability.

    It is too easy with a manual install to forget to select a given option...

  • RE: I want to get one day before date from my table

    SELECT DATEADD(day, -1, b.MYDATE), DeliveryDate from MYTABLE b

  • RE: Installing a clustered SQL 2012 instance is extremely slow

    thierry.vandurme (12/30/2013)


    Hi Perry,

    the difference between installing an extra SQL 2008 R2 instance (about 1h) or an extra SQL 2012 instance (about 4h) is out of proportion though.

    Chrz

    Thierry

    are downloading any...

  • RE: Log shipping job and Maintenance Plan (full and diff backups)

    smtzac (12/23/2013)


    In my sql instance I have configured log shipping on Prod database and same time there is a Maintenance plan which is taking the same database Full and Diff...

  • RE: SQL Database using SAN

    niver (12/26/2013)


    Do i need to Add the SYSTEM Databases the .mdf of ( Master, msdb, temp etc) to the Storage? please help me thank you masters

    You can move all...

  • RE: Log Shipping, daily backup's on primary

    Elliott Whitlow (12/12/2013)


    The full backups should not affect the log shipped databases.

    CEWII

    Directly, no. Indirectly for the reason listed below

    george sibbald (12/23/2013)


    smtzac (12/23/2013)


    how about diff. backups? will this break LSN?

    No

    It will...

  • RE: Log shipping to two secondary databases and one has failed

    ron.grout (12/18/2013)


    I have log shipping set up to update two secondary databases, one on our backup server here in the UK and one on a server in our US office.

    I...

Viewing 15 posts - 3,826 through 3,840 (of 9,253 total)