Forum Replies Created

Viewing 15 posts - 3,496 through 3,510 (of 6,041 total)

  • RE: NOSQL and RDBMSs

    David.Poole (8/27/2015)


    I do take exception to the comment made in the article:

    While I understand the pressure to adopt a SQL like language I do think it is a mistake to...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: read only database copy?

    CDC is not available in Standard Edition.

    There are other forms of SSIS DataFlow tasks that could do the job, but they put an unnecessary query load on the source...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: NOSQL and RDBMSs

    David.Poole (8/26/2015)


    Why do we use an RDBMS for….

    •Web session state?

    •Logging and auditing?

    •Queueing applications?

    That's a question I often ask a lot when someone speaks of a problem they are encountering...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: NOSQL and RDBMSs

    greenclay (8/27/2015)


    Sorry, but I have to ask - in the following sentence ---

    I think that both the stick-in-the-mudes and fanboys have failed

    That should be "muds" and not...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: A Clock With Benefits

    Wayne West (8/26/2015)


    ZZartin (8/26/2015)


    I like how xkcd explained it, http://xkcd.com/1425/

    I think the most telling part of that comic is what the cursor hovertext describes. I've learned to ALWAYS read...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: A Clock With Benefits

    BTW, what exactly is a "Clock With Benefits" ?

    Is that like a Friend With Benefits?

    http://www.cafepress.com/+friends-with-benefits+clocks

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: A Clock With Benefits

    I've found that well written set based T-SQL requires less time to code, runs faster, and is easier to read and maintain than spaghetti code. Unfortunately most organizations hire half...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: The Tally Table

    dwain.c (8/25/2015)


    Thank the Buddha for whoever came up with the idea of a Tally table in the first place! I just love 'em (but probably everybody knows that).

    BTW. ...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Stored Procedure runs fine on the Production Server and two Test Server but not on the replicated Server.

    Welsh Corgi (8/25/2015)


    The executions are relatively the same.

    It takes a minute and 19 seconds or the Published and 5 and a half minutes on the Subscriber.

    So you're saying the number...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Stored Procedure runs fine on the Production Server and two Test Server but not on the replicated Server.

    Welsh Corgi (8/25/2015)


    ...

    Sweet.:-)

    Thanks Eric.

    Know I have to get used to WinMerge.

    WinMerge is very simple, just click File.. New.. which open two empty document tabs, and then paste result from two...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Stored Procedure runs fine on the Production Server and two Test Server but not on the replicated Server.

    Using sys.dm_exec_procedure_stats or running procedure call with SET STATISTICS IO ON, can you determine if the number of logical or physical reads are significantly different between the two servers?

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: How to determine when a statistic was last used by the optimizer? Cleaning-up Auto-Generated Stats

    Maybe have your maintenance job leverage sys.dm_db_index_usage_stats to only update statistics on tables and indexes that received heavy updates since the last time the job ran. For example large but...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: How to determine when a statistic was last used by the optimizer? Cleaning-up Auto-Generated Stats

    The following will return last update date for both table and index statistics.

    SELECT 'TABLE' object_type, object_name(object_id)object_name, name AS stats_name,

    STATS_DATE(object_id, stats_id) AS statistics_update_date

    FROM sys.stats

    UNION ALL

    SELECT...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Metrics Table or Performance Tuning

    You've probably already considered this, but if you do go the route of summary tables, then perform incremental builds. In other words, if the fact table is inserted with daily...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Stored Procedure runs fine on the Production Server and two Test Server but not on the replicated Server.

    The following query will return for each statement in a stored procedure:

    execution plan, elapsed time, worker time (CPU), wait time (in blocked state), local reads, physical reads, and rows...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

Viewing 15 posts - 3,496 through 3,510 (of 6,041 total)