Viewing 15 posts - 5,161 through 5,175 (of 6,022 total)
sqldba_newbie (4/12/2012)
Eric M Russell (4/12/2012)
sqldba_newbie (4/11/2012)
Eric M Russell (4/10/2012)
April 12, 2012 at 10:04 am
sqldba_newbie (4/11/2012)
Eric M Russell (4/10/2012)
April 12, 2012 at 7:20 am
I would not be anywhere near as knowledgeable, not at the level I am today, were it not for participating in discussion forums like SQLServerCentral. There are other non-IT things...
April 11, 2012 at 9:23 am
ssssqlguy (4/9/2012)
April 10, 2012 at 1:21 pm
Consider implementing a pass-through style query using EXEC(<sql>) AT <servername> syntax. If this query must be implemented a View, then consider replicating or grabbing a copy of the 3 remote...
April 10, 2012 at 12:40 pm
rummings (4/9/2012)
the higher ups are super stingy with disk space.... we have to squeeze out all we can to run the system.
Before deciding to shrink down the database, do some...
April 10, 2012 at 11:52 am
As a DBA who has just inherited a database with a lot of objects and little production control process in place, another thing you'll want to do is confirm that...
April 10, 2012 at 7:26 am
You may have already been looking at something like this, but the following will query table usage statistics:
select
t.name
,user_seeks
,user_scans
,user_lookups
,user_updates
,last_user_seek
,last_user_scan
,last_user_lookup
,last_user_update
from
sys.dm_db_index_usage_stats i JOIN
sys.tables t ON (t.object_id = i.object_id)
order by ( user_seeks + user_scans...
April 9, 2012 at 2:20 pm
In addition to checking database scripts into source control, any deployment to QA or Production should be tracked in a change tracking system like TFS or Mercury Quality Center. That...
April 9, 2012 at 2:05 pm
A login can inherit membership in the SYSADMIN role by membership in a windows domain group. You can confirm if a login account has been explicitly granted (or has inherited...
April 9, 2012 at 9:29 am
aaron.reese (4/3/2012)
...
Currently the table has an index on AccountID only and an index on UpdateDate only.
both indexes are non-clustered
...
The estimated query plan indicates...
April 9, 2012 at 7:29 am
Data Reconciliation can involve things like identifying the uniqueness, completeness, and validity of records. That logic may not be part of the injest, but rather a process that analyzes and...
April 6, 2012 at 4:28 pm
I read the 2nd edition of this book several years back. It's not about how to use BI tools at all, but rather more about how to apply data mining...
April 6, 2012 at 9:56 am
As a result of updates, heap (nonclustered) tables can accumulate a type of fragmentation called "Forwarded Records". If the updated row incrases in length and SQL Server can't fit it...
April 6, 2012 at 8:16 am
Regarding the issue of how to implement a rollback when deploying DDL/DML scripts, I'd prefer to deploy major changes (altering or bulk updating large tables) at an off hour with...
April 6, 2012 at 7:36 am
Viewing 15 posts - 5,161 through 5,175 (of 6,022 total)