Forum Replies Created

Viewing 15 posts - 1 through 15 (of 109 total)

  • RE: significant part of sql server process memory has been paged out.

    Thanks. I will ignore this warnning and check after install user database.

  • RE: significant part of sql server process memory has been paged out.

    In addtion, i query the sys.dm_os_ring_buffers :

    TypeIndicatorsProcessIndicatorsSystemAvail Phys Mem, KbAvail VAS, Kb

    RESOURCE_MEMPHYSICAL_LOW021276674328455055332

    RESOURCE_MEMPHYSICAL_LOW221276677728455057380

    the value of IndicatorsSystem is 2, this means Low Physical Memory. But you can see the Avail Physical...

  • RE: significant part of sql server process memory has been paged out.

    the locked_page_allocations_kb values in sys.dm_os_process_memory is 0

  • August 18, 2014 at 1:19 am

    #1738723

  • RE: Log shipping job and Maintenance Plan (full and diff backups)

    should be fine if you din't take transcation log backup. Becuase FULL/DIFF backup doesn't break log chain.

  • December 30, 2013 at 12:12 am

    #1676299

  • RE: Calculate average sale value for the result of the sql query

    You missed group by, here is one example:

    select EmployeeKey,AVG(SalesAmountQuota) as Amout_Avg

    from [dbo].[FactSalesQuota]

    [highlight=#ffff11] group by EmployeeKey[/highlight]

  • May 23, 2013 at 9:49 pm

    #1618095

  • RE: Calculate average sale value for the result of the sql query

    You missed group by, here is one example:

    select EmployeeKey,AVG(SalesAmountQuota) as Amout_Avg

    from [dbo].[FactSalesQuota]

    group by EmployeeKey

  • May 23, 2013 at 9:49 pm

    #1618094

  • RE: Why SQL Server enable Large Pages?

    got it. thanks so much.

  • February 27, 2013 at 1:23 am

    #1591430

  • RE: Why SQL Server enable Large Pages?

    yes, from task manager.

  • February 27, 2013 at 1:12 am

    #1591424

  • RE: Why SQL Server enable Large Pages?

    Thanks Gail. When i query memory utilization by SQL Server, i found AWE allocated about 2GB, working set only taken 88MB ,is it normal?

    Query AWE allocated memory:

    select

    ...

  • February 27, 2013 at 1:07 am

    #1591420

  • RE: dbcc shrinkfile

    Thanks Perry.

  • October 21, 2012 at 11:50 pm

    #1551230

  • RE: dbcc shrinkfile

    one question about EMPTYFILE paramters:

    If i have 4 data files on one filegroup, then i use DBCC SHRINKFILE with emptyfile paramter to empty the first data file, which file these...

  • October 21, 2012 at 10:01 pm

    #1551222

  • RE: dbcc shrinkfile

    DBCC shirinkfile may not move data to other files. you can virtually move the data from the table to a different filegroup by creating a clustered index and placing it...

  • October 19, 2012 at 5:22 pm

    #1551077

  • RE: Database Mail Error

    you may check with you Exchange Admin and make sure setup relay service in Exchange Server.

  • October 19, 2012 at 5:13 pm

    #1551074

  • RE: BULK INSERT question

    Thanks Arun.

  • September 21, 2012 at 1:47 am

    #1540510

    Viewing 15 posts - 1 through 15 (of 109 total)