Viewing 15 posts - 61 through 75 (of 168 total)
Here is the script to get DB size and available DB space.
Declare @cmd1 varchar(500)
Set @cmd1 ='SELECT Name as DBName,Filename as Path ,(Size*8)/1024 as MB FROM ' +'?'+'..sysfiles '
Exec sp_MSforeachdb @command1=@cmd1
For...
June 27, 2006 at 11:38 am
Check this 2 msdn link,
http://msdn2.microsoft.com/en-US/library/ms175441.aspx
http://msdn2.microsoft.com/en-US/library/ms176138.aspx
Hope this helps,
May 8, 2006 at 7:28 am
Chris,
I suggest you to make sure that SQL 2005 allow remote access and also
set right userid and password for linked server.
If that is not the case then look in Security...
April 28, 2006 at 8:08 am
First 50 spid are system spid, so remove spid < 51 from your temp table #SPID
before any other manipulations.
April 28, 2006 at 7:35 am
Here is the example that shows how to set up Linked Server from 2005
Open Object Browser...
April 27, 2006 at 8:52 am
Ron,
I will look into it and will let you know.
Thanks,
April 25, 2006 at 8:05 am
Hi Ron,
Just now I have send you an email at your gmail account.
Thanks,
April 25, 2006 at 7:46 am
Your reading
you want the Avg. Page Density to be a high percentage and Avg. Bytes free per page to be a low number.
is true in relative context, not in absolute...
April 19, 2006 at 8:22 am
Jim,
Thank You.
I will check with specification of exact dir.
April 19, 2006 at 6:35 am
One more thing I would like to add to this list is
Look at sql server 2005 server licenses and the fees
Yes, this is new product and as always we...
April 14, 2006 at 8:05 am
In my understanding what is happening here is
Node 1 is Mode : U
i.e. update lock, SQL Server intends to modify a row or page, and later promotes the update...
April 12, 2006 at 7:32 am
When you run 2000 and 2005 on same cluster and that too with analysis and reporting services
I will not suggest you to go for it as I see following...
April 11, 2006 at 8:09 am
There are few other options that you can try to figure out the problem.
1. Instead of using the same SP try simple t-sql using linked server from
both 2000 server, something...
April 11, 2006 at 7:48 am
Steve,
Congratulations.
It's definitely great source of knowledge for all sql server DBA's.
Last thursday Apr-6 , I have completed one year from my first visit to this place and can definitely say ,...
April 10, 2006 at 7:25 am
Viewing 15 posts - 61 through 75 (of 168 total)