Viewing 15 posts - 1,531 through 1,545 (of 5,394 total)
Table and index partitioning can dramatically improve performance when partition elimination can be performed.
This means that the query predicates can help the optimizer choose which partition(s) to read and which...
July 6, 2012 at 7:56 am
junlong_9292 (7/6/2012)
July 6, 2012 at 7:48 am
Brad McGehee has a nice spreadsheet that you could use to document your instances.
You can find it here: http://www.bradmcgehee.com/2012/06/do-you-document-your-sql-server-instances/
July 5, 2012 at 6:48 am
Impressive article, Dwain!
Thanks for sharing.
July 5, 2012 at 2:23 am
GilaMonster (7/3/2012)
For anyone not on/not paying attention to twitter.....It seems to be official.... I'm a Microsoft Certified Master for SQL Server 2008.
https://twitter.com/SQLintheWild/statuses/220252281847808001
Great news! Congratulations!
Well, you didn't need a certification to...
July 4, 2012 at 4:20 am
Your current query, based on the sample data you posted, returns these results:
ROMA_Accept_Fee ROMA_Pre_Reg_Fee
--------------- ----------------
NULL NULL
What would you like...
June 28, 2012 at 4:05 am
A SQL Server Audit could do the trick.
I haven't checked, but I'm pretty sure you can capture those events.
Hope this helps
Gianluca
June 27, 2012 at 4:09 pm
Jeff Moden (6/27/2012)
Ya know what I REALLY like about smart-phones, iPads, and the like? I don't have one and don't need one. 🙂
Exactly my thoughts, until I had one.
Believe...
June 27, 2012 at 9:55 am
Eugene Elutin (6/25/2012)
Don't be surprised if some databases, sometimes will be missed by sp_MsForEachDb...
Agreed. That's the reason why I coded my own replacement[/url].
June 27, 2012 at 1:45 am
This should do the trick:
DECLARE @COPYDatabaseUserName [sysname]
SET @COPYDatabaseUserName = 'Domain\Laurine Torrone'
DECLARE @statement nvarchar(max);
DECLARE @sql nvarchar(max);
DECLARE @results TABLE (
DatabaseName sysname,
name sysname,
principal_id int,
role_principal_id int,
role_name char(4),
default_database_name sysname,
default_language_name sysname
)
SET @statement = '
...
June 22, 2012 at 2:56 am
SQLComplete free does both (code formatting and intellisense).
Works quite well.
June 22, 2012 at 2:29 am
L' Eomot Inversé (6/20/2012)
But I may not find...
June 20, 2012 at 4:16 pm
Sean Lange (6/20/2012)
June 20, 2012 at 8:51 am
Viewing 15 posts - 1,531 through 1,545 (of 5,394 total)