Viewing 15 posts - 5,566 through 5,580 (of 6,025 total)
All this talk about code books and elaborate schemes for generating one-off passwords sounds like overkill. If a tornado should strike your company headquarters, I hope you have a backup...
June 2, 2011 at 7:31 am
If you're an employee or sub-contractor, then you can (and should) acknowledge the need for external expertise, but that decision is ultimately out of your hands.
June 2, 2011 at 7:25 am
Steve Jones - SSC Editor (5/31/2011)
Assertions are a great extra check, Eric. Thanks for the note.
I'd much rather have the production control team notify me that a script failed to...
May 31, 2011 at 10:20 am
One other thing I'd like to add about deploying ad-hoc change scripts; I also wrap the DML or procedure calls in a transaction and add assertions on the expected number...
May 31, 2011 at 8:33 am
In the past, whenver a "data fix" was required in production; a change order was created, and I'd write a T-SQL script which would go though the normal version control,...
May 31, 2011 at 8:17 am
Ukon (5/28/2011)
May 31, 2011 at 7:47 am
You can bind LINQ to stored procedures, but it would involve more coding. As a compromise you could offer to create a collection of views for use by their application....
May 27, 2011 at 3:44 pm
sqldba_icon (5/23/2011)
May 27, 2011 at 6:55 am
Managing backups has never been my role, so I'm not too familiar with the technicals of how the various 3rd party solutions manage the keys. My question is: Does the...
May 27, 2011 at 6:35 am
As already suggested, look at the query execution plan to know what happending. To help things, I'd suggest inner joining that table SaveSets instead of using a sub-select in the...
May 23, 2011 at 2:57 pm
Lawrence Moore (5/23/2011)
Many thanks for your post.
It is true that DMVs offer lots of useful information, some of which could be applied for requirements discussed in my article.
However, DMVs...
May 23, 2011 at 2:49 pm
virtualjosh (5/23/2011)
SELECT @expiration_dt = [modify_date]
FROM [mydb].[sys].[tables]
WHERE [name] = 'mytable'
If I detect @expiration_dt to be newer than my stored...
May 23, 2011 at 11:07 am
SQL Server maintains statistics, which includes counts and timestamps, whenever table indexes are updated. This meta data can be queried from an interesting data management view called sys.dm_db_index_usage_stats. For some...
May 23, 2011 at 7:45 am
The most obvious way would be a SQL Profiler trace. The TextData column of the SQL:BatchCompleted event class will give you the StartTime and name of the procedure call and...
May 20, 2011 at 11:29 am
Viewing 15 posts - 5,566 through 5,580 (of 6,025 total)