Viewing 15 posts - 3,496 through 3,510 (of 6,035 total)
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...
August 26, 2015 at 7:32 am
dwain.c (8/25/2015)
BTW. ...
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...
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...
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?
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...
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...
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...
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...
August 25, 2015 at 9:00 am
Matt Miller (#4) (8/24/2015)
Eric M Russell (8/24/2015)
August 24, 2015 at 2:43 pm
When I write unit tests, it gets run in both development and QA. Each unit test is a script that maps to a specific functional requirement. A test plan lists...
August 24, 2015 at 12:13 pm
All of the functionality you just mentioned (logging record counts, event handling, scheduling, email alerts, etc.) are basic functionality of SSIS and SQL Server Agent.
August 24, 2015 at 11:37 am
Jeff Moden (8/24/2015)
Eric M Russell (8/24/2015)
August 24, 2015 at 10:08 am
It seems to me that, even in the event of a catastrophic computer system failure, an airplane should still be functional enough to make an emergency landing under manual control.
August 24, 2015 at 9:25 am
maxlezious (8/24/2015)
Eric M Russell (8/24/2015)
maxlezious (8/24/2015)
I currently have a job setup which runs the stored procedure every week and inserts the usage figures in a table. All...
August 24, 2015 at 8:18 am
Viewing 15 posts - 3,496 through 3,510 (of 6,035 total)