Viewing 15 posts - 856 through 870 (of 1,127 total)
GilaMonster (9/8/2010)
Please run UPDATE STATISTICS <Table name> WITH FULLSCAN on the original...
September 14, 2010 at 3:49 pm
the only difference i see is that the non-clustered indexes is set to fill factor 90% and is checked the option "Use Index'. I am trying now on the slow...
September 14, 2010 at 3:21 pm
GilaMonster (9/8/2010)
Please run UPDATE STATISTICS <Table name> WITH FULLSCAN on the original...
September 14, 2010 at 1:21 pm
that's what i exactly did, just wanted to see if there is a better way. Thanks
September 13, 2010 at 4:17 pm
Thanks. I have used try and catch and works for me now. I have created another topic on how to hightlight the print errormsg(). Thanks
September 13, 2010 at 4:16 pm
thanks, but i want the the message ONLY from "print error_message()" to be printed in different font. I am using this in a cursor inside try/catch block and i wouldn't...
September 13, 2010 at 1:28 pm
WayneS (9/7/2010)
declare @database nvarchar (100),@SQLString nvarchar (max),@sql nvarchar (max),@statement nvarchar (max),@sp_executesql nvarchar (max)
declare @dbs table (DBname nvarchar (100))
set @SQLString =...
September 13, 2010 at 12:36 pm
GilaMonster (9/7/2010)
Derrick Smith (9/7/2010)
September 8, 2010 at 3:29 pm
ksullivan (4/4/2008)
select *
into #a
from information_schema.columns a
where table_name = 'aaa'
select *
into #b
from information_schema.columns b -- add linked server name...
September 8, 2010 at 3:20 pm
GilaMonster (9/7/2010)
iqtedar (9/6/2010)
query:select * from test where test_regid= 12345
Answer 3 then.
The query could seek on a nonclustered index, but there are too many rows returned and the nonclustered index...
September 7, 2010 at 1:31 pm
Madhivanan-208264 (9/7/2010)
Make sure to read this fully
Oh yes, i have already read this article may be not fully but to certain extent. Also this code is not for any application,...
September 7, 2010 at 11:09 am
thanks but i need to restrict the loop to certain dbs'. I had to create a cursor and works fine. Thanks
September 7, 2010 at 8:33 am
Thanks Gail. Query takes more than 50 secs and will definitely time out from front end. The index suggested through DTA makes the query run in less than 1 sec....
September 7, 2010 at 8:18 am
GilaMonster (9/6/2010)
Why don't...
September 6, 2010 at 5:45 pm
Jeffrey Williams-493691 (9/6/2010)
September 6, 2010 at 4:47 pm
Viewing 15 posts - 856 through 870 (of 1,127 total)