Viewing 15 posts - 1,291 through 1,305 (of 3,011 total)
Indianrock (8/5/2010)
August 5, 2010 at 10:02 am
harry79 (8/5/2010)
So Each night, we want to delete data from this table in small batches.
Here are the specs:
•The...
August 5, 2010 at 9:47 am
Indianrock (8/5/2010)
August 5, 2010 at 9:41 am
There is no law that says that you have to answer their questions, but it can cause problems.
SAS 70 is an auditing standard designed to enable an independent auditor to...
August 5, 2010 at 7:49 am
This script should give you the information you want.
Script to analyze table space usage within a database
August 3, 2010 at 3:33 pm
Try this query:
select
[OBJECT_NAME]= left(quotename(rtrim(a.[OBJECT_NAME]))+
quotename(rtrim(a.[COUNTER_NAME]))+
case
when rtrim(a.[INSTANCE_NAME]) = '' then ''
else quotename(rtrim(a.[INSTANCE_NAME])) end
,60),
[Memory GB]= convert(decimal(10,3),round((a.[CNTR_VALUE]+0.000)/(1024.000*1024.000),3)),
[Memory MB]= convert(decimal(10,3),round((a.[CNTR_VALUE]+0.000)/(1024.000),3))
from
master.dbo.sysperfinfo a
where
a.[OBJECT_NAME] in ('SQLServer:Memory Manager')and
a.[COUNTER_NAME] in ('Target Server Memory (KB)','Total Server Memory (KB)' )
Results:
OBJECT_NAME ...
August 3, 2010 at 2:51 pm
I believe the latest version of PSTOOLS brings up a license dialog the first time you run it, so you might try logging into that server with the service account...
August 3, 2010 at 2:46 pm
You can use the 8.3 compatible name for the directory, PROGRA~1 for Program Files in the example below:
dir \\MYSERVER\c$\pr* /x
Volume in drive \\MYSERVER\c$ is MYVOLUME
Volume Serial Number is...
August 3, 2010 at 2:37 pm
kmonroe (7/30/2010)
I think I have a third party vendor that is trying to give me the run around about a process that their...
July 31, 2010 at 1:06 pm
These scripts will give you infomation on the size of your database files, including the used and unused space, and show the amount of space used by each table in...
July 31, 2010 at 12:57 pm
Sourav-657741 (7/31/2010)
It is SQL 2000
Use DBCC SHOWCONTIG
July 31, 2010 at 12:52 pm
These scripts should give you the information you are after.
Get Server Database File Information for all databases on a server
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=89058
Script to analyze table space usage within a database
July 31, 2010 at 12:48 pm
mangeshv (7/27/2010)
Thank you so much both for the replies. I just wanted to clear the myth that is making the rounds that Load-balancing is possible with SQL Server 2008.
Load-balancing can...
July 27, 2010 at 9:27 am
SQL Server 2008 has no true load balancing, meaning having multiple database servers actively updating the same database.
There are possible ways to off load specific tasks to other servers. ...
July 27, 2010 at 8:52 am
James Stover (7/26/2010)
July 27, 2010 at 8:44 am
Viewing 15 posts - 1,291 through 1,305 (of 3,011 total)