Viewing 15 posts - 271 through 285 (of 518 total)
DataSort (10/1/2010)
I have tried to limit the memory in the server properties under memory. this did not help
That is just for the buffer cache. There is additional overhead for...
October 1, 2010 at 1:42 pm
Yeah, restoring the mirror is out of the question since you can't go back without starting all over, which defeats the whole purpose of this. Doing a full schema creation...
October 1, 2010 at 1:27 pm
If you create a snapshot of the databases, I'm pretty sure you could just do:
Restore Database [dbname] FROM database_snapshot = [snap_name]
edit: Snapshots are only available in Enterprise, so this wouldn't...
October 1, 2010 at 1:15 pm
Yeah, I have no idea where I got that 96gb from..too much multi-posting on my part 🙂
Even if nobody is using that second instance..if it is running, there is overhead...
October 1, 2010 at 8:08 am
96gb ram and you're maxing it out?
With a 96gig box, I'd limit the buffer cache to probably 80-82gb (the sql max memory setting).
September 30, 2010 at 3:12 pm
Have you tried rebooting? Or copying a \ and then pasting it into SSMS? Looks like a language issue.
September 30, 2010 at 3:09 pm
There are also issues deleting data from a heap..It will not release space back as unused unless you delete WITH TABLOCK. Since he says he purges data > 120 days,...
September 30, 2010 at 3:05 pm
Indeed, just tested that after I posted.
I really do not like how permissions for jobs/ssis/dts packages are handled..you either give not enough access, or sysadmin...there's almost no in-between that works.
September 30, 2010 at 9:10 am
You can create an AD group, add both users to the group, and then grant permissions to that. I'm not sure if this would work in your case, but worth...
September 30, 2010 at 8:47 am
Michael Valentine Jones (9/29/2010)
Derrick Smith (9/29/2010)
Michael Valentine Jones (9/29/2010)
September 29, 2010 at 2:54 pm
Michael Valentine Jones (9/29/2010)
September 29, 2010 at 2:39 pm
Ninja's_RGR'us (9/29/2010)
Thanks... just looked it up in BOL.I must have had it confused with query plans.
So now what the heck do I do with that DB :w00t:.
Drop 300 tables and...
September 29, 2010 at 2:37 pm
Not really...just google for some examples of auditing triggers. Chances are you set up an auditing table for this and then insert key pieces of the data that was changed...
September 29, 2010 at 2:36 pm
Ninja's_RGR'us (9/29/2010)
I'm trying it on my prod servers and I'm having doubts about the results I'm...
September 29, 2010 at 2:34 pm
I do not have a SQL 2000 server anymore, but HOST_NAME() will return the hostname of the current connection. If you have an After Insert/Update/Delete and dump it to a...
September 29, 2010 at 2:31 pm
Viewing 15 posts - 271 through 285 (of 518 total)