Viewing 15 posts - 1 through 15 (of 15 total)
If there are many selects with dirty reads then they dont hold a lock but they do hold a latch (scaled down lock). This can cause the rare and very...
June 17, 2012 at 2:30 pm
Thanks for that and link to the artical. The memory mapping does seem to be an issue but still sounds ideal for TempDB. Hmm, I wonder.......
Sorry about my post seeming...
March 21, 2012 at 2:55 pm
Thanks for you comments.
So like any driver they need a small amount of CPU/ram to work. Surely thats going to be measured in a couple of MB and not 100's...
March 21, 2012 at 12:12 pm
To see if it a truncate table rather than a delete check to see if there is an identity column. If there is, insert a row and if it starts...
March 20, 2012 at 4:33 pm
TheSQLGuru (3/14/2012)
............. FusionIO cards take up a LOT of system memory.........l:
I thought that FusionIO cards sat in the PCI slots on the motherboard and were not part of the...
March 20, 2012 at 4:22 pm
As far as I'm aware (and do please correct me if I'm wrong) SQL server doesnt know anything about the disk layout or the file layout and their respective physical...
March 20, 2012 at 12:30 pm
If the drives are logical and on the same physical set of disk then makes no real difference.
August 29, 2011 at 2:42 pm
Ouch!!!!!
You may have a serious issue with this.
Changing the password will in some instances not affect anything because it is the security token being passed around the system and...
August 29, 2011 at 2:27 pm
You have a good chance of making everything slower, specially if the data is identical in all the 6 copies. You will also be requiring the hardware to do more....
August 27, 2011 at 4:09 am
If you dont mind gaps then
declare @start_date datetime = '2011-08-22 00:00:00'
select DATEADD( ss , Offset , @start_date)
, COUNT(*)
from...
August 25, 2011 at 2:37 pm
wendy elizabeth (8/25/2011)
1. I would like users to sign on to sql server using group roles by using sql auauthenticationHowever, I would...
August 25, 2011 at 12:51 pm
My uderstanding is that the only decryptors of stored procedures was based on sql7 and before. When sprocs are encrypted within SQL 2005 & 2008 there is no way of...
August 25, 2011 at 12:40 pm
Having a quick look at the other comments this does seem to be the best option.....
John Mitchell-245523 (8/12/2011)
August 22, 2011 at 4:18 pm
It is worth while showing the vendor why SA rights are plain dangerous. ie add a domain user to the admin group, stop a service, send a rogue email etc...
I...
August 22, 2011 at 3:58 pm
Viewing 15 posts - 1 through 15 (of 15 total)