Viewing 15 posts - 31 through 45 (of 57 total)
A bit late but I made the following updates which were useful to me -- flag table versus view and identify if a field is an identity field. Maybe...
March 11, 2014 at 7:11 am
For the index query try
INNER JOIN sys.index_columns b
ON a.[object_id] = b.[object_id] and a.index_id = b.index_id
February 18, 2014 at 12:46 pm
Carlo Romagnano (2/2/2014)
I also found this doc from MSDN that explains the answerSSAS2005PerfGuide.doc
+1
That's the resource I found
February 3, 2014 at 1:33 pm
Koen Verbeeck (1/24/2014)
Great question and a very nice explanation.
+1
Great explanation
January 24, 2014 at 5:11 am
You can also use
select o.name as ProcedureName
, db_name(parent_object_id) as DatabaseName
--, sm.definition
, o.create_date as CreateDate
, o.modify_date as LastAlteredDate
from sys.sql_modules sm
inner join sys.objects o on sm.object_id = o.object_id
Benefit is the definition here...
January 15, 2014 at 7:30 am
Fragments in full-text catalog
select object_name([table_id]) as TableName
, count([fragment_id]) over(partition by table_id) as Fragments
from sys.fulltext_index_fragments
December 6, 2013 at 5:36 am
Hugo Kornelis (6/13/2013)
If the question is "how many rows", the answer options should...
June 13, 2013 at 4:59 am
zerko (4/28/2013)
The QotD question states "Which of the following hints require the word WITH? (choose 3) "
I don't use Table Hints that...
April 29, 2013 at 5:57 am
Hugo Kornelis (4/4/2013)
But ... (isn't there always a "but"?)
When I saw the question in the newsletter, I expected the answer options to be phrased in...
April 4, 2013 at 5:34 am
The way I read there are only 2 correct answers:
not 106,107,109,113
20,21
The answer, and included as a correct answer
Styles greater than 100
Cannot be correct because of the exceptions 106,107,109,113.
The answer appears...
March 22, 2013 at 9:56 am
I figured I was missing something/not thinking straight this morning.
Thanks
January 17, 2013 at 7:44 am
Not so much the information on that "landing page" as much as the additional links to additional information regarding each index type.
Worked for me this time 😀
Cheers.
August 6, 2012 at 10:08 am
August 6, 2012 at 7:52 am
Did a little research and ran across this previous QotD
http://www.sqlservercentral.com/questions/Model+Database/69457/
"With SQL Server 2005 or 2008. Wnen (sic) working with the Model database what can you NOT do? Select...
February 22, 2012 at 5:37 am
Viewing 15 posts - 31 through 45 (of 57 total)