Forum Replies Created

Viewing 15 posts - 4,801 through 4,815 (of 22,211 total)

  • RE: Are the posted questions getting worse?

    GilaMonster (4/19/2016)


    And more homework in the forums. Is it wrong to want to post a sensible-looking but completely incorrect query as answers?

    If you do, I'm going to have to mark...

  • RE: Database backup and restore automation

    The way to automate backups is to use T-SQL (or Powershell). I cover all the basics in this article.[/url]

  • RE: Performance tuning a query

    The only things that immediately jump out are the two DISTINCT operations. That's usually a crutch for either bad data or bad data structures. To really improve performance, I'd address...

  • RE: A newbie to SQL server

    And here's a quicker read, an article on getting started with backups[/url]. And restores.

  • RE: Please help me improve the performance of this query

    I have to jump on with Jeff & Kevin on this one. By and large one should use the appropriate data types in the appropriate place. Is it a non-issue...

  • RE: Statistic update

    The primary is going to follow the settings for statistics updates. It won't change because the database is in an Availability Group.

  • RE: very strange issue with profiler

    jeff.mason (4/18/2016)


    Grant Fritchey (4/18/2016)


    Piling on, don't use the Profiler GUI against production systems. It hurts performance.

    If you do go to use extended events (also my advice on a 2012 forum),...

  • RE: SQL Help Please

    I'm with Lowell. I'm only writing the query if I get the grade.

    If you're stuck, try writing the query. Show us what you have tried that doesn't work. I'm sure...

  • RE: The mystery of transaction logs

    If the log backup is not running (and that's how I read the explanation), then the committed transactions won't be removed from the log and it will continue to grow....

  • RE: Cannot connect to (local) - how can I copy databases to another computer?

    SSMS doesn't "open" anything as a database. SSMS is just the client that lets you look at what is on the SQL Server instance. It's the instance that manages and...

  • RE: very strange issue with profiler

    Piling on, don't use the Profiler GUI against production systems. It hurts performance.

    If you do go to use extended events (also my advice on a 2012 forum), be sure you...

  • RE: iam page

    At a really low level, it's how the storage of the information is maintained. But I'm with Jeff, a better definition of what you're trying to understand, other than just...

  • RE: Sql server Database Refresh

    naveen.neerukattu1228 (4/18/2016)


    Hi Homebrew01, johnwalker10

    Thankyou for your help and have little bit confusion around Refresh means Refresh will done with in single instance with multiple databases?

    It completely depends on what's...

  • RE: Data corruption aftermath -- future prevention

    Lynn Pettis (4/15/2016)


    Sergiy (4/14/2016)


    nhansen pcc (4/11/2016)


    Have you identified the corruption? has the server team looked at the drives or SAN?

    Both our internal SAN team, and the vendor have looked...

  • RE: Performance issue with Query

    What the heck is this doing in the JOIN criteria:

    0 = 1

    and pbu.bu_id is not null

    I gave up after that. I'm not paid enough.

    Instead of NOLOCK on umpti-gazillion tables, why...

Viewing 15 posts - 4,801 through 4,815 (of 22,211 total)