Forum Replies Created

Viewing 15 posts - 1,816 through 1,830 (of 6,395 total)

  • RE: Static Port of Named Instance

    Ah, ok, I have never run into this issue in the past, but will keep it in mind should I encounter it.

  • RE: Merge Replication (Timeouts)

    MS recommendations is to filter out anything with a page count less than 1000

    Then reorg anything less than 30% fragmented and rebuild anything greater than 30% fragmented.

    SELECT

    case when avg_fragmentation_in_percent...

  • RE: Static Port of Named Instance

    Generally I put 0 in TCP Dynamic Ports for all of the IP segments except IPAll.

  • RE: Rebuild Index Script Not working!!!

    Whats the page count of the indexes still fragmented and what are the index types?

    SELECT object_name(IPS.object_id) AS [TableName],

    SI.name AS [IndexName],

    IPS.Index_type_desc,

    IPS.avg_fragmentation_in_percent,

    IPS.avg_fragment_size_in_pages,

    IPS.avg_page_space_used_in_percent,

    IPS.record_count,

    IPS.ghost_record_count,

    IPS.fragment_count,

    IPS.avg_fragment_size_in_pages

    FROM sys.dm_db_index_physical_stats(db_id(N'PCSTESTDBV2_11042015'), null,...

  • RE: Merge Replication (Timeouts)

    What are you trying to display?

  • RE: Mirroring is disconnected

    Care to post your logs, obfuscated of course for any critical information, the status messages should get logged

    Also take a look at https://msdn.microsoft.com/en-us/library/ms365781.aspx for tips on monitoring mirroring.

  • RE: Find previous date from table.

    select max(repdate) from @tempdat where repdate < @StartDate

  • RE: Mirroring is disconnected

    There should be an entry in the SQL log when it disconnects

  • RE: Are the posted questions getting worse?

    Jeff Moden (11/3/2015)


    No takers on the job description I posted a while back?

    Remote working an option?

  • RE: Today's Random Word!

    Ed Wagner (11/3/2015)


    whereisSQL? (11/3/2015)


    djj (11/3/2015)


    Ed Wagner (11/3/2015)


    eccentricDBA (11/3/2015)


    djj (11/3/2015)


    Ed Wagner (11/3/2015)


    DonlSimpson (11/3/2015)


    djj (11/3/2015)


    Ed Wagner (11/3/2015)


    anthony.green (11/3/2015)


    Base

    Operations

    Logistics

    Inventory

    Perpetual

    Motion

    Machine

    Time

    Paradox

    Logical

    Physical

    structure

  • RE: Mirroring is disconnected

    Take a look at sys.database_mirroring specifically the mirroring state column

  • RE: Query for history table

    I can't make heads nor tails of your sample data.

    Can you please take a look at the link in my signature on posting code and data for the best help,...

  • RE: Merge data into one row

    This produces the result set required.

    create table #quotedetail (QuoteNum int, Brand varchar(10))

    INSERT INTO #quotedetail values

    (10047,'NISSAN'),

    (10048,'TOYOTA'),

    (10049,'TOYOTA'),

    (10050,'BOBCAT'),

    (10050,'JOHN DEERE'),

    (10050,'KAWASAKI'),

    (10050,'MANITOU'),

    (10050,'POLARIS'),

    (10050,'SKYLARK'),

    (10051,'DOOSAN'),

    (10051,'MITSUBISHI')

    select * from #quotedetail

    Select distinct QD2.QuoteNum,

    substring(

    ...

  • RE: Static Port of Named Instance

    Can you post screenshots of your TCP/IP configuration

  • RE: "Transfer Logins Task"

    The transfer logins task can copy the logins and SIDs, but not the passwords. It copies the logins with a random password and it also disables the login.

    The best...

Viewing 15 posts - 1,816 through 1,830 (of 6,395 total)