Forum Replies Created

Viewing 15 posts - 8,416 through 8,430 (of 22,215 total)

  • RE: Does anyone care that I passed 70-461?

    As someone who used to hire people....

    Nope. I don't care.

    I know the test says it's advanced and special and shows off a great deal of knowledge, but that's just not...

  • RE: Changes not holding in Stored Procedure

    Awesome. Glad you figured it out.

  • RE: [High Important]Could not continue scan with NOLOCK due to data movement

    You're experiencing page splits or rearrangement due to changes in the data and you're using, I suspect, a client-side cursor to retrieve the information. This is actually normal behavior. You've...

  • RE: Stopping a check integrity DB job what will happen?

    Rebuilding an index online means it will absolutely be accessible. An index rebuild without the online option will block access while the rebuild occurs. It's a bit of a dance...

  • RE: restoration issue

    In general, not always, but usually, the error message is telling you what's wrong and what you need to do to resolve it. You had an incomplete restore, specifically on...

  • RE: Changes not holding in Stored Procedure

    Yeah, but even if they're "on the server" they're using SSMS, right? You could check the default connection settings for each. ANSI differences could be occurring. Not sure why that...

  • RE: Extended Event

    If you're looking at the Data Explorer and the event you're looking at is database_xml_deadlock_report, it's going to just have an XML output. You can open that as you've seen...

  • RE: Deadlock prediction

    Prediction? No. But following coding best practices to write queries such that they access objects in the same order, that they don't have major performance issues, that they use indexes...

  • RE: restoration issue

    Please don't cross post questions to multiple forums. It just confuses the discussion.

    Gail, I said the same thing on the other one.

  • RE: restore operation was interrupted

    Sounds like you need to do what it suggests, start the process over again. Be sure that the FULL BACKUP you're restoring is linked to the DIFFERENTIAL you're restoring.

  • RE: SQL Server not able to connect

    First, follow the suggestion and increase your max worker threads. That will both alleviate the issue and make it worse at the same time. It sounds like your system has...

  • RE: Stopping a check integrity DB job what will happen?

    Don't run DBCC checks hourly. That's a very serious load on the system.

    Since you've never run the consistency checks, I'm with Gail, let them run no matter how long it...

  • RE: how to rollback restoration

    The entire idea behind backups is to have a complete copy of the database. A restore operation also is a complete copy of the database. This is not an import/export...

  • RE: Changes not holding in Stored Procedure

    But if the permissions were different, you'd get an error, not just disappearing comments. Are the schema's different or missing? Are you putting the comments within the procedure definition or...

  • RE: Backup Compression Restrictions

    I've put SQL Server compressed backups with non-compressed backups, script files, all sorts of things. It's just a file. I can't tell you that I have specifically put it on...

Viewing 15 posts - 8,416 through 8,430 (of 22,215 total)