Forum Replies Created

Viewing 15 posts - 5,056 through 5,070 (of 22,211 total)

  • RE: Killing Backup job

    Without seeing the code that's calling the backups, it's hard to tell you why it continued after you killed the process. However, in terms of stopping the backups, there's no...

  • RE: Compare int

    If you showed what your WHERE clause is, it would be easier to answer this question.

  • RE: SQL 2014 - to Azure Migration - Management studio version

    There are a bunch of ways to move a database into Azure and you don't have to use Management Studio for all of them. The method within SSMS is to...

  • RE: update statistics during production ?

    In SQL Server 2012 and earlier, if the value falled outside the range of statistics, the optimizer assumed that the number of values returned was 1 row. This changed in...

  • RE: update statistics during production ?

    Sorry, been on the road.

    First, you have OPTION RECOMPILE on your query. Whether your update your statistics or not, you're going to get a recompile every time that query runs....

  • RE: Getting Started

    It doesn't matter if there are 50 great presentations. My favorite intro topic is backups. Why? Everyone has a backup book, article, blog post and presentation, so what is one...

  • RE: Count of Queries

    And that'll work, sort of. You'll have to resolve the counts on executions between each set of data collection. You'll have to sweat queries that aren't stored in cache so...

  • RE: Linked Servers, Views, and Stored Procedures

    OPENQUERY and passing the parameters to the remote server versus just connecting the tables and letting all the filtering occur wherever (SQL Server can, sometimes, figure out how to filter...

  • RE: Linked Servers, Views, and Stored Procedures

    You should be able to spoof the query so that the views behave as if they were just a cross-database query. It won't be. It'll be a cross-server query and...

  • RE: Count of Queries

    mcopa (2/25/2016)


    What exactly do you mean by this: "if you really need to know exactly how many queries are run against the database, you need to set that up...

  • RE: User shouldn't be able to run but can in production

    Jeff Moden (2/25/2016)


    Markus (2/25/2016)


    Is it possible to run profiler and see what userid is connecting and running that query?

    Agreed. Setting it up to find the name of the proc...

  • RE: Linked Servers, Views, and Stored Procedures

    Views is probably the best approach. You could also look at synonyms, but I'm not sure they'll work the same way in this situation.

  • RE: Transaction Log Details

    Kalen Delaney's book, SQL Server Internals, covers all this extremely well.

  • RE: need help to build home lab or find resources for online labs

    I agree with Gail, doing this stuff in Azure is the way to go. You're going to see more and more people in a hybrid environment anyway, might as well...

  • RE: update statistics during production ?

    Alexander Suprun (2/24/2016)


    tony28 (2/24/2016)


    I tried now on few tables and I cannot see some effect during production and we are working in real time, so some little delay and I...

Viewing 15 posts - 5,056 through 5,070 (of 22,211 total)