Viewing 15 posts - 4,786 through 4,800 (of 7,496 total)
I don't advise to shrink data/log files on production boxes !
If sqlserver needs it, leave it that way ! so if you make an assesment of your space needs, you...
June 16, 2008 at 7:45 am
Last year at the SQLPass2007 conference there has been a pannel discussion regarding os virtualistion.
The conclusion in rough lines was:
- don't virtualise our db servers in a production environment
- virtualise...
June 16, 2008 at 2:52 am
avipenina (6/15/2008)
what about /3GB and /PAE do i need to set them UP?my Server is W2K3 ENT 64BIT and SQL Dev 64BIT.
No you're on 64bit.
In task manager, in the processes...
June 15, 2008 at 11:58 pm
don't just move the binn, install, log,... because they are instance system resources.
To move data files, there are Ms KBs that describe the way to do it (userdb vs system...
June 15, 2008 at 11:50 am
you can download SQL2005 express edition at Microsoft download.
(keep in mind to download the sp2 version)
When running the setup, you should specify "kbmss" for instance name (according to your requirements)
June 15, 2008 at 11:42 am
also keep in mind, if SQLServer doesn't need memory, it will not use memory.
i.e. it may be your sqlserver only uses 150mb, if it decides it doesn't need more.
However...
June 15, 2008 at 11:38 am
I did interprete the line as "you can only mirror a database to a single mirror".
I'm still doing some tests with it, and didn't test the scenario you aim for.
What's...
June 13, 2008 at 12:19 am
An option is to have your spare server hosting two sqlinstances, so you can use db-mirroring.
Keep in mind you'll have to duplicate jobs, instance level user admin, ...
the docs:
http://www.microsoft.com/technet/prodtechnol/sql/2005/technologies/dbm_best_pract.mspx
http://www.microsoft.com/technet/prodtechnol/sql/2005/dbmirror.mspx
Johan
June 11, 2008 at 1:18 am
well, even with "copy" it gives you the choice :
1) use detach/attach mode
2) use SMO object mode
I just wanted to point to not using the first one.
btw I'm using a...
June 11, 2008 at 1:15 am
especialy after the first time you refresh statistics, always perform a free proccache so your plans are recompiled using the new statistics.
also take a snapshot of "missing indexes" (performance dashboard)...
June 10, 2008 at 1:42 pm
So you have a split database ?? :ermm:
One part on node one and the other part on node two ??
This must be a very, very high trx volume db. :blink:
If...
June 10, 2008 at 1:33 pm
just my 2ct
be carefull when using the copy database wizard, because in some scenario it will detach your production database briefly !!
It is better to use Yelenas methode of backup/restore.
Don't...
June 10, 2008 at 1:31 pm
thank you for the feedback.
June 10, 2008 at 6:48 am
Glad you resolved the issue.
Can you post the tricky parameter(s) or odbc set ?
June 7, 2008 at 3:20 am
Ah, but you posted in a SQL2005 forum ... hence my reply.
for sql2000 I use this:
- sp_who2
- and the consumers :
if (object_id('tempdb..#tmpVerbruik') is null)
begin
-- tmptabelleke aanmaken
select min( @@Servername ) as...
June 6, 2008 at 5:32 am
Viewing 15 posts - 4,786 through 4,800 (of 7,496 total)