Viewing 15 posts - 46 through 60 (of 64 total)
I understand your point and you are right Paul,
It's all about estimated costs and assumptions made by the optimiser. Try a TOP (100) query hinting the non-clustered index and hinting...
July 29, 2010 at 2:27 am
I understand your point and you are right Paul,
It's all about estimated costs and assumptions made by the optimiser. Try a TOP (100) query hinting the non-clustered index and hinting...
July 29, 2010 at 2:26 am
Execution plan without index hint:
July 29, 2010 at 1:41 am
Paul you are right, by using order by, optimizer chooses to use the index, why is that behavior, but it is still interesting scanning table for TOP 100 in a...
July 29, 2010 at 1:08 am
DDL of the table is, sql plans is attached, without index hint it took absolutely 00:06:15 scanning entirely whole 29 GB table!
/****** Object: Table [dbo].[tblSMSArsiv] Script...
July 29, 2010 at 12:53 am
Oh, thats my fault, they is same tables, I forgot to replace the names of second..
SELECT TOP 1 *
FROM tbl1 with (nolock)
where col1>='2010-07-01' and col1<'2010-07-06'
--Takes 2 minutes with table scan
SELECT...
July 29, 2010 at 12:09 am
By the way index_3 is on col1 ascending
July 28, 2010 at 8:52 am
yes update, insert will be needed.. we'll recover them fully..
July 23, 2010 at 7:43 am
so I see no other way than to a new full backup restore (it will come a long way in a disk after being encrypted) , yes the test data...
July 23, 2010 at 5:43 am
We are planning a disaster test, but without switching the databases for the first test, only test users will be directed to test environment, is this a good approach? So...
July 23, 2010 at 5:35 am
The reason for encrption is we are planning to transfer sensitive data, physically transfer a machine over a long road with the backups on disk, because it will be faster...
June 15, 2010 at 12:07 pm
Thanks Andy!!! This solved my problem, msdn says master database is set to TRUSTWORTHY OFF by default, when I set the option it worked, thanks again,
Cheers Serter
May 19, 2010 at 11:44 am
Thanks jeroshan, I quitted all windows and it worked! But all the connections were with master in sysprocesses not Test db..
April 9, 2010 at 7:44 am
Hi Jason, thanks for the replies, in our environment our primary consideration is performance, our database engines are consolidated so each have a high workload, do I have a trouble...
April 7, 2010 at 2:01 am
Hi, disabling and enabling the default trace enabled option in sp_configure has restarted the stopped default trace in my server (I couldn't find out why it stopped by the way,...
January 27, 2010 at 2:12 am
Viewing 15 posts - 46 through 60 (of 64 total)