Viewing 15 posts - 5,176 through 5,190 (of 6,034 total)
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
mohan.bndr (3/29/2012)
I am going to handle new project in my org., before that i need to know technlogies,versions,application softwares and databases etc. that they are using. So I require help...
April 5, 2012 at 3:55 pm
April 5, 2012 at 1:43 pm
Seeing the shattered remains of all these businesses in the wake of a tornado or hurricane is also a reminder of the importance of off-site backups. Insurance will cover the...
April 5, 2012 at 1:27 pm
Viewing 15 posts - 5,176 through 5,190 (of 6,034 total)