Forum Replies Created

Viewing 15 posts - 13,921 through 13,935 (of 49,552 total)

  • RE: sql server 2005 (std edition 32 bits) on windows server 2003 enterprise 32 bits

    Add /PAE to the boot.ini. Grant locked pages, enable AWE.

    /PAE - allow memory usage above 4GB (32 bit limit)

    /3GB - change the kernal/user memory division from 2GB/2GB to 1GB/3GB.

  • RE: Can Someone Explain These Wait Times to Me?

    Waits over a period of a year aren't all that useful, too low a granularity. When doing wait type analysis, you usually look at the difference between the waits a...

  • RE: Multiple instances referencing same master.mdf

    gregrobson (3/12/2013)


    Thank you GilaMonster... the force is obviously with you judging by your avatar.

    Worked out the fix. Your note to check the ports prompted me to find that.

    1) I hadn't...

  • RE: Proper splitting and placement of files ?

    If you're splitting into files and filegroups, the first thing you need to do is decide whether you're splitting for IO load or splitting for DR and recovery purposes. The...

  • RE: query returns empty row

    SELECT * FROM mstinstrument where instrumentid IN (@intid); is equivalent to

    SELECT * FROM mstinstrument where instrumentid = @intid;

    So looking for

    SELECT * FROM mstinstrument where instrumentid = '''BSEC0002'',''BSEC0001''';

    Should be clear...

  • RE: Multiple instances referencing same master.mdf

    Go to configuration manager, stop the SQL Express instance (leave the others running) and try to connect again to those 3 new instances. Restart SQL Browser too.

    Also, go to the...

  • RE: Encryption doubts

    Why are you encrypting? What are you protecting against?

  • RE: Create CLUSTERED Index

    With server maxdop 0, SQL has the option of using up to all of the processors for any operation (including the index rebuild). If you specify maxdop = processor count...

  • RE: Sharepoint SQL Server

    Lynn Pettis (3/11/2013)


    GilaMonster (3/11/2013)


    Communication? What a novel idea!

    The sharepoint DB needs a complete redesign first, and to be honest, that's not going to happen.

    Same could be said ot their CRM...

  • RE: Trace Flag 4044

    There's easier ways to get back into an instance that you've locked out. Start SQL in single user and any local admin is sysadmin, no traceflags required.

  • RE: Sharepoint SQL Server

    Communication? What a novel idea!

    The sharepoint DB needs a complete redesign first, and to be honest, that's not going to happen.

  • RE: Isolation Level

    No isolation level will help there. To restore the process needs an exclusive database lock, that means all users out. You can set log shipping to automatically disconnect everyone or...

  • RE: Slave to 70-450!!

    Dunno about the law where you are, but there's often a difference between taking a copy for personal use (backup) and distributing copyright material to someone else. It was the...

  • RE: Slave to 70-450!!

    Not to be a downer... but the material for those courses is copyrighted, just like training kit books and other publications.

  • RE: SQL server Jobs fail over

    Well I didn't say run them manually...

    If you want server 4 to be able to run server 3's jobs when server 3 fails, then you need to have those jobs...

Viewing 15 posts - 13,921 through 13,935 (of 49,552 total)