Viewing 14 posts - 16 through 29 (of 29 total)
GilaMonster (5/20/2010)
How many...
May 20, 2010 at 8:19 am
Here is top 3 wait type and time summary, and it looks like nothing to do with lock from here.
wait_type PAGELATCH_SH ...
May 20, 2010 at 7:40 am
GilaMonster (5/19/2010)
Do you have a reason to think the size of the system tables is adversely effecting DB performance?
I think this application is not creating hundreds but thousands tables:Wow:, but...
May 19, 2010 at 3:35 pm
Gail, how do I monitor allocating structures activities and their empact on I/O performance? Thanks in advance.
May 19, 2010 at 2:59 pm
GilaMonster (5/19/2010)
CirquedeSQLeil (5/19/2010)
GilaMonster (5/19/2010)
Do you have a reason to think the size of the system tables is adversely effecting DB performance?
My inclination would be that the 100's of tables added...
May 19, 2010 at 2:54 pm
CirquedeSQLeil (5/19/2010)
May 19, 2010 at 2:51 pm
As I mentioned, hundreds tables fly in and drop off each day, and that is why I concern about system tables. I know this is out off relational database concept,...
May 19, 2010 at 2:11 pm
I don't know... If you see data like this
Table Namesysobjvalues
Row Count3213517
Reserved (MB)5740.40625
Data (MB)4807.484375
Index Size (MB)22.7890625
Unused Space (MB)910.1328125
May 19, 2010 at 1:12 pm
You are right. However, what should I do with these tables?
May 19, 2010 at 12:57 pm
create table #tablesize
(
tablenamenvarchar(128),
rowchar(11),
reserved varchar(18),
datavarchar(18),
indexsize Varchar(18),
unusedvarchar(18)
)
DECLARE @Tablename sysname
DECLARE @sql nvarchar(200)
DECLARE Table_Cursor CURSOR FOR SELECT [name]
FROM sys.sysobjects
WHERE [type] = 'S'
...
May 19, 2010 at 12:41 pm
Sample:
Table NameRow Count
sysobjvalues3211810
syshobtcolumns4000161
sysrowsetcolumns4000413
May 19, 2010 at 12:29 pm
The problem I am facing is that the system tables are too big. I don't know whether they are fragment or not, and I don't know whether I should do...
May 19, 2010 at 12:11 pm
I understand MS doesn't want DBA to manually working on system tables. But how are these tables maintained?
May 19, 2010 at 12:02 pm
Most time we set DB mail SMTP Authentication to be Anonymous authentication since we don't want set email accounts for every SQL Server running on different account.
However, there is one...
May 19, 2010 at 8:51 am
Viewing 14 posts - 16 through 29 (of 29 total)