Forum Replies Created

Viewing 15 posts - 2,281 through 2,295 (of 9,244 total)

  • RE: TDE and Data compression questions!!!!

    I'd like to know a bit more about the columns in this table, given the potential max row size compression may be of no benefit at all

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

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

  • RE: High Availability - only run on primary

    see if what is running on the primary node?

    code running from where?

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

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

  • RE: How to install cluster on multiple instances ?

    jitendra.padhiyar (3/9/2015)


    Still my question is unanswered :crying:

    How we can install multiple instances on cluster ?

    Read my stairway series on this site!

    jitendra.padhiyar (3/9/2015)


    1. Should we need to install cluster for...

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

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

  • RE: Application problem with AlwaysOn read only replica in synchronous commit

    ok, so here's the thing, the more readonly workload you pass to the secondary the more it can impede the redo thread and so, the further behind the secondary may...

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

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

  • RE: Application problem with AlwaysOn read only replica in synchronous commit

    the redo obviously has some latency here. Why is the application being forced to read a secondary in this case, it should be querying the primary I would have thought

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

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

  • RE: mirroring/log shipping tx log file size

    why would you want to shrink the log for it just to grow again?

    Find out whats causing the log growth first, is the mirror session synchronised or are you storing...

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

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

  • RE: How to install cluster on multiple instances ?

    SQL Server 2005 is not supported on Windows 2012, I'd be very surprised if the installer even lets you complete the install

    See this link

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

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

  • RE: Managing Log Files Sizes the Easy Way

    first thing I would ask is what is the recovery model in use on the DW database?

    I'm sure you've heard a hundred times "don't shrink your transaction logs".

    If you haven't...

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

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

  • RE: AlwaysOn connection issue with the primary node using its host name

    you are also specifying the same replicas secondary role twice, so be careful with that too.

    I can see from the query results that luckily QA-DB-DATA2-1A is set to accept readonly...

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

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

  • RE: Having issues with Log Shipping

    T-SQL??

    something along the lines of

    restore database [thesecondarydb] from disk =

    'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\primarydb_diff_backup.bak'

    with move 'logicalname' to 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\secondarydb_datafile.mdf',

    move 'logicalname' to 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\secondarydb_logfile.ldf'

    , replace, norecovery

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

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

  • RE: Log shipping restore job doesn't restore

    need to see the complete history, but its restored 0 files. You likely have an LSN gap.

    on the 2 servers that are not working as expected please run the following...

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

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

  • RE: Maximum worker threads: Always-On AG v.s. Database Mirroring

    FabricioLimaDBA (3/5/2015)


    The problems with AVG is that only works with enterprise edition.

    Then I continue to use database mirroring in clients with SQL Standard.

    Yes, but you're limited to synch only mode...

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

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

  • RE: AlwaysOn connection issue with the primary node using its host name

    sherrerk (3/5/2015)


    I add applicationintent=readonly to the connection string and it connects to the secondary with default database master.

    When connecting to a readable secondary you need to specify the database name...

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

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

  • RE: Having issues with Log Shipping

    also, dump the step output history and check for logs being skipped, etc. use this query

    selectj.name

    , s.step_name

    , h.message

    , h.sql_severity

    from

    msdb..sysjobs j inner join msdb..sysjobsteps s

    on j.job_id = s.job_id

    inner join...

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

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

  • RE: Having issues with Log Shipping

    on the 2 servers that are not working as expected please run the following query.

    select differential_base_lsn, differential_base_time

    from sys.master_files

    where database_id = DB_ID('yourdb')

    and type = 0

    group by differential_base_lsn, differential_base_time

    If the result is...

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

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

Viewing 15 posts - 2,281 through 2,295 (of 9,244 total)