Viewing 15 posts - 4,111 through 4,125 (of 7,597 total)
Eric M Russell (9/28/2016)
ScottPletcher (9/28/2016)
September 28, 2016 at 2:54 pm
You'd still need to keep at least the history from the previous check, because an index/table could be dropped, which would remove it from the system views.
September 28, 2016 at 1:53 pm
Option (1) should be fine as long as the trigger is efficiently written and there is an index to support the trigger's query. For example, if the table is...
September 28, 2016 at 12:56 pm
USE HandsOnOne;
SELECT c.CustomerName, a.City, a.State
FROM Customer c
INNER JOIN Address a
ON a.AddressID = c.CustomerAddressID
ORDER BY a.ZipCode ASC, c.CustomerName ASC;
September 28, 2016 at 12:48 pm
You could populate a table with the test values you want to us, then process from it in a loop or by using GO <#_of_test_runs>, which I used below just...
September 28, 2016 at 12:42 pm
The irony is it might be more overhead to check for the updates than to just do the log transfers.
In theory you might (should?) be able to use sys.dm_db_index_operational_stats to...
September 28, 2016 at 12:30 pm
I suggest using a CASE technique to add the desired matches because that method gives you great flexibility on specifically what values to match. The code is somewhat longer,...
September 28, 2016 at 12:21 pm
Lynn Pettis (9/27/2016)
ScottPletcher (9/27/2016)
Talib123 (9/27/2016)
I'm a production DBA
... how do I get my T-sql skills to a developer\Report writer level.
So you want to go from DBA-level SQL to developer-level SQL:
Destroy...
September 27, 2016 at 2:01 pm
You don't need a global temp table, a regular temp table will do.
Create the table in main stored proc, then ALTER it using dynamic SQL. Since the temp table...
September 27, 2016 at 1:59 pm
Talib123 (9/27/2016)
I'm a production DBA
... how do I get my T-sql skills to a developer\Report writer level.
So you want to go from DBA-level SQL to developer-level SQL:
Destroy half your brain...
September 27, 2016 at 11:23 am
I can't think of a way right now for that to work using a table variable.
Can you use a temp table instead?
September 27, 2016 at 10:32 am
Eric M Russell (9/26/2016)
ScottPletcher (9/26/2016)
Eric M Russell (9/26/2016)
ScottPletcher (9/23/2016)
Eric M Russell (9/23/2016)
Regardless of SQL Server version, performance optimization should start by looking at execution plans.
Not necessarily. If the best...
September 26, 2016 at 11:04 am
First, cluster the tables for best (overall) performance. In particular, don't assume that every table should be clustered by identity. That's most often simply not the best way...
September 26, 2016 at 10:42 am
Eric M Russell (9/26/2016)
ScottPletcher (9/23/2016)
Eric M Russell (9/23/2016)
Regardless of SQL Server version, performance optimization should start by looking at execution plans.
Not necessarily. If the best clustered indexes are not...
September 26, 2016 at 9:47 am
Eric M Russell (9/23/2016)
Regardless of SQL Server version, performance optimization should start by looking at execution plans.
Not necessarily. If the best clustered indexes are not already in place, you...
September 23, 2016 at 3:07 pm
Viewing 15 posts - 4,111 through 4,125 (of 7,597 total)