Forum Replies Created

Viewing 15 posts - 11,611 through 11,625 (of 49,562 total)

  • RE: Symptoms Memory Problems

    Memory pressure won't necessarily cause slow queries.

    Chapter 4: https://www.simple-talk.com/books/sql-books/troubleshooting-sql-server-a-guide-for-the-accidental-dba/

  • RE: Having Problem in restoring transaction log backup

    Marek Grzymala (9/23/2013)


    Aren't both errors in effect caused by TRUNCATE_ONLY (which breaks the LSN, deosn't it) from step 2?

    The first one is, but the second occurs when you've forked the...

  • RE: Adhoc queries and DB id

    Try a server-side trace.

  • RE: TempDB best practices - Doubt

    How big does TempDB get? Take that size, divide by the number of files, add a bit extra for safety.

  • RE: How to Move Table with Non-Clustered Index?

    Does the table have a clustered index? The presence or absence of non-clustered indexes is irrelevant when trying to move the table.

  • RE: Adhoc queries and DB id

    There is no database ID for ad-hoc queries. You could try parsing the statement and figuring out which tables it uses and which DB those are in.

    But then, what database...

  • RE: Adhoc queries and DB id

    Short of parsing the ad-hoc statement, figuring out which tables are there and linking them to a DB, you don't.

  • RE: awe enable?

    Do Not add SQL Server to the administrators group. That's a bad security practice, SQL does not need to be administrator and should not be administrator.

    After granting the SQL Server...

  • RE: awe enable?

    Zeal-DBA (9/21/2013)


    i already configured AWE enable and max server memory to 24 GB, i dont think its in effect because it shows in task manager only 3.5 GB consume.

    Because locked...

  • RE: Restore Database - is File= optional?

    No, that's the complete opposite of what I'm explaining.

    The FILE = is necessary when multiple different backups have been made to the same file. Your example shows one backup to...

  • RE: Sub partitions

    Welcome to 'it depends' 🙂

    If you want to do fast loads and fast deletes (switch partitions in/out), then partition. If you want to do index maintenance at the partition level,...

  • RE: Experiment in High Availability

    C.K.Shaiju (9/21/2013)


    Thanks, have read that clustering and mirroring required new addition of hardware and software

    Virtual machines. No additional hardware necessary.

  • RE: Restore Database - is File= optional?

    It's specifying the file within the backup, not the file or filegroup. Only necessary if you append multiple backups to the same backup file and want to restore a backup...

  • RE: MOVE DB Online

    No.

    Moving to another server can be done with minimal downtime by using log shipping or mirroring, but there will still be a small amount. Moving the DB to another drive...

  • RE: Out of memory error

    The error message (out of memory) is a client-side error. It's not SQL Server that's running out of memory, it's the client application (Management studio). There's no option in SQL...

Viewing 15 posts - 11,611 through 11,625 (of 49,562 total)