Viewing 15 posts - 1 through 15 (of 145 total)
what about stored procedure/query (re)compilation ?
October 17, 2009 at 8:11 am
presentation: http://www.microsoft.at/eventsmedia/Getdocument.ashx?ID=1b10033b-84bd-4fed-860e-9a82897163d7
October 14, 2009 at 2:22 pm
real fine box 😉
i think that you should look for ppt: "Dude, Where Is My Memory?". This session was delivered at many event (incl. Tech2008, Teched2009) by Maciej Pilecki -...
October 13, 2009 at 2:33 pm
maybe you should ask folks from redgate ?
October 11, 2009 at 7:27 am
you have two options:
1) redesign your database - use normalization
2) buy much faster hardware
there is one more options:
maybe indexed views can help you in this problem ... but in my...
October 11, 2009 at 7:26 am
declare @table as table (student varchar(50), course varchar(50), marks int)
insert into @table values ('Sam', 'Maths',10),('Sam', 'Science',10),('Sam', 'English',30),
('John', 'Maths',60),('John', 'Science',70),('John', 'English',90)
select student, Maths, Science, English
from
(select marks, student, course from @table)...
October 11, 2009 at 7:21 am
i think that you dont know how to properly manage log files. you should read this one:
http://technet.microsoft.com/en-us/magazine/2009.02.logging.aspx
October 10, 2009 at 8:55 am
backup types:
full - backup of all data (backup database ...)
incremental - backup of changed data since last incremental backup (backup log ...)
differential - backup of changed data since last...
October 10, 2009 at 8:19 am
http://www.waldspurger.org/carl/papers/esx-mem-osdi02.pdf
http://www.vmware.com/pdf/esx3_memory.pdf
http://www.jimmcleod.net/blog/index.php/2008/06/10/vmware-balloon-drivers-and-sql-server/
how to disable:
http://communities.vmware.com/message/1205798;jsessionid=9AE80861BDBDF155C01208022D6FEA10
October 8, 2009 at 2:41 am
please check other counters: page life expectansy and buffer cache hit ratio
October 8, 2009 at 2:37 am
there is no substition for break on ;/ but maybe you can use something like this ?
declare @t as table (name varchar(50), dep varchar(10), num int)
insert into @t values ('Marcin','IT',1),('John','IT',2),('Marcin','IT',3),('John','IT',4),('Marcin','IT',5),('Steve','IT',1),
('Marcin','SEC',1),('John','MAR',2),('Marcin','SEC',3),('John','FIN',4),('Marcin','MAR',5),('Steve','FIN',1)
;with...
October 8, 2009 at 2:34 am
1. Does that mean we need to install the software on all 4-5 machines or just one?
Nope, CAL is only a paper 😉 all you need is to install you...
October 7, 2009 at 6:33 pm
YES, it is supported. you should read following articles:
http://support.microsoft.com/kb/956893
you should read more about Server Virtualization Validation Progam - http://www.windowsservercatalog.com/svvp.aspx
October 7, 2009 at 6:27 pm
SQL elder then 2005 have some problems with updating some system tables. Because dbcc updateusage is generating some stress you shouldnt run this after every load cycle. But before every...
October 7, 2009 at 6:16 pm
Viewing 15 posts - 1 through 15 (of 145 total)