Forum Replies Created

Viewing 15 posts - 241 through 255 (of 709 total)

  • RE: Group Concatenate Strings?

    Fun with recursion 🙂

    CREATE TABLE #t (a tinyint NOT NULL, b VARCHAR(10), c VARCHAR(10))

    GO

    INSERT #t (a, b,c) VALUES (1, 'ab', 'cd')

    INSERT #t (a, b,c) VALUES (1, 'ef', 'gh')

    INSERT #t (a,...

    Eddie Wuerch
    MCM: SQL

  • RE: High wait time

    Is there a TDE-encrypted database involved?

    Eddie Wuerch
    MCM: SQL

  • RE: question on indexes

    Each new row will go to the page in each index where it belongs, based on its new place in the index. If there happens to be enough room on...

    Eddie Wuerch
    MCM: SQL

  • RE: Rebuild Index gets blocked

    MiguelSQL (7/8/2016)

    However, two days later, the fragmentation levels are again at 37% and we are having the same issue.

    What can I do to narrow down the issue?

    The index is

    CREATE NONCLUSTERED...

    Eddie Wuerch
    MCM: SQL

  • RE: Justify DBA access to production

    It could simply be a standard step in creating an exception to a security rule. Just document a few relevant specific tasks that require the level of sysadmin status to...

    Eddie Wuerch
    MCM: SQL

  • RE: Clustering with problem database

    What is 'a problem'? Why did you have to restart? Was it to fix access to a cluster disk?

    Eddie Wuerch
    MCM: SQL

  • RE: 13:1:78484916 suspended PAGEIOLATCH_EX

    I looked at the image you posted.

    Wait time = 0ms. It's a disk read. That's what they look like. PAGEIOLATCH_* waits occur during disk reads. With that as both your...

    Eddie Wuerch
    MCM: SQL

  • RE: T-SQL find unique records

    If this is an interview, then 'the needful' means "admit you don't know".

    Eddie Wuerch
    MCM: SQL

  • RE: TDE - Encryption on a large database

    Also, once you TDE any database on an instance, then tempdb also automatically becomes a TDE database to prevent any TDE-encrypted data from being written unencrypted to a tempdb file....

    Eddie Wuerch
    MCM: SQL

  • RE: TDE - Encryption on a large database

    We use TDE with an HSM for several multi-TB highly-transactional databases.

    Once you set up and enable the encryption, it will run silently in the background encrypting the database while normal...

    Eddie Wuerch
    MCM: SQL

  • RE: Microsoft Certification Information Needed - Help

    The foundation certification for both SQL Server dev and DBA is MCSA:

    https://www.microsoft.com/en-us/learning/mcsa-sql-certification.aspx

    Once you have passed the three MCSA exams, you may work toward one of the SQL Server MCSE certifications.

    -Eddie

    Eddie Wuerch
    MCM: SQL

  • RE: Slow BCP Out, only 9000 rows/second

    Why BCP at all? You're adding the expensive steps of converting all of your data into and back out of text while forcing all of it to be written, flushed,...

    Eddie Wuerch
    MCM: SQL

  • RE: Always On Readonly

    Queries aren't routed, the entire connection is. The connection does not change based on the type of query executing on that connection. You will connect to the Listener in either...

    Eddie Wuerch
    MCM: SQL

  • RE: do not set any locking\blocking

    If you have a support agreement, call them up and scream at them.

    Eddie Wuerch
    MCM: SQL

  • RE: AlwaysOn failover with domain users and groups

    What does 'inaccessible' mean?

    After the failover, is the database online and available on the second instance?

    If the database isn't online, then there's one troubleshooting path.

    Have those domain users...

    Eddie Wuerch
    MCM: SQL

Viewing 15 posts - 241 through 255 (of 709 total)