Forum Replies Created

Viewing 15 posts - 7,171 through 7,185 (of 22,213 total)

  • RE: Delete Vs Index

    The trick would be to look at the execution plan to understand how your delete statement is being processed. Table scans can be costly depending on the size of your...

  • RE: Bally Chohan - Main features differences between SQL 2008 & SQL 2012

    Always go the Books Online for knowledge fundamentals. It's the single best and most accurate resource you have.

  • RE: installed version with incremental updates

    Yeah, looks like you're running the release version. Just go here for details. There's also a link to the cumulative updates if you want to try them out.

  • RE: Release

    I don't know anyone having major issues with it. In fact, it seems to have fixed several problems people were having with 2012. I'd say it's been ready since April....

  • RE: Is there any chance to rearrange the execution plan manually?

    You need to have indexes in place that will give the optimizer something to work with. As it is, the only option it has is to scan the tables.

  • RE: incremental backup

    The differential backup will be used only if you specify it yourself for backups. It won't automatically run unless you set it up. The differential will only backup changes to...

  • RE: Quoram in Always on & enabiling memory optimization

    Be sure you test the in-memory stuff on a non-production server. Once you create a database as in-memory, it has to stay that way forever. You don't want to do...

  • RE: Disable sql writer

    Just disable the service. It's the kind of thing you may want to reenable in the future. Plus, it won't save memory, just storage.

  • RE: PK Question

    The GUID will fragment a lot more, that's for certain. I'd be inclined to use the three integers. They sound like the natural key anyway. And compound keys are not...

  • RE: PK Question

    Well, first of all, I'd say that while an identity column does uniquely identify a row, you still should have the business key as a unique constraint on the table....

  • RE: optimisation query

    Read the execution plan to understand how the query optimizer chose to interpret your query.

  • RE: timestamp - Paging

    Query Shepherd (11/26/2014)


    Yes. Sorry, I ment page splits and the timestamp is not indexed and the table is not a heap...

    Then it won't do anything any differently than any other...

  • RE: Creating a Query to show data side by side

    So this has nothing to do with the query. It's the settings within SSRS that will allow you to have multiple columns.

    Unfortunately, I don't know SSRS well enough to...

  • RE: timestamp - Paging

    How do you mean paging? Data is stored on pages. Do you mean page splits? Timestamp isn't going to lead to page splits unless you've indexed it and then it...

  • RE: database stages

    For the general stages, go and look at the error log of a server right after startup. It'll show you a number of processes as each completes so that you...

Viewing 15 posts - 7,171 through 7,185 (of 22,213 total)