Viewing 15 posts - 3,496 through 3,510 (of 6,041 total)
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
August 27, 2015 at 10:04 am
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
August 27, 2015 at 8:29 am
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
August 27, 2015 at 7:46 am
greenclay (8/27/2015)
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
August 27, 2015 at 7:26 am
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
August 26, 2015 at 10:37 am
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
August 26, 2015 at 9:27 am
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
August 26, 2015 at 7:32 am
dwain.c (8/25/2015)
BTW. ...
"Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho
August 26, 2015 at 7:21 am
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
August 25, 2015 at 3:14 pm
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
August 25, 2015 at 2:22 pm
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
August 25, 2015 at 2:19 pm
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
August 25, 2015 at 1:40 pm
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
August 25, 2015 at 11:23 am
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
August 25, 2015 at 10:35 am
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
August 25, 2015 at 9:00 am
Viewing 15 posts - 3,496 through 3,510 (of 6,041 total)