Viewing 15 posts - 61 through 75 (of 451 total)
Thank you David.
How about SQL2005 in your opinion? Should apply the same - static port with a high range?
September 26, 2008 at 9:49 am
David O (9/24/2008)
September 25, 2008 at 9:05 pm
I felt embarrassing to ask code from the others for this question. I thought or the others would think I am a lazy DBA 😉 not to write the...
September 25, 2008 at 8:43 pm
Thank you. This is exactly what I want.
I like this part very much, plus your have comments in your code.
--Get Directory Names
CREATE TABLE #DIR_NAMES ( DIRNAME VARCHAR(300))
INSERT...
September 25, 2008 at 8:32 pm
Worth a read: Online Indexing Operations in SQL Server 2005
http://www.microsoft.com/technet/prodtechnol/sql/2005/onlineindex.mspx
Need to estimate the space for reindex, etc...
September 25, 2008 at 8:24 pm
Thank you all for help. I limited to the user tables only.
Here is the code with minor change:
-- SQL2005:
select o.name from sys.indexes i
inner join sys.objects o
on o.object_id = i.object_id
where...
September 25, 2008 at 8:11 pm
Is it 8K page for each read or write? Please correct me if I am wrong.
September 24, 2008 at 9:04 pm
Find a KB mentioned about this topic:
How to configure an instance of SQL Server to listen on a specific TCP port or a dynamic port
http://support.microsoft.com/kb/823938
Then a further question:...
September 24, 2008 at 8:46 pm
Thank you all for your response.
Cluster That Index! has detailed info about the "Problems with not having a clustered index". I can not find any article better...
September 22, 2008 at 7:55 pm
Great info. Thank you Steve. I thought I should post this question on windows forums.
September 18, 2008 at 12:49 pm
Good question. It is a reporting database. If no need to have a clustered index for whatever reason, why have a non-clustered index then? I remember it...
September 18, 2008 at 10:27 am
non-clustered and unique.
September 18, 2008 at 8:55 am
Additional info, it is a reporting database. The fragmentation is very bad.
September 18, 2008 at 7:22 am
Is the question clear?
"...can events be lost if you have disk space?" or "...can events be lost if you have disk space PROBLEM?"
This is not only for SQL2008 but also...
September 11, 2008 at 10:34 pm
Adam Bean (8/21/2008)
Apply instacat.sql on your SQL2000 server. This can be found in your SP4 install.Here is a KB article referencing the issue: http://support.microsoft.com/default.aspx?scid=kb;en-us;906954
I did already. Without this fix,...
August 21, 2008 at 7:20 pm
Viewing 15 posts - 61 through 75 (of 451 total)