Viewing 15 posts - 421 through 435 (of 629 total)
Katmai was the code name for SQL 2008 before it was release.
You can download the database from: http://msftdbprodsamples.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=18407
Thanks.
March 12, 2009 at 11:25 pm
index_depth is not an indicate on how fragementation it is an indication on how big is your index. An index is a b+ tree. So if you have...
March 12, 2009 at 5:06 pm
pobeda (3/12/2009)
quick question, sql 2005 maint. plan would not let you specify fill factor for re-indexing job.
Would this be safe to assume, that it will use server default fill...
March 12, 2009 at 4:57 pm
But you can gain performance gain from adding another file if you put it on different spindle on your San :).
If it is not available growing the Files would be...
March 12, 2009 at 4:51 pm
I am not sure what you are asking? Are you wondering can Index be fragmented at high depths? Yes, but it will not show affect unless it is...
March 12, 2009 at 3:39 pm
I wasn't suggesting it wasn't sorry if it sounded that way ...
Mohit.
March 12, 2009 at 3:34 pm
Four entries can be generated because the value passed in with the statement prompted SQL Server to make a new execution plan.
You can get the execution plan using following query:
SELECT...
March 12, 2009 at 2:51 pm
You can use a function to do you check constraint ...
March 12, 2009 at 2:48 pm
How often are you doing you T-Log backup? The transaction log will keep growing and the transactions will not get truncated until you do backup.
So lets say ..
8AM You...
March 12, 2009 at 2:33 pm
You can look at using OPENROWSET function, look at link.
Thanks.
March 12, 2009 at 2:25 pm
Only way I can think of doing it by means of an add-in but my .NET skills are hmm .. well I don't have :hehe:. IF you find a...
March 12, 2009 at 2:23 pm
Have a read at ... http://www.databasejournal.com/features/mssql/article.php/3085211/Linked-Servers-on-MS-SQL-Part-1.htm
:).
Thanks.
March 12, 2009 at 1:44 pm
He said that because of ...
Cannot open backup device 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\materials.bak'. Operating system error 5(Access is denied.).
And it makes sense in my little mind because if he has...
March 12, 2009 at 1:23 pm
I execute:
SELECT * FROM sys.dm_db_index_physical_stats(db_id, NULL, NULL,NULL,'LIMITED')
This gives me information for a Single Database, all tables, and all indexes. The 'LIMITED' gives be very brief information about Index depth,...
March 12, 2009 at 1:09 pm
Viewing 15 posts - 421 through 435 (of 629 total)