Viewing 15 posts - 16 through 30 (of 683 total)
You'd need to disable the index. But then of course you'd need to rebuild the index after your mulitple inserts.
Adding a fillfactor value to the index will minimize the...
August 16, 2010 at 3:32 am
This was an interesting article with an even more interesting discussion.
The thing I'd like to pick up on, that drew my attention, was your reasons for moving away from the...
August 13, 2010 at 5:43 am
It's been a long time since I've done this but if I remember correctly that's about right.
Check out this article: http://support.microsoft.com/kb/842425
June 24, 2010 at 12:22 am
Turns out that by repeatedly running GETDATE() as described in the article, all you're doing is measuring the clock ticks that the machine you're running on is capable of.
On some...
May 12, 2010 at 7:44 am
I get 3.3 ms here using your own code.
The worst part about it is you would have not given the job to someone who correctly responded with 3.3ms for GETDATE()...
May 12, 2010 at 2:07 am
When the procedure executes for the first time it's execution plan is stored in the procedure cache. Now, that execution plan is only really relevant for the parameters that...
November 27, 2009 at 5:46 am
Try this:
select email_address = case
when charindex('_QWER', email_address) > 0 then substring(email_address, 1, charindex('_QWER', email_address) - 1)
else email_address
end
from #tb
November 27, 2009 at 5:37 am
Each file is 30GB in size, which in total is probably twice the size that is ever allocated to tempdb so the files don't grow beyond their current size.
Generally speaking...
November 6, 2009 at 12:48 am
Generating scripts in SSMS will automatically be generated in the corrrect order.
Just right-click on the Database > Tasks > Generate Scripts.
September 23, 2009 at 7:20 am
I'm a little confused here as to what you're doing....
When you say
Amey ghag (9/23/2009)
If I follow your recommendations....
what recommendations are you actually talking about?
September 23, 2009 at 7:05 am
I see your dilemma - you want to spend all the money you've been given now.
Let's assume that you are going to go with RAID 10 for a minute. ...
September 17, 2009 at 9:50 am
select object_name(m.object_id) as ObjectName
from sys.sql_modules m
join sys.objects o on o.object_id = m.object_id
where definition like '% string to search for%'
and o.type in ('P', 'TR')
September 17, 2009 at 8:45 am
you can use sp_send_db_mail. You'll have to set up a database mail profile but once that's done it's pretty straight forward with sp_send_db_mail.
September 17, 2009 at 8:39 am
Not necessarily. Firstly, I've never really seen a case where RAID 10 for the OS and system drives are necessary- so RAID 1 should be sufficient. And if...
September 17, 2009 at 8:29 am
Viewing 15 posts - 16 through 30 (of 683 total)