Forum Replies Created

Viewing 15 posts - 181 through 195 (of 392 total)

  • RE: Tuning Locks

    have you enabled AWE

    AWE is enabled. /PAE switch is turned on as is lock pages in memory.

    Steve

  • RE: My Log File is growing unexpectedly

    I would suggest that you start by reading Gail Shaw's article today about this subject. http://www.sqlservercentral.com/articles/Transaction+Log/72488/

  • RE: RAID 5

    Tom,

    Putting everything on one array will almost always be completely wrong. Tempdb should probably have an array to itself, and the transaction log certainly should. How many other arrays are...

  • RE: RAID 5

    Tom

    I strongly recomment reading BAARF Manifesto and the various things linked from there

    Sorry, after reading a majority of things on BAARF, we will have to agree to disagree....

  • RE: RAID 5

    Tom.Thomson

    dev-638705

    Nice question, although RAID5 is a not really a good choice for databases ! (except limited cases with mostly read-only databases).

    Better use RAID 01 (i.e. RAID0-aggregate of RAID1-mirrored drives),...

  • RE: Moving TempDB of the Cluster Resource

    We have gone through the pains of having everything on the SAN, and when there were performance issues the SAN vendor kept saying throw more devices at it. Performance might...

  • RE: Deleting Large Number of Records

    Lynn

    rob.lobbe (9/15/2009)

    --------------------------------------------------------------------------------

    This works if you are the ONLY one using the database.

    Running in a production system you can't just go about changing the recovery model.

    as for a 'batch' delete

    select 1

    while...

  • RE: restore does not complete.. SQL server shuts down

    What is in the error log and the event viewer for the server? We need more information otherwise it is solely speculation.

  • RE: restore does not complete.. SQL server shuts down

    In your SSMS, under Management you will see SQL Server Logs. By default there will be 6 of them, with the most current one being labled as such.

    Review the entries...

  • RE: restore does not complete.. SQL server shuts down

    mw

    Let me make it simple.

    When I started the "RESTORE.." I used the query window in SSMS.

    Then 4 hours later when I logged back into the server I did not see...

  • RE: restore does not complete.. SQL server shuts down

    mw

    restore database NGProd

    from disk = N'D:\Backups\NGProd.bak' with file = 1,

    move 'NextGen_System_Data' to 'D:\Databases\NGProd\NGProd_System_data.mdf',

    move 'NextGen_Core_Data_1' to 'D:\Databases\NGProd\NGProd_Core_Data_1.ndf',

    move 'NextGen_Index_1' to 'D:\Databases\NGProd\NGProd_Index_1.ndf',

    move 'NextGen_Log' to 'D:\Databases\NGProd\NGProd_Log.ldf',

    recovery,

    stats = 10;

    As an FYI - placing...

  • RE: Peer to Peer Replication on 1 TB database with 300+ tables along with additional databases to replicated

    Cheshire,

    One of the issues that I recently got hit with was:

    Setting up a central distributor, I had 64 stores with 1 publication being replicated to 1 subscriber. I also wanted...

  • RE: SQL CLR App Domains

    Great question Steve - missed it, but the education on CLR's continues.

  • RE: How to reduce log file size in BCP in?

    drop all indexes then BCP in data (fast bcp). After BCP is done recreate the indexes

    This does not reduce the size of the transaction log. As was previously stated, the...

  • RE: He wants what!?!

    Craig,

    I agree with everything that you said, but many times when pushed these vendors can use dbo access. They prefer SA because it is easier for them. I have had...

Viewing 15 posts - 181 through 195 (of 392 total)