Viewing 15 posts - 16 through 30 (of 266 total)
I prefer to think of it as "long running queries". You can either use SQL Profiler with a duration filter, or you can use DMV's with TSQL. If you go...
September 21, 2010 at 9:53 am
Everything has a particular context that is already known, and adding entity prefixes to columns is redundant and nonflexible with the possible exception of Identity/GUID/Surrogate key columns.
Consider the scenario...
September 16, 2010 at 9:16 am
Try installing SQL Server cumulative service pack 3. You may be suffering from a different, or additional problem. then what 931593 specifically fixes.
September 16, 2010 at 8:56 am
Excellent - and kudos to you for "standing up" to the developers Felicitywie. This is a good precedent to set in your new position. There is a delacate balance between...
September 16, 2010 at 7:23 am
It sounds like the poor performance has a very weak correlation to the switching on and off for the setting. I have used read committed snapshot and toggled off/on with...
September 15, 2010 at 3:12 pm
Itzik Ben-Gan Inside Microsoft SQL Server 2008 Series.
September 15, 2010 at 9:21 am
There may not be anything you can do about it, but it sounds like a bad requirement. It puts the responsibility on you for other people's code. The test and...
September 15, 2010 at 9:01 am
P Jones (9/15/2010)
September 15, 2010 at 7:53 am
The execution plan will show you what indexes are in play and which ones are missing. If you are on SSMS 2008/2008R2 it will show you which indexes are missing...
September 14, 2010 at 8:17 am
I would not allow them to modify their jobs without the approval process of a DBA. The method you would use for allowing them to modify thier jobs would be...
September 14, 2010 at 8:12 am
These wait types look like the T-SQL is running in parallel and result sets are being combined. However, I am curious what you are looking at that is showing that...
September 14, 2010 at 7:21 am
This goes back to the role playing that I mentioned.
Dimensions can play different roles in a fact table depending on the context. For example, the Date dimension can be...
September 13, 2010 at 7:20 am
It sounds to me like you are using SSAS (Analysis Services). I always try to start out using the base objects as they are in the DSV, and if I...
September 10, 2010 at 3:31 pm
I see. I guess if that's what you were dealing with you could have just as easily generated the script with
SELECT 'DENY SELECT ON [' + s.name + '].['...
September 10, 2010 at 7:13 am
GRANT SELECT ON [Schema Name].[Table Name] to [Principal Name]
I guess you tried this but the user has access to objects through other groups/roles. What you are trying to do cannot...
September 9, 2010 at 2:22 pm
Viewing 15 posts - 16 through 30 (of 266 total)