Viewing 15 posts - 1 through 15 (of 17 total)
you can find all system actions and user responses related to TSM
Click Client Messages reference.
September 24, 2013 at 2:41 pm
DECLARE @sqlver sql_variant
DECLARE @sqlver2 varchar(20)
DECLARE @sqlver3 int
SELECT @sqlver = SERVERPROPERTY('productversion')
SELECT @sqlver2 = CAST(@sqlver AS varchar(20))
select @sqlver3 = SUBSTRING(@sqlver2,1,1)
-- 1 = 2008 8 = 2000 and 9 = 2005 1...
January 22, 2013 at 1:11 pm
Make sure the path exists for those files which are to be moved.
it should work.
January 17, 2013 at 12:50 pm
Because this is only for one table..you can create trigger.
This should work well in your case.
December 18, 2012 at 2:34 pm
Suppose Says you Have XGB of memory
I prefer 6GB for OS and the Remaining (X-6)GB for SQL by default on any server.
This will not work for Ram less than 10GB.
December 18, 2012 at 2:26 pm
RPC Needs to be enabled in order to call a stored procedure which is on linked server database.
exec sp_serveroption @server='linked_server_name', @optname='rpc', @optvalue='false'
exec sp_serveroption @server='linked_server_name', @optname='rpc out',...
December 14, 2012 at 2:58 pm
GilaMonster (12/7/2012)
mani@123 (12/7/2012)
SO on what basis sql engine is automatically updating system created stats by turning ON auto update stats.
20% of the values for that column have changed since the...
December 7, 2012 at 9:06 am
GilaMonster (12/7/2012)
mani@123 (12/7/2012)
It is automatically updated but I wanted it to be done by on my by determing some percentage conditions over the modified count value.
Why?
Have you tested and determined...
December 7, 2012 at 8:57 am
George M Parker (12/7/2012)
December 7, 2012 at 8:51 am
GilaMonster (12/7/2012)
mani@123 (12/7/2012)
I am talking about indexex(Starts With _WA_) these are automatically created right?Those aren't indexes. They're automatically created statistics.
You can update then using the UPDATE STATISTICS statement
Yeah there are...
December 7, 2012 at 8:44 am
Thanks for your reply.
Yes I mean user tables only.
I am talking about indexex(Starts With _WA_) these are automatically created right?
So I want to update them manually.
hope you get me know.
December 7, 2012 at 8:13 am
Thank you all..Vll try and let u know..
September 21, 2012 at 9:10 am
yes your'e right lowel,
Will go through the link you provided me.Let you know if i have doubts.
September 19, 2012 at 11:37 am
@SSCrazy
Hello
I just wanted to know like what all types of counters are to be checked during perfmon.
(OR)
and what values do we need to go though if we use DMV's...
July 20, 2012 at 4:17 pm
Viewing 15 posts - 1 through 15 (of 17 total)