Viewing 15 posts - 2,701 through 2,715 (of 7,498 total)
@Brandie Tarvin
Yes.
It's something you'll have to get used to, because it comes in handy, but may also bite you in the back because you forgot you were having a...
October 26, 2010 at 2:20 pm
Did you have a look at http://www.sqlservercentral.com/Forums/FindPost1008735.aspx
It contains nice feedback info from MS.
October 26, 2010 at 1:50 pm
Maybe Paul Randal has more info on that at http://www.sqlskills.com/blogs/paul/post/checkdb-from-every-angle-emergency-mode-repair-the-very-very-last-resort.aspx
October 26, 2010 at 1:44 pm
Thank you for sharing !
Many people didn't find this setting.:ermm:
With sql2008 that option is included with the right-click on the grid. :w00t:
October 26, 2010 at 1:41 pm
You should be able to find who/what caused your dblog to grow if you have your default trace active.
ref: "Did we have recent autogrow?" by Tibor Karaszi
http://sqlblog.com/blogs/tibor_karaszi/archive/2008/06/19/did-we-have-recent-autogrow.aspx
If that doesn't get...
October 26, 2010 at 1:29 pm
Need it to be said that from an OLTP database perspective only R2 doesn't have that much an advantage over the original.
We are skipping the original because of report server...
October 26, 2010 at 8:07 am
miksh (10/21/2010)
After working with Microsoft the workaround was found:....
Thank you for the great feedback.
October 26, 2010 at 1:06 am
Since it seems so dificult to alter the sa password ....
this must be another reason NOT to use sa !
If you need sysadmin auth, which 99.99999% of the apps will...
October 26, 2010 at 12:46 am
AFAIK there is no @@connectionIPaddress, but you can use this DMV to get this info
Select client_net_address
from sys.dm_exec_connections
where session_id = @@spid
A regular user (=non sysadmin) by default only gets to...
October 25, 2010 at 11:47 pm
If I'm correct, datadude (visual studio for DBA) has that functionality, in case you're searching for other means than sql itself.
October 24, 2010 at 2:35 pm
HTH.
Most of us still fall in that trap every once in a while.;-)
October 24, 2010 at 2:20 pm
Jeffrey Williams-493691 (10/24/2010)
ALZDBA (10/24/2010)
If you precede your fullbackup with a logbackup, wouldn't your fullbackup be smaller ?
No, I don't think a full backup will be any smaller because of backing...
October 24, 2010 at 12:09 pm
- Why don't you just directly 7zip your existing full backup file(s) ?
If you precede your fullbackup with a logbackup, wouldn't your fullbackup be smaller ?
- using 7zip, you can...
October 24, 2010 at 9:17 am
the columns of both queries are not in the same order.
Keep in mind SQLserver doesn't map your columns by name but by ordinal position.
October 24, 2010 at 8:56 am
Paul White NZ (10/23/2010)
.......The multiple reading and writing threads use different sessions, so a #table or variable would not be visible.
Paul
That is the ultimate, one and only valid reason to...
October 23, 2010 at 2:59 pm
Viewing 15 posts - 2,701 through 2,715 (of 7,498 total)