Forum Replies Created

Viewing 15 posts - 301 through 315 (of 333 total)

  • RE: AWE enabled yes or no?

    Aha! :w00t: thx for the update

    Wilfred
    The best things in life are the simple things

  • RE: AWE enabled yes or no?

    Funny,

    According to Slave Oks (http://blogs.msdn.com/slavao/archive/2005/04/29/413425.aspx, very interesting article), he recommends enabling AWE.

    Wilfred
    The best things in life are the simple things

  • RE: How to know sql server version through sql statment

    Also, check BOL for the item Serverproperty

    Wilfred
    The best things in life are the simple things

  • RE: AWE enabled yes or no?

    AWE is used for locking memory in a 64bit environment. So if you have al lot of memory, anable AWE and 'lock pages in memory'

    If you don't lock your memory,...

    Wilfred
    The best things in life are the simple things

  • RE: disk space full

    Seems you're running one (or more) snapshots and you're running out of diskspace (unable to store the original data in the snapshot).

    If you're not able to reclaim diskspace, delete...

    Wilfred
    The best things in life are the simple things

  • RE: Collation type different between old and new server

    You could change the collation with the command

    alter database collate ... (see BOL)

    However, I don't know what the impact is of this command. AFAIK, It requires an exclusive...

    Wilfred
    The best things in life are the simple things

  • RE: Log file

    you have 2 choices:

    1) either change the recovery model to simple and do a shrink on the logfile (if it's very big). drawback: you can't do a PIT recovery, so...

    Wilfred
    The best things in life are the simple things

  • RE: DBCC SHRINKFILE is not working as expected ??

    The problem is that shrinking (on a logfile) only truncates the free space at the end of your logfile (an almost exact question was also on this forum this week,...

    Wilfred
    The best things in life are the simple things

  • RE: Exceptionally Large DBsize

    In order to check if a table is causing this problem, run the following query against your database:

    sp_msforeachtable 'exec sp_spaceused ''?'''

    Wilfred
    The best things in life are the simple things

  • RE: memory

    If you don't enable AWE on a 64bit server you can get errors like "A significant part of sql server process memory has been paged out. This may result in...

    Wilfred
    The best things in life are the simple things

  • RE: Cursor details

    :hehe: I assume, you can't dig into the SQL code to see the cursordefinition ?

    In that case, watch the process with profiler.

    Otherwise, scan you code for phrases like

    declare {name} cursor...

    Wilfred
    The best things in life are the simple things

  • RE: Snapshot each 15 min...

    Try this procedure, which I developed (I will post it also in the scripts part of this website)

    ALTER procedure [dbo].[usp_create_snapshot](@databasename sysname

    , @SQLInstance varchar(10) = 'MSSQL.1'

    , @debug bit = 0

    , @verbose...

    Wilfred
    The best things in life are the simple things

  • RE: Cursor details

    If you want to know howmany rows are processed by your cursor, query @@CURSOR_ROWS after you've opened the cursor. See the documentation for some pitfalls if you use this variable.

    Wilfred
    The best things in life are the simple things

  • RE: memory

    You need AWE to prevent memory stealing by the OS.

    Also make sure you have a minimum and maximum size. Don't set the maximum size to unlimited, or SQL will...

    Wilfred
    The best things in life are the simple things

  • RE: Log growth -- what is causing it?

    It's a misunderstanding that the logfile wil stay small in single recovery mode. De logfile will be as big as a single transaction. So if you do an update on...

    Wilfred
    The best things in life are the simple things

Viewing 15 posts - 301 through 315 (of 333 total)