Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 6,038 total)

  • RE: rebuild indexes and statistics n reporting server

    A backup is a page level copy of the original, so there is no need to perform another re-index or re-stat after restoring.

    Also, if your reporting database is static after...

  • RE: Help: Truncate tables with same prefix

    For about the 3rd time in the past week... sp_MsForEachTable to the rescue.

    exec sp_MsForEachTable

    '

    if ''?'' like ''ntEventLog%''

    begin;

    print ''truncating.. ?'';

    truncate table ?;

    end;

    ';

  • RE: What is the Future of Monitoring?

    robert.sterbal 56890 (9/28/2016)


    My two practical test are podcast transcription and photo identification.

    When this gets done affordably, we will have reached a new level of technology.

    I'm more than happy to follow...

  • RE: What is the Future of Monitoring?

    Steve Jones - SSC Editor (9/28/2016)


    Hmmm, D R O P TABLE works for me.

    Strange, maybe it has to do with the internet firewall on my end; trying to block me...

  • RE: What is the Future of Monitoring?

    null

  • RE: What is the Future of Monitoring?

    Funny, SQLServerCentral won't let me say: "D R O P TABLE" (without the spaces)

  • RE: What is the Future of Monitoring?

    So we're talking about self tuning database servers?

    Perhaps:

    Indexes that are auto-created based on data access pattterns like statistics.

    Deployments that will auto-rollback in the event of an error, without creating...

  • RE: How to Upgrade T-SQL Skills

    Grant Fritchey (9/27/2016)


    Eric M Russell (9/27/2016)


    Talib123 (9/27/2016)


    Hi All,

    I'm a production DBA and have been for a good while.

    I can query, join filters but how do I get my T-sql...

  • RE: Data compression

    PiMané (9/28/2016)


    Eric M Russell (9/28/2016)


    Data compression is mostly about optimizing storage. Page Compression will yield approximately 70% compression in tables and indexes. By reducing the number of page reads and...

  • RE: Deadlock on a "queued DELETE"

    Pingala (9/28/2016)


    As the DELETEs are queued to SQL server, I thought it will take care of on executing synchronously

    With the default read committed isolation level, readers can block writers and...

  • RE: Would You Move For a Job?

    Yes, relocating to another city or state is a pain in the arse, and it's expensive, especially if you have to sell a house. I'd consider changing jobs within the...

  • RE: Data compression

    Data compression is mostly about optimizing storage. Page Compression will yield approximately 70% compression in tables and indexes. By reducing the number of page reads and page buffers, it can...

  • RE: SQL and SEO

    SEO (search engine optimization) is a broad general term; there are many forms of search engines besides web searching and Google. Are we talking about a web search engine or...

  • RE: Deadlock on a "queued DELETE"

    Pingala (9/28/2016)


    I am not sure how many rows are in a particular "queued" delete operation. Does indexing help?

    Like I mentioned above, an index on the DELETE's WHERE clause predicate is...

  • RE: How to Upgrade T-SQL Skills

    Talib123 (9/27/2016)


    Hi All,

    I'm a production DBA and have been for a good while.

    I can query, join filters but how do I get my T-sql skills to a developer\Report writer...

Viewing 15 posts - 2,206 through 2,220 (of 6,038 total)