Forum Replies Created

Viewing 15 posts - 211 through 225 (of 612 total)

  • RE: Backing up log in High Availability

    GilaMonster (12/11/2016)


    Log backups don't make the file smaller. They mark the space in the file as reusable.

    But if his log is getting physically larger then something is taking up the...

  • RE: Unable to restore a database on a new instance

    Perry Whittle (12/6/2016)


    Guðjón Kr. Sigurðsson (12/6/2016)


    Turns out removing the TDE before a new backup was the solution. 🙂

    We had not tried the detach/attach method.

    There shouldnt be any reason why you...

  • RE: SQL Server 2016 and Raspberry Pi

    Hi Thom,

    thanks for clarifying; that was my thought as well. The link I will be checking out.

    Looks like I'll be relying on inefficient ETL in the meantime.....

  • RE: Disk space full

    Ed Wagner (12/10/2016)


    kevaburg (12/10/2016)


    Ed Wagner (12/10/2016)


    kevaburg (12/9/2016)


    Try a shrinkdatabase:

    exec sp_msforeachdb 'DBCC SHRINKDATABASE [?]';

    It is far from ideal and you will most likely experience performance problems during the run (do it...

  • RE: have issue with istallation of 2016 /

    Ed Wagner (12/10/2016)


    kevaburg (12/10/2016)


    From my point of view you quite simply don't have the permissions to perform the installation.

    Have you tried starting the Installation with elevated privileges (Run As Administrator)?

    The...

  • RE: Disk space full

    Ed Wagner (12/10/2016)


    kevaburg (12/9/2016)


    Try a shrinkdatabase:

    exec sp_msforeachdb 'DBCC SHRINKDATABASE [?]';

    It is far from ideal and you will most likely experience performance problems during the run (do it in a maintenance...

  • RE: Complexity factors - database infrastructure

    How do you measure database complexity?

    Ideally a solution will be as simple as possible, but does not necessarily mean it will be simple.

    Very rarely will a developer be able to...

  • RE: SQL 2016 install issues

    HanShi (12/9/2016)


    simon_s (12/9/2016)


    .... (I've even tried manually tried installing the KB but it fails with "The Update is Not applicable to Your Computer)

    Have you read this article? Fix: Windows...

  • RE: have issue with istallation of 2016 /

    From my point of view you quite simply don't have the permissions to perform the installation.

    Have you tried starting the Installation with elevated privileges (Run As Administrator)?

    The Red Cross though...

  • RE: tempdb errors

    Saurabh.D (12/9/2016)


    Very less information I found on xp_readerrorlog

    Exec sp_helpextendedproc 'xp_ReadErrorLog' gives "xpstar.dll" as source.

    there is no page even on MSDN Library

    Here is...

  • RE: tempdb errors

    Saurabh.D (12/9/2016)


    This will work

    EXEC xp_ReadErrorLog 0, 1, Null, Null, '2012-05-16 00:00:00', '2019-12-31 23:59:59'

    ExtendedStoredProc xp_ReadErrorLog has Start_Date & End_Date options

    When I understand the procedure properly...

  • RE: Add node in SQL Cluster

    R.KU.PA_DBA (12/8/2016)


    Hi Guys,

    I have two node windows server 2012 cluster with SQL installed in cluster, I need to add the another two nodes into the same cluster.

    Is this possible to...

  • RE: Automatic backup and restore using SQL Server 2014

    sal-295209 (12/8/2016)


    Hi Everyone,

    I have 2 servers running SQL Server 2014 which are in different location. Server 1 does not see Server 2 and vice versa. I have a shared drive...

  • RE: Disk space full

    Try a shrinkdatabase:

    exec sp_msforeachdb 'DBCC SHRINKDATABASE [?]';

    It is far from ideal and you will most likely experience performance problems during the run (do it in a maintenance window) but if...

  • RE: tempdb errors

    Here is a solution that might suit your purposes:

    create procedure sp_readerrors

    as

    declare @string1 nvarchar(64) = null;

    declare @string2 nvarchar(64) = null;

    declare @logNum int = 0;

    declare @logtype int = 1;

    declare...

Viewing 15 posts - 211 through 225 (of 612 total)