SQL Server 2012 Dynamic Memory

Does anyone know if Dynamic memory can be used for SQL 2012 on a Hyper-V 2012 VM?
There seems to be conflicting views of this, some say only static memory can be used or performance would be affected?

Hi,
Q7: Is Hyper-V Dynamic Memory supported for SQL Server?
A7: Hyper-V Dynamic Memory is fully supported with SQL Server. Only SQL Server versions and editions that support Hot Add Memory (Enterprise and Datacenter) can see memory that is added by using Hyper-V Dynamic Memory. SQL Server 2012
Standard edition also recognizes Hot Add memory when running in a virtual enviroment.  SQL Server versions that do not support Hot Add Memory are still supported. But these versions will detect only the memory that is present in the operating system when
SQL Server starts. Before you deploy Hyper-V Dynamic Memory, please read the following resources when you use Hyper-V Dynamic Memory with SQL Server:
http://support.microsoft.com/kb/956893
http://OpsMgr.ru/

Similar Messages

  • Sql server 2012 eating memory

    hi,
     we have setup sql server 2012 16 gb ram. but it is eating memory shows like 95 %.how i troubleshoot this issue.Please give solution asap
    Thanks,

    it is eating memory shows like 95 %.how i troubleshoot this issue.
    That's not an "issue", it is the quite normal behaviour of SQL Server to allocate as much memory as it needs and as it can get. You can limit the memory usage of SQL Server, see
    Server Memory Server Configuration Options and
    Effects of min and max server memory
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Sql server 2012 express - tcp/ip connection to named instance using dynamic port not working

    I have a named instance on a SQL 2012 Express server that won't connect via TCP/IP when wanting to connect off of the dynamic port.  I can connect via shared memory locally on the server.   I can connect to the namespace when specifying the
    dynamic port listed in the configuration manager.  
    This is the only named instance on the server and it is not the default.
    TCP/IP is enabled
    Allow Remote connections is enabled
    the server browser service is running
    I can connect via the dynamic port number
    I am testing the connection locally on the server, so I don't believe a firewall is the issue.  I get the same results if I test it from a remote computer.
    When using the sqlcmd (sqlcmd -S tcp:SQLSRVR\NAMEINST -E) I get the message that "the requested protocol isn't supported [xfffffffff]".   The command (sqlcmd -S tcp:SQLSRVR\NAMEINST,59992 -E) works.
    Through SSMS, I get the message "the connection was actively refused".
    On other boxes, I can connect with the named instance without having to specify the port. 
    I have looked through the sql logs and nothing much shows up.  The log does show that is listening on the port # for ipv4 and ipv6.   There is also a line in there talking about the SPN not being registered and not to worry about it if
    you are not using Kerberos.  I logged in through shared memory and it said I was using NTLM.
    Any help would be appreciated.
    thanks.

    Hi clw,
    I’m writing to follow up with you on this post. According to your description, I do a test, if you configure the database engine to listen on a specific TCP port (59992), and
    the port is opened in the firewall. If you want to connect to the SQL Server instance, you 'd better to
    use the port number.
    In my opinion, by default, the default instance of the Database Engine uses port 1433, usually, if you have configured the server to listen on a non-default port number, when an instance of SQL Server uses dynamic port allocation, the connection string that
    is built at the SQL Server client does not specify the destination TCP/IP port unless the user or the programmer explicitly specifies the port. Therefore, the SQL Server client library queries the server on UDP port 1434 to collect the information about the
    destination instance of SQL Server.
    If UDP port 1434 is disabled, the SQL Server client cannot dynamically determine the port of the named instance of SQL Server. Therefore, the SQL Server client may be unable to connect to the named instance of SQL Server. In this situation, the SQL Server
    client must specify the dynamically allocated port where the named instance of SQL Server is listening.
    For more information about configuring an instance of SQL Server to listen on a specific TCP port or dynamic port, you can review the following article.
    https://support.transfrm.com/entries/503111-How-to-configure-an-instance-of-SQL-Server-to-listen-on-a-specific-TCP-port-or-dynamic-port
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • SQL Server 2012 taking more memory

    I have sql server 2012 it taking more memory. for example i allocate 100 GB but it's taking 250GB and above. while
    i checking in resource monitor it's showing and there is no process is running (sp_who2)

    I have sql server 2012 it taking more memory. for example i allocate 100 GB but it's taking 250GB and above.
    while i checking in resource monitor it's showing and there is no process is running (sp_who2)
    I guess you allocated 100 G(arbitrary value) to buffer pool. Even though in SQL Server 2012 buffer pool was changed to cater to memory requests for many processes which were previously satisfied by Windows API directly (not from buffer pool) still there
    are processes which can cause memory allocation outside buffer pool and thus increase SQL server memory consumption more than what is assigned to buffer pool so what you are seeing IS NORMAL BEHAVIOR.
    http://blogs.msdn.com/b/sqlosteam/archive/2012/07/12/memory-manager-configuration-changes-in-sql-server-2012.aspx
    Can you please post output of below query
    select
    (physical_memory_in_use_kb/1024)Memory_usedby_Sqlserver_MB,
    (locked_page_allocations_kb/1024 )Locked_pages_used_Sqlserver_MB,
    (total_virtual_address_space_kb/1024 )Total_VAS_in_MB,
    process_physical_memory_low,
    process_virtual_memory_low
    from sys. dm_os_process_memory
    How much RAM does your system has and what is Max server memory ?
    SQL server once taken memory will not release until SQLOS asks it to do so upon seeing low memory notification flag. Memory is managed dynamically and SQL Server by default caches as much as possible to avoid I/O reads which is time taking an costly
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • Memory leak issue with link server between SQL Server 2012 and Oracle

    Hi,
    We are trying to use the linked server feature with SQL Server 2012 to connect SQL server and Oracle database. We are concerned about the existing memory leak issue.  For more context please refer to the link.
    http://blogs.msdn.com/b/psssql/archive/2009/09/22/if-you-use-linked-server-queries-you-need-to-read-this.aspx
    The above link talks about the issues with SQL Server versions 2005 and 2008, not sure if this is still the case in 2012.  I could not find any article that talks about if this issue was fixed by Microsoft in later version.
    We know that SQL Server process crashes because of the third-party linked server provider which is loaded inside SQL Server process. If the third-party linked server provider is enabled together with the
    Allow inprocess option, the SQL Server process crashes when this third-party linked server experiences internal problems.
    We wanted to know if this fixed in SQL Server 2012 ?

    So your question is more of a information type or are you really facing OOM issue.
    There can be two things for OOM
    1. There is bug in SQL Server which is causing the issue which might be fixed in 2012
    2. The Linked server provider used to connect to Oracle is not upto date and some patch is missing or more recent version is to be used.  Did you made sure that you are using latest version.
    What is Oracle version you are trying to connect(9i,10g, R2...)
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • SQL server 2012 Ent using less memory than the allocated amount after enabling -T834

    I am facing the situation mentioned here.
    http://blogs.msdn.com/b/psssql/archive/2009/06/05/sql-server-and-large-pages-explained.aspx
    My SQL Server 2012 is not able to use all the 112 GB RAM that was allocated to it after enabling -T834.
    This was not the case earlier. Now I see the Total server memory and target server memory counters are just 27 GB constantly. I found the below error while starting SQL after enabling -T834. I restarted services again and this time it started fine. But I
    didnt bother about the error untill users complained slowness and SQL memory usage was found to be low.
     Detected 131068 MB of RAM. This is an informational message; no user action is required.
     Using large pages in the memory manager.
     Large Page Allocated: 32MB
     Large page allocation failed during memory manager initialization
     Failed to initialize the memory manager
     Failed allocate pages: FAIL_PAGE_ALLOCATION 2
     Error: 17138, Severity: 16, State: 1.
     Unable to allocate enough memory to start 'SQL OS Boot'. Reduce non-essential memory load or increase system memory.
    Now, SQL is started by its Total server memory is only 27 GB. How can I make SQL server use all the allocated max server memory with -T834 still on ?
    Bharath Kumar ------------- Please mark solved if I've answered your question, vote for it as helpful to help other user's find a solution quicker

    Hi Bharath , 
    in the below post the scenario is mentioned clearly 
    http://blogs.msdn.com/b/psssql/archive/2009/06/05/sql-server-and-large-pages-explained.aspx
    Unable to allocate enough memory to start 'SQL OS Boot'. Reduce non-essential memory load or increase system memory.
    This shows one of the problems with large pages: the memory size requested must be contiguous. This is called out very nicely at the MSDN
    article on Large Pages
    These memory regions may be difficult to obtain after the system has been running for a long time because the space for each large page must be contiguous, but the memory may have become fragmented. This is an expensive operation;
    therefore, applications should avoid making repeated large page allocations and allocate them all one time at startup instead.
    In this case above, even if ‘max server memory’ was set to say 8Gb, the server could only allocate 2Gb and that now becomes a maximum allocation for the buffer pool. Remember we don’t grow the buffer pool when using large pages so whatever memory we allocate
    at startup is the max you get.
    The other interesting thing you will find out with large pages is a possible slowdown in server startup time. Notice in the ERRORLOG entry above the gap of 7 minutes between the server discovering trace flag 834 was on (the "Using large pages..” message)
    and the message about how much large memory was allocated for the buffer pool. Not only does it take a long time to call VirtualAlloc() but in the case where we cannot allocate total physical memory or ‘max server memory” we attempt to allocate lower values
    several times before either finding one that works or failing to start. We have had some customers report the time to start the server when using trace flag 834 was over 30 minutes.
    regards,
    Ram
    ramakrishna

  • SQL Server 2012- Memory Leak Issue

    Team,
    We are running a Mission Critical Application on SQL Server 2012 SP2(11.0.5058) which is configured on Always ON Synchronous mode. Offlate due to heavy development work, Application team have come up with stating memory issues. I have analysed all the areas
    and everything looks normal. Please suggest if we have to patch the latest CU4 for SQL Server 2012 SP2. 
    The checks were performed on the below areas:
    - Errorlog, System Logs - No errors reported.
    - There are close to 8 Databases hosted on the instances which are all configured for AlwaysON. SQL Server is running on VM Infrastructure and the total physical memory allocated is 96GB out of which SQL is capped for 92GB. 
    -The Page Life Expectancy is healthy and is showing a greater number. There are no Signal waits either or pending memory grants. 
    - The writes are more than reads for one of the databases which is flagged with application team. There are no blockings & Deadlocks.
    Please suggest me the future course of action and your inputs are much appreciated.
    Best Regards,
    Sharath 

    Actual issue is- Application team have reported a memory leak and their builds have significantly slowed down. They suspect that its Database memory leak. However I have verified from database end and gave the above inputs. 
    The AOAGs are good. I was looking for any pointers whether there are any bugs which is related to memory leaks in SQL Server 2012.  I know all of them are addressed with SQL Server 2012 SP2. 
    Application team has NO idea about SQL Server do they ? And to say SQL Server has memory leak you have to actually prove it did they showed any proof. Its common for application team to say SQL Server is leaking memory because they are unaware about fact
    by default SQL Server would take as much memory as possible and would release when SQLOS asks it to do so. This might give sign that it is leaking memory BUT IT IS NOT.
    As you already said AOAG is working fine so I am presuming there is nothing much to worry. To monitor memory usage in SQL Server 2012 you can use below counters
    SQL Server: Memory Manager-- Target Server Memory (KB)
    SQL Server: Memory Manager--Total Server Memory (KB)
    SQL Server: Memory Manager- Free Memory (KB)
    SQL Server: Memory Manager--Database Cache Memory (KB)
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • SQL server 2012 : There is insufficient system memory in resource pool 'internal' to run this query

    We have recently upgraded from SQL server 2008 to SQL server 2012.
    We are getting this error when browsing to several pages on our website.
     There is insufficient system memory in resource pool 'internal' to run this query
    Most of the pages just try to do sql statements or stored procedures. I found a fix related to this error for sql 2012
    http://support.microsoft.com/kb/2769594/en-gb
    I did install it on server but the problem still remains.
    I have increased Maximum server memory to 20 GB to see if it will affect but it didnt.
    Memory on server is 32GB
    This is the sql version we have
    Microsoft SQL Server 2012 (SP1) - 11.0.3393.0 (X64)
        Oct 25 2013 19:04:40
        Copyright (c) Microsoft Corporation
        Standard Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: )
    How can i solve this error?It keeps on appearing when browsing .net website

    This is the ouptut of memory status
    Process/System Counts Value
    Available Physical Memory 6559842304
    Available Virtual Memory 8741595508736
    Available Paging File 17090838528
    Working Set 21094821888
    Percent of Committed Memory in WS 100
    Page Faults 160487165
    System physical memory high 1
    System physical memory low 0
    Process physical memory low 0
    Process virtual memory low 0
    Memory Manager KB
    VM Reserved 51506548
    VM Committed 20445040
    Locked Pages Allocated 0
    Large Pages Allocated 0
    Emergency Memory 1024
    Emergency Memory In Use 16
    Target Committed 20480008
    Current Committed 20445040
    Pages Allocated 6298528
    Pages Reserved 717408
    Pages Free 13820616
    Pages In Use 5143472
    Page Alloc Potential 14312512
    NUMA Growth Phase 0
    Last OOM Factor 1
    Last OS Error 0
    Memory node Id = 0 KB
    VM Reserved 51504948
    VM Committed 10218952
    Locked Pages Allocated 0
    Pages Allocated 1651360
    Pages Free 8323696
    Target Committed 10239992
    Current Committed 10218952
    Foreign Committed 96
    Away Committed 0
    Taken Away Committed 0
    Memory node Id = 1 KB
    VM Reserved 1536
    VM Committed 10226068
    Locked Pages Allocated 0
    Pages Allocated 4647208
    Pages Free 5496896
    Target Committed 10239992
    Current Committed 10226072
    Foreign Committed 0
    Away Committed 0
    Taken Away Committed 0
    Memory node Id = 64 KB
    VM Reserved 0
    VM Committed 20
    Locked Pages Allocated 0
    MEMORYCLERK_SQLGENERAL (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 19136
    MEMORYCLERK_SQLGENERAL (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 144
    MEMORYCLERK_SQLGENERAL (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 19280
    MEMORYCLERK_SQLBUFFERPOOL (node 0) KB
    VM Reserved 841608
    VM Committed 151560
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1081360
    MEMORYCLERK_SQLBUFFERPOOL (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1119416
    MEMORYCLERK_SQLBUFFERPOOL (Total) KB
    VM Reserved 841608
    VM Committed 151560
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2200776
    MEMORYCLERK_SQLQUERYEXEC (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 5768
    MEMORYCLERK_SQLQUERYEXEC (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 9624
    MEMORYCLERK_SQLQUERYEXEC (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 15392
    MEMORYCLERK_SQLOPTIMIZER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2480
    MEMORYCLERK_SQLUTILITIES (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 112
    MEMORYCLERK_SQLUTILITIES (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_SQLUTILITIES (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 128
    MEMORYCLERK_SQLSTORENG (node 0) KB
    VM Reserved 4800
    VM Committed 4800
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 7928
    MEMORYCLERK_SQLSTORENG (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 5856
    MEMORYCLERK_SQLSTORENG (Total) KB
    VM Reserved 4800
    VM Committed 4800
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 13784
    MEMORYCLERK_SQLCONNECTIONPOOL (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1184
    MEMORYCLERK_SQLCONNECTIONPOOL (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 536
    MEMORYCLERK_SQLCONNECTIONPOOL (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1720
    MEMORYCLERK_SQLCLR (node 0) KB
    VM Reserved 9450752
    VM Committed 10664
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 60648
    MEMORYCLERK_SQLSERVICEBROKER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 528
    MEMORYCLERK_SQLHTTP (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    MEMORYCLERK_SNI (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 40
    MEMORYCLERK_SNI (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 56
    MEMORYCLERK_SNI (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_SNI (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 112
    MEMORYCLERK_FULLTEXT (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 297936
    MEMORYCLERK_FULLTEXT (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 3406024
    MEMORYCLERK_FULLTEXT (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 3703960
    MEMORYCLERK_SQLXP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_BHF (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 152
    MEMORYCLERK_BHF (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 184
    MEMORYCLERK_BHF (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 336
    MEMORYCLERK_SQLQERESERVATIONS (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 841952
    MEMORYCLERK_XE_BUFFER (node 0) KB
    VM Reserved 3072
    VM Committed 3072
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 0
    MEMORYCLERK_XE_BUFFER (node 1) KB
    VM Reserved 1536
    VM Committed 1536
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 0
    MEMORYCLERK_XE_BUFFER (Total) KB
    VM Reserved 4608
    VM Committed 4608
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 0
    MEMORYCLERK_XTP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_HOST (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 40
    MEMORYCLERK_SOSNODE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 34168
    MEMORYCLERK_SOSNODE (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 11664
    MEMORYCLERK_SOSNODE (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2600
    MEMORYCLERK_SOSNODE (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 48432
    MEMORYCLERK_SOSOS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 192
    MEMORYCLERK_SOSMEMMANAGER (node 0) KB
    VM Reserved 85560
    VM Committed 85416
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 0
    MEMORYCLERK_FULLTEXT_SHMEM (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 576
    SM Committed 576
    Pages Allocated 0
    MEMORYCLERK_SQLSERVICEBROKERTRANSPORT (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 200
    MEMORYCLERK_FILETABLE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_XE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 3440
    MEMORYCLERK_SQLLOGPOOL (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 4208
    MEMORYCLERK_LWC (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 192
    MEMORYCLERK_FSCHUNKER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 48
    CACHESTORE_OBJCP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 5848
    CACHESTORE_SQLCP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 29664
    CACHESTORE_PHDR (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 4616
    CACHESTORE_XPROC (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 32
    CACHESTORE_TEMPTABLES (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_NOTIF (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_VIEWDEFINITIONS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_XMLDBTYPE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_XMLDBELEMENT (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_XMLDBATTRIBUTE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_STACKFRAMES (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_STACKFRAMES (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_STACKFRAMES (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_STACKFRAMES (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 24
    CACHESTORE_BROKERTBLACS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 48
    CACHESTORE_BROKERKEK (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_BROKERDSH (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_BROKERUSERCERTLOOKUP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_BROKERRSB (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_BROKERREADONLY (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 32
    CACHESTORE_BROKERTO (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_EVENTS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_SEHOBTCOLUMNATTRIBUTE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 400
    CACHESTORE_SYSTEMROWSET (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1056
    CACHESTORE_SYSTEMROWSET (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 480
    CACHESTORE_SYSTEMROWSET (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1536
    CACHESTORE_CONVPRI (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 32
    CACHESTORE_CONVPRI (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_CONVPRI (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 48
    CACHESTORE_FULLTEXTSTOPLIST (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 56
    CACHESTORE_SEARCHPROPERTYLIST (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_COLUMNSTOREOBJECTPOOL (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 192
    CACHESTORE_XML_SELECTIVE_DG (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    USERSTORE_SCHEMAMGR (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8896
    USERSTORE_DBMETADATA (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 5088
    USERSTORE_DBMETADATA (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 4768
    USERSTORE_DBMETADATA (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 9856
    USERSTORE_TOKENPERM (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8104
    USERSTORE_TOKENPERM (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 448
    USERSTORE_TOKENPERM (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8552
    USERSTORE_OBJPERM (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1640
    USERSTORE_OBJPERM (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 600
    USERSTORE_OBJPERM (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2240
    USERSTORE_SXC (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 160
    USERSTORE_SXC (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 168
    USERSTORE_SXC (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    USERSTORE_SXC (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 336
    OBJECTSTORE_LBSS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 368
    OBJECTSTORE_LBSS (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 296
    OBJECTSTORE_LBSS (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 664
    OBJECTSTORE_SNI_PACKET (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 616
    OBJECTSTORE_SNI_PACKET (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 648
    OBJECTSTORE_SNI_PACKET (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 56
    OBJECTSTORE_SNI_PACKET (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1320
    OBJECTSTORE_SERVICE_BROKER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 496
    OBJECTSTORE_LOCK_MANAGER (node 0) KB
    VM Reserved 65540
    VM Committed 65540
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 11816
    OBJECTSTORE_LOCK_MANAGER (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 11632
    OBJECTSTORE_LOCK_MANAGER (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 24
    OBJECTSTORE_LOCK_MANAGER (Total) KB
    VM Reserved 65540
    VM Committed 65540
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 23472
    OBJECTSTORE_SECAUDIT_EVENT_BUFFER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    OBJECTSTORE_XACT_CACHE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2224
    OBJECTSTORE_XACT_CACHE (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2488
    OBJECTSTORE_XACT_CACHE (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    OBJECTSTORE_XACT_CACHE (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 4728
    Buffer Pool Value
    Database 274830
    Simulated 0
    Target 4096000
    Dirty 507
    In IO 0
    Latched 1
    Page Life Expectancy 11941
    Procedure Cache Value
    TotalProcs 333
    TotalPages 5914
    InUsePages 345
    Global Memory Objects Pages
    Resource 401
    Locks 2934
    XDES 561
    DirtyPageTracking 24
    SETLS 24
    SubpDesc Allocators 165
    SE SchemaManager 559
    SE Column Metadata Cache 549
    SE Column Metadata Cache Store 3
    SQLCache 270
    Replication 2
    ServerGlobal 52
    XP Global 2
    SortTables 3
    Query Memory Objects (internal) Value
    Grants 2
    Waiting 0
    Available 1677087
    Current Max 1814852
    Future Max 1814852
    Physical Max 1854482
    Next Request 0
    Waiting For 0
    Cost 0
    Timeout 0
    Wait Time 0
    Small Query Memory Objects (internal) Value
    Grants 0
    Waiting 0
    Available 95518
    Current Max 95518
    Future Max 95518
    Remote Query Memory Objects (internal) Value
    Grants 0
    Waiting 0
    Available 926250
    Current Max 926250
    Optimization Queue (internal) Value
    Overall Memory 17039360000
    Target Memory 16709148672
    Last Notification 1
    Timeout 6
    Early Termination Factor 5
    Small Gateway (internal) Value
    Configured Units 96
    Available Units 95
    Acquires 1
    Waiters 0
    Threshold Factor 380000
    Threshold 380000
    Medium Gateway (internal) Value
    Configured Units 24
    Available Units 24
    Acquires 0
    Waiters 0
    Threshold Factor 12
    Threshold 1392429056
    Big Gateway (internal) Value
    Configured Units 1
    Available Units 1
    Acquires 0
    Waiters 0
    Threshold Factor 8
    Threshold -1
    Memory Pool Manager Pages
    Reserved Current 0
    Reserved Limit 2095263
    Memory Pool (internal) Pages
    Allocations 464738
    Predicted 929941
    Private Target 0
    Private Limit 0
    Total Target 2560001
    Total Limit 2560001
    OOM Count 0
    MEMORYBROKER_FOR_CACHE (internal) Pages
    Allocations 14370
    Rate 1582
    Target Allocations 1646012
    Future Allocations 0
    Overall 2080000
    Last Notification 1
    MEMORYBROKER_FOR_STEAL (internal) Pages
    Allocations 409631
    Rate -242825
    Target Allocations 2039691
    Future Allocations 0
    Overall 2080000
    Last Notification 1
    MEMORYBROKER_FOR_RESERVE (internal) Pages
    Allocations 0
    Rate -59129
    Target Allocations 2080000
    Future Allocations 463125
    Overall 2080000
    Last Notification 1
    MEMORYBROKER_FOR_COMMITTED (internal) Pages
    Allocations 40735
    Rate 1
    Target Allocations 1670796
    Future Allocations 0
    Overall 2080000
    Last Notification 1
    MEMORYBROKER_FOR_XTP (internal) Pages
    Allocations 2
    Rate 0
    Target Allocations 1630062
    Future Allocations 0
    Overall 2080000
    Last Notification 1
    Memory Broker Clerk (Buffer Pool) Pages
    Total 274830
    Simulated 0
    Simulation Benefit 0
    Internal Benefit 0
    External Benefit 0
    Value Of Memory 0
    Periodic Freed 0
    Internal Freed 0
    Mainly we have SQL and IIS on server

  • SQL server 2012 service consume high memory

    Hi,
    I have sql 2012 SP1 installed on my windows server 2012. Have 128 GB ram installed on server.
    Now sql server consuming 111GB of ram. Memory set in sql is 120 GB.
    No page file set for server.
    How to manage sql not to consume to much of ram.
    Please suggest as system getting to much slow.
    Thanks in Advance
    Anuj Gupta

    Hi,
    I have sql 2012 SP1 installed on my windows server 2012. Have 128 GB ram installed on server.
    Now sql server consuming 111GB of ram. Memory set in sql is 120 GB.
    No page file set for server.
    How to manage sql not to consume to much of ram.
    Please suggest as system getting to much slow.
    Thanks in Advance
    Anuj Gupta
    Rest assured buddy this is not an issue and best part is if OS faces memory crunch anyhow SQL Server will release memory it has taken,will trim down its consumption .So its totally normal behaviour.If you really want to decrease memory consumption set lower
    valur for MAX SERVER MEMORY.But will not advise you to do so as it will flush out cache and other plans.
    You should set a page file almost double the RAM you have I guess that is the value they recommned.
    Sometimes if you have big databse ( 500 G -1 TB)and lots of pages are read memory utilization rises to keep this pages in Buffer cache and it seems SQL Server is utilizing more mmeory but it is doing for your own good to make query faster .Any read/write
    would be satisfied from memory instead of bringing data from disk which is costly
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Unable to install SQL Server 2012 Standard: Error code 0x851A0019

    Hi All,
    I am trying to install sql server 2012 standard edition on windows server 2008R2 but at the end of the installation it is giving me the following error message: 
    "The following error has occurred:
    Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes."
    And in the log file I got the following error message:
    Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      Reason for failure:            An error occurred during the setup process of the feature.
      Next Step:                     Use the following information to resolve the error, uninstall this feature, and then run the setup process again.
      Component name:                SQL Server Database Engine Services Instance Features
      Component error code:          0x851A0019
      Error description:             Wait on the Database Engine recovery handle failed. Check the SQL Server error log for potential causes.
      Error help link:               http://go.microsoft.com/fwlink?LinkId=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=11.0.2100.60&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4025&EvtType=0xD15B4EB2%400x4BDAF9BA%401306%4025
    (I have posted part of the log file)
    Need your help to resolve this issue.
    Thanks,
    MKNayeem

    Hi,
    Thanks for your reply.
    I have already followed that article. I have changed the user to local account user, but it did not work.
    Like you said the sql server is installed, but it is not starting the services. Following is the error log file message:
    2015-03-16 10:12:15.27 Server      Microsoft SQL Server 2012 - 11.0.2100.60 (X64) 
    Feb 10 2012 19:39:15 
    Copyright (c) Microsoft Corporation
    Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    2015-03-16 10:12:15.27 Server      (c) Microsoft Corporation.
    2015-03-16 10:12:15.27 Server      All rights reserved.
    2015-03-16 10:12:15.29 Server      Server process ID is 5724.
    2015-03-16 10:12:15.29 Server      System Manufacturer: 'VMware, Inc.', System Model: 'VMware Virtual Platform'.
    2015-03-16 10:12:15.29 Server      Authentication mode is MIXED.
    2015-03-16 10:12:15.29 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\Log\ERRORLOG'.
    2015-03-16 10:12:15.29 Server      The service account is 'NT Service\MSSQL$BNG1SECISO'. This is an informational message; no user action is required.
    2015-03-16 10:12:15.29 Server      Registry startup parameters: 
    -d C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\DATA\master.mdf
    -e C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\Log\ERRORLOG
    -l C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\DATA\mastlog.ldf
    2015-03-16 10:12:15.29 Server      Command Line Startup Parameters:
    -s "BNG1SECISO"
    2015-03-16 10:12:15.57 Server      SQL Server detected 2 sockets with 1 cores per socket and 1 logical processors per socket, 2 total logical processors; using 2 logical processors based on SQL Server licensing. This is an informational message;
    no user action is required.
    2015-03-16 10:12:15.57 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2015-03-16 10:12:15.57 Server      Detected 16383 MB of RAM. This is an informational message; no user action is required.
    2015-03-16 10:12:15.57 Server      Using conventional memory in the memory manager.
    2015-03-16 10:12:15.67 Server      This instance of SQL Server last reported using a process ID of 2452 at 16-03-2015 07:03:13 (local) 16-03-2015 01:33:13 (UTC). This is an informational message only; no user action is required.
    2015-03-16 10:12:15.67 Server      Node configuration: node 0: CPU mask: 0x0000000000000003:0 Active CPU mask: 0x0000000000000003:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2015-03-16 10:12:15.69 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2015-03-16 10:12:15.69 Server      Software Usage Metrics is disabled.
    2015-03-16 10:12:15.70 spid6s      Starting up database 'master'.
    2015-03-16 10:12:15.78 Server      CLR version v4.0.30319 loaded.
    2015-03-16 10:12:15.82 Server      Common language runtime (CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\.
    2015-03-16 10:12:17.36 spid6s      Error: 824, Severity: 24, State: 2.
    2015-03-16 10:12:17.36 spid6s      SQL Server detected a logical consistency-based I/O error: incorrect pageid (expected 1:377; actual 261:2228225). It occurred during a read of page (1:377) in database ID 1 at offset 0x000000002f2000 in
    file 'C:\Program Files\Microsoft SQL Server\MSSQL11.BNG1SECISO\MSSQL\DATA\master.mdf'.  Additional messages in the SQL Server error log or system event log may provide more detail. This is a severe error condition that threatens database integrity and
    must be corrected immediately. Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors; for more information, see SQL Server Books Online.
    Thanks
    MKNayeem

  • SQL Server 2012 SP2 Cumulative Update 5

    We are starting to take a look at Cumulative update 5 for SQL Server 2012 SP2.  The Installation was going smooth until the very in, where it sat on trying to start MSSQLServer for several minutes and finally timed out.  Why does Cumulative
    patch 5 says it failed to start the service when the server is already running?  Version number changed, and everthing looks ok, except for the error message in the log file.
    Is this a valid installation or do I need to try again? 
    Thanks.
    DJ

    Thanks for the reply.  The ErrorLog is too large to post in 1 reply.  Will post multiple times.
    Version of the SQL Server shows 11.0.5582.0
    Dj
    Post 1
    2015-03-24 14:13:23.82 Server      Microsoft SQL Server 2012 - 11.0.5582.0 (X64)
     Feb 27 2015 18:10:15
     Copyright (c) Microsoft Corporation
     Enterprise Edition: Core-based Licensing (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)
    2015-03-24 14:13:23.82 Server      (c) Microsoft Corporation.
    2015-03-24 14:13:23.82 Server      All rights reserved.
    2015-03-24 14:13:23.82 Server      Server process ID is 37184.
    2015-03-24 14:13:23.82 Server      System Manufacturer: 'VMware, Inc.', System Model: 'VMware Virtual Platform'.
    2015-03-24 14:13:23.82 Server      Authentication mode is MIXED.
    2015-03-24 14:13:23.82 Server      Logging SQL Server messages in file 'L:\SQL Server\Log Files\ERRORLOG'.
    2015-03-24 14:13:23.82 Server      The service account is 'NT Service\MSSQLSERVER'. This is an informational message; no user action is required.
    2015-03-24 14:13:23.82 Server      Registry startup parameters:
      -d H:\\System DB\Data\master.mdf
      -e L:\SQL Server\Log Files\ERRORLOG
      -l G:\\System DB\Logs\mastlog.ldf
    2015-03-24 14:13:23.82 Server      Command Line Startup Parameters:
      -s "MSSQLSERVER"
    2015-03-24 14:13:24.15 Server      SQL Server detected 1 sockets with 2 cores per socket and 2 logical processors per socket, 2 total logical processors; using 2 logical processors based on SQL Server licensing. This is an informational
    message; no user action is required.
    2015-03-24 14:13:24.15 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2015-03-24 14:13:24.15 Server      Detected 8191 MB of RAM. This is an informational message; no user action is required.
    2015-03-24 14:13:24.15 Server      Using locked pages in the memory manager.
    2015-03-24 14:13:24.15 Server      Common Criteria compliance mode is enabled. This is an informational message only; no user action is required.
    2015-03-24 14:13:24.22 Server      This instance of SQL Server last reported using a process ID of 39820 at 3/24/2015 2:09:46 PM (local) 3/24/2015 6:09:46 PM (UTC). This is an informational message only; no user action is required.
    2015-03-24 14:13:24.23 Server      Node configuration: node 0: CPU mask: 0x0000000000000003:0 Active CPU mask: 0x0000000000000003:0. This message provides a description of the NUMA configuration for this computer. This is an informational
    message only. No user action is required.
    2015-03-24 14:13:24.23 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    2015-03-24 14:13:24.24 Server      Software Usage Metrics is disabled.
    2015-03-24 14:13:24.24 spid4s      Starting up database 'master'.
    2015-03-24 14:13:24.30 spid4s      9 transactions rolled forward in database 'master' (1:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:24.32 spid4s      0 transactions rolled back in database 'master' (1:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:24.32 spid4s      Recovery is writing a checkpoint in database 'master' (1). This is an informational message only. No user action is required.
    2015-03-24 14:13:24.33 Server      CLR version v4.0.30319 loaded.
    2015-03-24 14:13:24.36 Server      Common language runtime (CLR) functionality initialized using CLR version v4.0.30319 from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\.
    2015-03-24 14:13:39.41 spid6s      SQL Server has encountered 1 occurrence(s) of I/O requests taking longer than 15 seconds to complete on file [H:\\System DB\Data\master.mdf] in database [master] (1).  The OS file handle is 0x0000000000000598. 
    The offset of the latest long I/O is: 0x0000000002a000
    2015-03-24 14:13:53.94 spid4s      Recovery completed for database master (database ID 1) in 29 second(s) (analysis 3 ms, redo 39 ms, undo 8 ms.) This is an informational message only. No user action is required.
    2015-03-24 14:13:54.19 spid4s      CHECKDB for database 'master' finished without errors on 2015-03-06 08:35:22.387 (local time). This is an informational message only; no user action is required.
    2015-03-24 14:13:54.19 spid4s      Resource governor reconfiguration succeeded.
    2015-03-24 14:13:54.19 spid4s      SQL Server Audit is starting the audits. This is an informational message. No user action is required.
    2015-03-24 14:13:54.19 spid4s      SQL Server Audit has started the audits. This is an informational message. No user action is required.
    2015-03-24 14:13:54.21 spid4s      Server name is 'Server'. This is an informational message only. No user action is required.
    2015-03-24 14:13:54.22 spid4s      Failed to verify Authenticode signature on DLL 'S:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Binn\ftimport.dll'.
    2015-03-24 14:13:54.22 spid9s      Starting up database 'mssqlsystemresource'.
    2015-03-24 14:13:54.22 spid14s     Starting up database 'msdb'.
    2015-03-24 14:13:54.23 spid15s     Starting up database 'Mgmt'.
    2015-03-24 14:13:54.24 spid16s     Starting up database 'Web2'.
    2015-03-24 14:13:54.24 spid12s     The certificate [Cert Hash(sha1) "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"] was successfully loaded for encryption.
    2015-03-24 14:13:54.24 spid18s     Starting up database 'Web2A'.
    2015-03-24 14:13:54.24 spid9s      The resource database build version is 11.00.5582. This is an informational message only. No user action is required.
    2015-03-24 14:13:54.25 spid12s     Server is listening on [ 'any' <ipv6> 1433].
    2015-03-24 14:13:54.25 spid12s     Server is listening on [ 'any' <ipv4> 1433].
    2015-03-24 14:13:54.25 spid12s     Server local connection provider is ready to accept connection on [
    \\.\pipe\SQLLocal\MSSQLSERVER ].
    2015-03-24 14:13:54.26 spid12s     Server local connection provider is ready to accept connection on [
    \\.\pipe\sql\query ].
    2015-03-24 14:13:54.26 Server      Server is listening on [ ::1 <ipv6> 1434].
    2015-03-24 14:13:54.26 Server      Server is listening on [ 127.0.0.1 <ipv4> 1434].
    2015-03-24 14:13:54.26 Server      Dedicated admin connection support was established for listening locally on port 1434.
    2015-03-24 14:13:54.26 Server      SQL Server is attempting to register a Service Principal Name (SPN) for the SQL Server service. Kerberos authentication will not be possible until a SPN is registered for the SQL Server service. This
    is an informational message. No user action is required.
    2015-03-24 14:13:54.33 Server      The SQL Server Network Interface library successfully registered the Service Principal Name (SPN) [ MSSQLSvc/Server.local ] for the SQL Server service.
    2015-03-24 14:13:54.33 Server      The SQL Server Network Interface library successfully registered the Service Principal Name (SPN) [ MSSQLSvc/Server.local:1433 ] for the SQL Server service.
    2015-03-24 14:13:54.39 spid9s      Starting up database 'model'.
    2015-03-24 14:13:54.42 spid4s      1 transactions rolled back in database 'msdb' (4:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:54.42 spid4s      Recovery is writing a checkpoint in database 'msdb' (4). This is an informational message only. No user action is required.
    2015-03-24 14:13:54.46 spid9s      1 transactions rolled forward in database 'model' (3:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:54.47 spid9s      0 transactions rolled back in database 'model' (3:0). This is an informational message only. No user action is required.
    2015-03-24 14:13:54.62 spid9s      Clearing tempdb database.
    2015-03-24 14:14:17.34 spid9s      Starting up database 'tempdb'.
    2015-03-24 14:14:27.05 spid19s     The Service Broker endpoint is in disabled or stopped state.
    2015-03-24 14:14:27.06 spid19s     The Database Mirroring endpoint is in disabled or stopped state.
    2015-03-24 14:14:27.07 spid19s     Service Broker manager has started.
    2015-03-24 14:14:27.21 spid15s     CHECKDB for database 'Mgmt' finished without errors on 2014-09-14 00:02:54.637 (local time). This is an informational message only; no user action is required.
    2015-03-24 14:14:27.58 spid16s     CHECKDB for database 'Web2' finished without errors on 2015-03-22 00:00:43.253 (local time). This is an informational message only; no user action is required.
    2015-03-24 14:14:27.65 spid4s      Database 'master' is upgrading script 'ProvisionAgentIdentity.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:27.65 spid4s      Database 'master' is upgrading script 'no_op.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:27.93 spid4s      Database 'master' is upgrading script 'no_op.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:27.94 spid4s      -----------------------------------------
    2015-03-24 14:14:27.94 spid4s      Starting execution of dummy.sql
    2015-03-24 14:14:27.94 spid4s      -----------------------------------------
    2015-03-24 14:14:27.94 spid4s      Database 'master' is upgrading script 'repl_upgrade.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:27.94 spid4s      Executing replication upgrade scripts.
    2015-03-24 14:14:27.99 spid4s      Attempting to load library 'xpstar.dll' into memory. This is an informational message only. No user action is required.
    2015-03-24 14:14:28.07 spid4s      Using 'xpstar.dll' version '2011.110.5058' to execute extended stored procedure 'xp_instance_regread'. This is an informational message only; no user action is required.
    2015-03-24 14:14:28.09 spid4s      Executing sp_vupgrade_replication.
    2015-03-24 14:14:28.50 spid4s      Upgrading publication settings and system objects in database [Mgmt].
    2015-03-24 14:14:28.89 spid4s      Upgrading publication settings and system objects in database [Web2].
    2015-03-24 14:14:29.98 spid4s      Upgrading publication settings and system objects in database [Web2A].
    2015-03-24 14:14:30.48 spid4s      Could not open database [LEGACY_DSS]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:30.48 spid4s      Could not open database [PROD_1]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when the
    database is available.
    2015-03-24 14:14:30.48 spid4s      Could not open database [PROD_LS]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:30.48 spid4s      Could not open database [PROD_NG]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:30.48 spid4s      Could not open database [PROD_RSV]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:30.52 spid4s      Upgrading subscription settings and system objects in database [Mgmt].
    2015-03-24 14:14:31.17 spid4s      Attempting to load library 'xprepl.dll' into memory. This is an informational message only. No user action is required.
    2015-03-24 14:14:31.19 spid4s      Using 'xprepl.dll' version '2011.110.5582' to execute extended stored procedure 'xp_repl_encrypt'. This is an informational message only; no user action is required.
    2015-03-24 14:14:31.19 spid4s      Upgrading subscription settings and system objects in database [Web2].
    2015-03-24 14:14:31.75 spid4s      Upgrading subscription settings and system objects in database [Web2A].
    2015-03-24 14:14:32.31 spid4s      Could not open database [LEGACY]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when the
    database is available.
    2015-03-24 14:14:32.31 spid4s      Could not open database [PROD_1]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when the
    database is available.
    2015-03-24 14:14:32.31 spid4s      Could not open database [PROD_LS]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:32.31 spid4s      Could not open database [PROD_NG]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:32.31 spid4s      Could not open database [PROD_RSV]. Replication settings and system objects could not be upgraded. If the database is used for replication, run sp_vupgrade_replication in the [master] database when
    the database is available.
    2015-03-24 14:14:32.33 spid4s      Attempting to copy article resolvers from SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\Replication\ArticleResolver
    2015-03-24 14:14:32.59 spid4s      sp_vupgrade_replication executed successfully
    2015-03-24 14:14:32.59 spid4s      Saving upgrade script status to 'SOFTWARE\Microsoft\MSSQLServer\Replication\Setup'.
    2015-03-24 14:14:32.59 spid4s      Saved upgrade script status successfully.
    2015-03-24 14:14:32.59 spid4s      Database 'master' is upgrading script 'upgrade_ucp_cmdw_discovery.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:32.92 spid4s      Database 'master' is upgrading script 'msdb110_upgrade.sql' from level 184554434 to level 184554958.
    2015-03-24 14:14:32.92 spid4s      ----------------------------------
    2015-03-24 14:14:32.92 spid4s      Starting execution of PRE_MSDB.SQL
    2015-03-24 14:14:32.92 spid4s      ----------------------------------
    2015-03-24 14:14:33.08 spid4s      Setting database option COMPATIBILITY_LEVEL to 100 for database 'msdb'.
    2015-03-24 14:14:33.17 spid4s      -----------------------------------------
    2015-03-24 14:14:33.17 spid4s      Starting execution of PRE_SQLAGENT100.SQL
    2015-03-24 14:14:33.17 spid4s      -----------------------------------------
    2015-03-24 14:14:33.17 spid4s      Setting database option COMPATIBILITY_LEVEL to 110 for database 'msdb'.
    2015-03-24 14:14:33.22 spid4s      Configuration option 'allow updates' changed from 0 to 1. Run the RECONFIGURE statement to install.
    2015-03-24 14:14:33.22 spid4s      Configuration option 'allow updates' changed from 0 to 1. Run the RECONFIGURE statement to install.
    2015-03-24 14:15:00.06 spid6s      SQL Server has encountered 1 occurrence(s) of I/O requests taking longer than 15 seconds to complete on file [G:\\System DB\Logs\MSDBLog.ldf] in database [msdb] (4).  The OS file handle is 0x0000000000000790. 
    The offset of the latest long I/O is: 0x00000000efac00
    2015-03-24 14:16:00.87 spid4s      DBCC TRACEOFF 1717, server process ID (SPID) 4. This is an informational message only; no user action is required.
    2015-03-24 14:16:00.87 spid4s      DBCC execution completed. If DBCC printed error messages, contact your system administrator.
    2015-03-24 14:16:00.88 spid4s      
    2015-03-24 14:16:00.88 spid4s      Creating table temp_sysjobschedules
    2015-03-24 14:16:01.00 spid4s      
    2015-03-24 14:16:01.00 spid4s      Alter table sysdownloadlist...
    2015-03-24 14:16:01.00 spid4s      
    2015-03-24 14:16:01.00 spid4s      Alter table sysjobhistory...
    2015-03-24 14:16:01.02 spid4s      
    2015-03-24 14:16:01.02 spid4s      Alter table systargetservers...
    2015-03-24 14:16:01.02 spid4s      
    2015-03-24 14:16:01.02 spid4s      Alter table sysjobsteps...
    2015-03-24 14:16:01.09 spid4s      Configuration option 'allow updates' changed from 1 to 0. Run the RECONFIGURE statement to install.
    2015-03-24 14:16:01.09 spid4s      Configuration option 'allow updates' changed from 1 to 0. Run the RECONFIGURE statement to install.
    2015-03-24 14:16:01.09 spid4s      
    2015-03-24 14:16:01.09 spid4s      -----------------------------------------
    2015-03-24 14:16:01.09 spid4s      Execution of PRE_SQLAGENT100.SQL complete
    2015-03-24 14:16:01.09 spid4s      -----------------------------------------
    2015-03-24 14:16:01.10 spid4s      DMF pre-upgrade steps...
    2015-03-24 14:16:01.25 spid4s      DC pre-upgrade steps...
    2015-03-24 14:16:01.25 spid4s      Check if Data collector config table exists...
    2015-03-24 14:16:01.25 spid4s      Data Collector state before upgrade: 0
    2015-03-24 14:16:01.25 spid4s      pre_dc100::Check if syscollector_collection_sets_internal table exists...
    2015-03-24 14:16:01.25 spid4s      pre_dc100::Capturing Collection set status in temp table...
    2015-03-24 14:16:01.33 spid4s      Deleting cached auto-generated T-SQL Data Collection packages from msdb...
    2015-03-24 14:16:01.33 spid4s      End of DC pre-upgrade steps.
    2015-03-24 14:16:01.33 spid4s      DAC pre-upgrade steps...
    2015-03-24 14:16:01.33 spid4s      Starting DAC pre-upgrade steps ...
    2015-03-24 14:16:01.33 spid4s      End of DAC pre-upgrade steps.
    2015-03-24 14:16:01.33 spid4s      ----------------------------------
    2015-03-24 14:16:01.33 spid4s      Starting execution of MSDB.SQL
    2015-03-24 14:16:01.33 spid4s      ----------------------------------
    2015-03-24 14:16:01.39 spid4s      Configuration option 'allow updates' changed from 0 to 1. Run the RECONFIGURE statement to install.
    2015-03-24 14:16:01.39 spid4s      Configuration option 'allow updates' changed from 0 to 1. Run the RECONFIGURE statement to install.
    2015-03-24 14:16:01.42 spid4s      Checking the size of MSDB...
    2015-03-24 14:16:01.60 spid4s      
    2015-03-24 14:16:01.60 spid4s      Setting database option TRUSTWORTHY to ON for database 'msdb'.
    2015-03-24 14:16:01.60 spid4s      Setting database option RECOVERY to SIMPLE for database 'msdb'.
    2015-03-24 14:16:01.63 spid4s      ----------------------------------
    2015-03-24 14:16:01.63 spid4s      Finished execution of MSDB.SQL
    2015-03-24 14:16:01.63 spid4s      ----------------------------------
    2015-03-24 14:16:01.63 spid4s      -----------------------------------------
    2015-03-24 14:16:01.63 spid4s      Starting execution of MSDB_VERSIONING.SQL
    2015-03-24 14:16:01.63 spid4s      -----------------------------------------
    2015-03-24 14:16:01.63 spid4s      -----------------------------------------
    2015-03-24 14:16:01.63 spid4s      Finished execution of MSDB_VERSIONING.SQL
    2015-03-24 14:16:01.63 spid4s      -----------------------------------------
    2015-03-24 14:16:01.63 spid4s      Dropping view MSdatatype_mappings...
    2015-03-24 14:16:01.63 spid4s      Dropping view sysdatatypemappings...
    2015-03-24 14:16:30.94 spid4s      Dropping table MSdbms_datatype_mapping...
    2015-03-24 14:16:30.95 spid4s      Dropping table MSdbms_map...
    2015-03-24 14:16:30.96 spid4s      Dropping table MSdbms_datatype...
    2015-03-24 14:16:30.96 spid4s      Dropping table MSdbms...
    2015-03-24 14:16:30.99 spid4s      Creating table MSdbms
    2015-03-24 14:16:31.00 spid4s      Creating table MSdbms_datatype
    2015-03-24 14:17:30.96 spid4s      Creating table MSdbms_map
    2015-03-24 14:17:30.96 spid4s      Creating table MSdbms_datatype_mapping
    2015-03-24 14:17:30.97 spid4s      Definining default datatype mappings
    2015-03-24 14:17:30.98 spid4s      Creating datatype mappings for MSSQLSERVER to ORACLE8
    2015-03-24 14:17:31.08 spid4s      Creating datatype mappings for MSSQLSERVER to ORACLE9
    2015-03-24 14:17:31.12 spid4s      Creating datatype mappings for MSSQLSERVER to ORACLE10
    2015-03-24 14:17:31.17 spid4s      Creating datatype mappings for MSSQLSERVER to ORACLE11
    2015-03-24 14:17:31.22 spid4s      Creating datatype mappings for MSSQLSERVER to DB2
    2015-03-24 14:17:31.28 spid4s      Creating datatype mappings for MSSQLSERVER to SYBASE
    2015-03-24 14:17:31.33 spid4s      Creating datatype mappings for ORACLE8 to MSSQLSERVER
    2015-03-24 14:17:31.38 spid4s      Creating datatype mappings for ORACLE9 to MSSQLSERVER
    2015-03-24 14:17:31.45 spid4s      Creating datatype mappings for ORACLE10 to MSSQLServer
    2015-03-24 14:17:50.00 spid4s      Creating datatype mappings for ORACLE11 to MSSQLServer
    2015-03-24 14:17:59.30 spid4s      Creating view MSdatatype_mappings
    2015-03-24 14:17:59.31 spid4s      Creating view sysdatatypemappings
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_enum_proxy_for_subsystem
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_enum_login_for_proxy
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sysmail_delete_mailitems_sp
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_sqlagent_get_startup_info
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_sqlagent_has_server_access
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_sqlagent_get_perf_counters
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_sqlagent_notify
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sysmail_delete_log_sp
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_is_sqlagent_starting
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_verify_job_identifiers
    2015-03-24 14:17:59.89 spid4s      Dropping signature from: sp_verify_schedule_identifiers
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_jobproc_caller
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_downloaded_row_limiter
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_post_msx_operation
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_performance_condition
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_job_date
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_job_time
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_verify_alert
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_update_alert
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_delete_job_references
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_delete_all_msx_jobs
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_verify_accountparams_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_generate_target_server_job_assignment_sql
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_generate_server_description
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_verify_principal_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_msx_set_account
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_verify_profile_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_msx_get_account
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_verify_account_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_delete_operator
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_add_profile_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_msx_defect
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sysmail_update_profile_sp
    2015-03-24 14:17:59.90 spid4s      Dropping signature from: sp_msx_enlist
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_delete_profile_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_delete_targetserver
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_help_profile_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_enlist_tsx
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_create_user_credential_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_get_sqlagent_properties
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_alter_user_credential_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_set_sqlagent_properties
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_drop_user_credential_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_add_targetservergroup
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_add_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_update_targetservergroup
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_update_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_delete_targetservergroup
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_delete_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_help_targetservergroup
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_help_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_add_targetsvrgrp_member
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_help_admin_account_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_delete_targetsvrgrp_member
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_add_profileaccount_sp
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sp_verify_category
    2015-03-24 14:17:59.91 spid4s      Dropping signature from: sysmail_update_profileaccount_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_add_category
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_delete_profileaccount_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_update_category
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_help_profileaccount_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_delete_category
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_configure_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_category
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_help_configure_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_targetserver
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_help_configure_value_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_resync_targetserver
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_add_principalprofile_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_purge_jobhistory
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_update_principalprofile_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_jobhistory_full
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_delete_principalprofile_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_jobhistory_summary
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_help_principalprofile_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_help_jobhistory
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_logmailevent_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_add_jobserver
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sysmail_start_sp
    2015-03-24 14:17:59.92 spid4s      Dropping signature from: sp_delete_jobserver
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sysmail_stop_sp
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_help_jobserver
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sysmail_help_status_sp
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_help_downloadlist
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sysmail_help_queue_sp
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_enum_sqlagent_subsystems_internal
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_SendMailMessage
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_enum_sqlagent_subsystems
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_isprohibited
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_verify_subsystem
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_SendMailQueues
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_verify_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_ProcessResponse
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_add_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_MailItemResultSets
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_attach_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_process_DialogTimer
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_detach_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_readrequest
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_update_replication_job_parameter
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_GetAttachmentData
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_update_schedule
    2015-03-24 14:17:59.93 spid4s      Dropping signature from: sp_RunMailQuery
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_delete_schedule
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_validate_user
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_get_jobstep_db_username
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_send_dbmail
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_verify_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_ExternalMailQueueListener
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_add_jobstep_internal
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_sysmail_activate
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_add_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_update_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_delete_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_help_jobstep
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_write_sysjobstep_log
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_delete_log
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_help_jobsteplog
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_delete_subplan
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_delete_jobsteplog
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_update_subplan_tsx
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_get_schedule_description
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_subplans_by_job
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_add_jobschedule
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_maintplan_open_logentry
    2015-03-24 14:17:59.94 spid4s      Dropping signature from: sp_update_jobschedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_close_logentry
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_delete_jobschedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_update_log
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_schedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_update_subplan
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_jobschedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_delete_plan
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_verify_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_maintplan_start
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_add_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_get_script
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_update_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_clear_dbmaintplan_by_db
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_delete_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_add_maintenance_plan
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_get_composite_job_info
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_delete_maintenance_plan
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_job
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_add_maintenance_plan_db
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_jobcount
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_delete_maintenance_plan_db
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_help_jobs_in_schedule
    2015-03-24 14:17:59.95 spid4s      Dropping signature from: sp_add_maintenance_plan_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_manage_jobs_by_login
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_delete_maintenance_plan_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_apply_job_to_targets
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_help_maintenance_plan
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_remove_job_from_targets
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_get_job_alerts
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_start_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_stop_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_add_log_shipping_monitor_jobs
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_cycle_agent_errorlog
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_add_log_shipping_primary
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_get_chunked_jobstep_params
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_add_log_shipping_secondary
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_check_for_owned_jobs
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_delete_log_shipping_monitor_jobs
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_check_for_owned_jobsteps
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_delete_log_shipping_primary
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_sqlagent_refresh_job
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_delete_log_shipping_secondary
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_jobhistory_row_limiter
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_log_shipping_in_sync
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_sqlagent_log_jobhistory
    2015-03-24 14:17:59.96 spid4s      Dropping signature from: sp_log_shipping_get_date_from_file
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_sqlagent_check_msx_version
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_get_log_shipping_monitor_info
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_sqlagent_probe_msx
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_update_log_shipping_monitor_info
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_set_local_time
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_delete_log_shipping_monitor_info
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_multi_server_job_summary
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_remove_log_shipping_monitor_account
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_target_server_summary
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_log_shipping_monitor_backup
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_uniquetaskname
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_log_shipping_monitor_restore
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_addtask
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_change_monitor_role
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_droptask
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_create_log_shipping_monitor_account
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: trig_targetserver_insert
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_add_alert_internal
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_ssis_addlogentry
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_add_alert
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_ssis_listpackages
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_delete_alert
    2015-03-24 14:17:59.97 spid4s      Dropping signature from: sp_ssis_listfolders
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_help_alert
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_deletepackage
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_deletefolder
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_add_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_sqlagent_is_srvrolemember
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_getpackage
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_update_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_category_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_getfolder
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_help_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_putpackage
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_help_operator_jobs
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_proxy_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_operator_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_credential_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_addfolder
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_notify_operator
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_subsystems
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_renamefolder
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_notification
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_verify_subsystem_identifiers
    2015-03-24 14:17:59.98 spid4s      Dropping signature from: sp_ssis_setpackageroles
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_add_notification
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_verify_login_identifiers
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_ssis_getpackageroles
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_update_notification
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_verify_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_delete_notification
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_add_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_help_notification
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_delete_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_help_jobactivity
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_update_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_sqlagent_is_member
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_verify_proxy_permissions
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_sem_add_message
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_help_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_sem_drop_message
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_get_message_description
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_grant_proxy_to_subsystem
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_help_jobhistory_sem
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_grant_login_to_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_convert_jobid_to_char
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_revoke_login_from_proxy
    2015-03-24 14:17:59.99 spid4s      Dropping signature from: sp_revoke_proxy_from_subsystem

  • Update error of SQL Server 2012 enterprise running on Windows server 2008 standard SP2 (32 bits)

    Hi there;
    I have a windows server 2008 SP2 (32bits) in which I have an instance of SQL Server
    2008 and another of 2012.
    My Windows server 2008 installed the following updates; (see below).
    (KB2898858),(KB2909921),(KB890830),(KB2898869),(KB2911502),(KB2901126),
    (KB2916036),(KB2862973),(KB2901113)
    After the machine was re-started, I was not abble to connect
    to the instance of SQL Server 2012.  I am able
    to connect to the instance of SQL Server 2008.
    The error message I get when I atemp to connect can be found
    at the end of the list of updates below.
    Do I need to uninstall an update? if so, which one and how do I do that?
    Thanks        Gabriel I. Ruiz
    Security Update for Microsoft .NET Framework 2.0 SP2 on Windows Vista SP2 and Windows Server 2008 SP2 x86 (KB2898858)
    Installation date: ‎2/‎12/‎2014 11:42 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/2898858
    Cumulative Security Update for Internet Explorer 9 for Windows Server 2008 (KB2909921)
    Installation date: ‎2/‎12/‎2014 11:42 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/2909921
    Windows Malicious Software Removal Tool - February 2014 (KB890830)
    Installation date: ‎2/‎12/‎2014 11:41 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/890830
    Security Update for Microsoft .NET Framework 4.5.1 on Windows 7, Windows Vista and Windows Server 2008 x86 (KB2898869)
    Installation date: ‎2/‎12/‎2014 11:40 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/2898869
    Security Update for Microsoft .NET Framework 2.0 SP2 on Windows Vista SP2 and Windows Server 2008 SP2 x86 (KB2911502)
    Installation date: ‎2/‎12/‎2014 11:36 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/2911502
    Security Update for Microsoft .NET Framework 4.5.1 on Windows 7, Windows Vista, and Windows Server 2008 x86 (KB2901126)
    Installation date: ‎2/‎12/‎2014 11:36 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/2901126
    Security Update for Windows Server 2008 (KB2916036)
    Installation date: ‎2/‎12/‎2014 11:34 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/2916036
    Security Update for Windows Server 2008 (KB2862973)
    Installation date: ‎2/‎12/‎2014 11:34 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/2862973
    Security Update for Microsoft .NET Framework 2.0 SP2 on Windows Vista SP2 and Windows Server 2008 SP2 x86 (KB2901113)
    Installation date: ‎2/‎12/‎2014 11:34 PM
    Installation status: Successful
    Update type: Important
    More information: 
    http://support.microsoft.com/kb/2901113
    ===================================
    Cannot connect to HAVANA\HAVANA_2012_1ST.
    ===================================
    The client was unable to establish a connection because of an error during connection initialization process before login. Possible causes include the following:  the client tried to connect to an unsupported version of SQL Server; the server was too busy
    to accept new connections; or there was a resource limitation (insufficient memory or maximum allowed connections) on the server. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&EvtSrc=MSSQLServer&EvtID=233&LinkId=20476
    Server Name: HAVANA\HAVANA_2012_1ST
    Error Number: 233
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParserStateObject.SNIWritePacket(SNIHandle handle, SNIPacket packet, UInt32& sniError, Boolean canAccumulate, Boolean callerHasConnectionLock)
       at System.Data.SqlClient.TdsParserStateObject.WriteSni(Boolean canAccumulate)
       at System.Data.SqlClient.TdsParserStateObject.WritePacket(Byte flushMode, Boolean canAccumulate)
       at System.Data.SqlClient.TdsParser.SendPreLoginHandshake(Byte[] instanceName, Boolean encrypt)
       at System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean ignoreSniOpenTimeout, TimeoutTimer timeout, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString connectionOptions, SqlCredential credential, TimeoutTimer
    timeout)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(TimeoutTimer timeout, SqlConnectionString connectionOptions, SqlCredential credential, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance,
    SqlConnectionString userConnectionOptions, SessionData reconnectSessionData)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
       at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerService.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()
    ===================================
    No process is on the other end of the pipe

    Hi,
    Check if SQL Server service is running fine. I doubt you may have changed the user account password used for SQL Server service. After restarting the machine, you also need to update the user account of SQL Server service in Configuration
    Manager. Re-type the user account name and password under Log on tab and see how it helps.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Installing IDES 6.07 disp+work.exe error. Parallels windows 7, SQL Server 2012

    Hi Experts,
    I am trying to install sap IDES ECC 6 EhP 7 from scratch. Everything was doing well but I got an error on starting instance. SAPMMC Console Process disp+work.EXE do not change from status: "Server in State STARTING" (Yellow). I have been searching and most of the problem is related to Kernel. I upgraded Kernel to the latest version: SAPEXEDB_101-20012221.SAR and SAPEXE_101-20012222.SAR. I also check my host file and set my IP address with my computer name. I check logs dev_disp and dev_w0 but I am not able to see the error. I am installing IDES into Virtual Machine, Windows 7, SQL Server 2012, 8 Gb memory.
    Best Regards.
    David C.
    dev_disp:
    trc file: "dev_disp", trc level: 2, release: "742"
    <<- SapSSLSetTraceFile()==SAP_O_K
    command line arg 0: C:\usr\sap\ECC\DVEBMGS00\exe\disp+work.EXE
    command line arg 1: pf=\\SAPIDESECC\sapmnt\ECC\SYS\profile\ECC_DVEBMGS00_SAPIDESECC
    sysno      00
    sid        ECC
    systemid  562 (PC with Windows NT)
    relno      7420
    patchlevel 0
    patchno    101
    intno      20020600
    make      multithreaded, Unicode, 64 bit, optimized
    profile    \\SAPIDESECC\sapmnt\ECC\SYS\profile\ECC_DVEBMGS00_SAPIDESECC
    pid        1724
    Wed May 02 19:14:50 2040
    kernel runs with dp version 224000(ext=117000) (@(#) DPLIB-INT-VERSION-224000-UC)
    length of sys_adm_ext is 500 bytes
    ***LOG Q00=> DpSapEnvInit, DPStart (00 1724) [dpInit.c    597]
    ShmProtect( 5, 3 )
    DpSapEnvInit: rscpInitDispatcher o.k.
    SigIInit: ok (whoami=1)
    Thread handle for mainthread created
    SigIRegisterRoutine: handler for signal SIGSEGV installed (SigISegv, flag 0)
    Pipe created: \\.\pipe\SAP1724
    SigIInit: Create Message Thread
    SigIRegisterExitRoutine: exithandler installed (DpSigExitHandler)
    SigIRegisterTerminateRoutine: terminatehandler installed (DpSigExitHandler)
      shared lib "dw_xml.dll" version 101 successfully loaded
      shared lib "dw_xtc.dll" version 101 successfully loaded
      shared lib "dw_stl.dll" version 101 successfully loaded
      shared lib "dw_gui.dll" version 101 successfully loaded
    Wed May 02 19:14:51 2040
      shared lib "dw_rndrt.dll" version 101 successfully loaded
      shared lib "dw_abp.dll" version 101 successfully loaded
    mshost: >SAPIDESECC<
    DpSetCancelStrat: set timeout/repetition 0/-1 at level 0
    DpSetCancelStrat: set timeout/repetition 5/-1 at level 1
    DpSetCancelStrat: set timeout/repetition -1/5 at level 2
    rdisp/softcancel_sequence :  -> 0,5,-5
    softcancel_sequence: >0,5,-5<
    use internal message server connection to port 3901
    msserv: >3901<
    dp_bufreftime: 120 sec
    dp_btctime: 0 sec
    dp_autoabaptime: 0 sec
    dp_bgrfc_watchdog_time: 300 sec
    dp_signal_handler_timeout: 300 sec
    dp_autothtime: 60 sec
    dp_autojavatime: 60 sec
    dp_autoccmstime: 60 sec
    dp_security_check_time: 60 sec
    max_dynamic_wp_alive_time: 300 sec
    dp_startup_time: 20
    dp_noptime: 0 sec
    dp_keepalive: 1200 sec
    dp_keepalive_timeout: 60 sec
    dp_ms_keepalive: 60 sec
    dp_ms_keepalive_timeout: 300 sec
    switch off dp-keep-alive for old temus
    dp_spoolalrm: 60 sec
    dp_softcancel_timeout: 5 sec
    rdisp/wp_restart_interval : 300 sec
    DpISetTrcLog: trc logging active, max size = 52428800 bytes
    rdisp/shutdown/load_balance_wait_time: 180 sec
    rdisp/shutdown/disable_login : 0
    rdisp/shutdown/auto_logout: 600 sec
    rdisp/shutdown/trigger_timeout: 180 sec
    rdisp/shutdown/idle_wp_timeout: 600 sec
    rdisp/shutdown/longrunner_timeout: 86400 sec
    rdisp/shutdown/j2ee_timeout: 60 sec
    rdisp/high_load_quota: (load / queue quota) = (90.000000 / 5.000000)
    rdisp/snapshot(CREATE): DP_CS_RESOURCES_EXHAUSTED
    Wed May 02 19:14:51 2040
    rdisp/snapshot(PERIOD):300 sec
    rdisp/snapshot(LINES):10000 lines
    DpSetAvoidTraceInSignalHandler: 0 -> 1
    DpCommonParamInit: rdisp/core_file_size = default --> no change
    NiSrvLGetServNo: got service name 'sapdp00' from operating system
    NiIGetServNo: servicename 'sapdp00' = port 3200
    NiSrvLGetServNo: got service name 'sapgw00' from operating system
    NiIGetServNo: servicename 'sapgw00' = port 3300
    NiMyHostName: hostname = 'SAPIDESECC'
    NiHLGetNodeAddr: got hostname 'SAPIDESECC' from operating system
    NiIGetNodeAddr: hostname 'SAPIDESECC' = addr 192.168.10.10
    NiHLGetHostName: found address 192.168.10.10 in cache
    NiIGetHostName: addr 192.168.10.10 = hostname 'SAPIDESECC' (fq)
    NiHLGetNodeAddr: hostname 'www.doesnotexist0107.qqq.nxst' not found by operating system
    Wed May 02 19:15:00 2040
    NiHLGetHostName: address 1.0.0.1 not found by operating system
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 9 seconds
    NiSrvLGetServNo: got service name 'http' from operating system
    NiIGetServNo: servicename 'http' = port 80
    NiSrvLGetServName: port 8080 not found by operating system
    NiSrvLGetServName: port 64555 not found by operating system
    NiSrvLGetServNo: service name 'sapdp9988' not found by operating system
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5088]
    SigIRegisterRoutine: handler for signal 16 installed (DpTrcOnOff, flag 0)
    SigIRegisterRoutine: handler for signal 17 installed (DpTrcOnOff, flag 0)
    SigIRegisterRoutine: alarm handler installed (DpSigAlrm)
    SigIRegisterRoutine: handler for signal SIGINT installed (DpSigInt, flag 0)
    SigIRegisterRoutine: handler for signal SIGTERM installed (DpSigInt, flag 0)
    SigIRegisterRoutine: handler for signal 3 installed (DpSigQuit, flag 0)
    MtxInit: 30000 0 0
    DpInitMtx: MtxInit o.k.
    PPID environment not found
    Thread handle for mainthread created
    SigIRegisterRoutine: handler for signal 19 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 18 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 24 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 0 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 21 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal SIGABRT installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 23 installed (DpSigPrivDisp, flag 0)
    SigIRegisterRoutine: handler for signal 25 installed (DpSigPrivDisp, flag 0)
    disp service: sapdp00
    NiMyHostName: hostname = 'SAPIDESECC'
    ShmProtect( 1, 3 )
    DpSysAdmExtCreate: created and initialized sys_adm_ext
    DpSysAdmExtCreate: SHM_SYS_ADM_KEY (addr: 00000000022B0050, size: 500)
    DpSysAdmExtCreate: SemInMgt o.k.
    DpIPCInit2: whoami=1
    disp service: sapdp00
    myname: SAPIDESECC_ECC_00                  
    vbname:                                  
    vb2name:                                  
    max_comm_entries: 1000
    Wed May 02 19:15:00 2040
    amc_rec_max_no: 400
    websockets_max_no: 100
    tm_max_no: 200
    wp_ca_blk_no: 6000
    wp_no_dia: 10
    wp_no_vb: 1
    wp_no_vb2: 1
    wp_no_enq: 0
    wp_no_btc: 3
    wp_no_spo: 1
    wp_no_restricted: 0
    wp_max_no: 21
    wp_no_dynamic: 5
    configurable_wp_no: 16
    wall_entry_max_no: 200
    addump_period: 0
    max_sleep: 20
    max_hold_time: 60 sec
    max_priv_time: 0 sec
    max_vm_debug_attach_time: 60 sec
    max_vm_sgc_lazy_time: 600 sec
    max_vm_forced_sgc_time: 10 sec
    max_debug_lazy_time: 600 sec
    max_debug_attach_time: 30 sec
    max_snc_hold_time: 120 sec
    em_blocksize_KB: 4096
    em_initial_size_MB: 5734
    em_max_size_MB: 12287
    em_address_space_MB: 5734
    start_icman: 1
    rm_max_tbl_size: 1000
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    RqQInit: Init with maxQueues=3448, maxRequests=14000, maxWorker=21, singlethreaded process
    ShmProtect( 21, 3 )
    RqQInit: use events to trigger worker
    NiHLGetNodeAddr: got hostname 'localhost' from operating system
    NiIGetNodeAddr: hostname 'localhost' = addr 127.0.0.1
    RqQInit: created shared memory
    RqQInit: o.k.
    RqQSetMtxStatistic: switch off mutex statistic
    Wed May 02 19:15:00 2040
    RqQSetWakeupHandling: handle wakups outside queue lookup
    DpRqSetMultithreadedProcess: inside a singlethreaded process
    DpIPCInit2: start server >SAPIDESECC_ECC_00                      <
    DpShMCreate: alloate/attach shared memory (mode=CREATE)
    DpShMCreate: sizeof(wp_adm) 23360 (1112)
    DpShMCreate: sizeof(tm_adm) 13098768 (65168)
    DpShMCreate: sizeof(ca_adm) 432000 (72)
    DpCommTableSize: max/headSize/ftSize/tableSize=1000/16/3664064/3869152
    DpShMCreate: sizeof(comm_adm) 3869152 (3648)
    DpSlockTableSize: calculate slock table size from vmc state (not active)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (296)
    DpReadFileParams: calculate file table size from vm number (0)
    max_file_entries: 0
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpSockTableSize: max/headSize/ftSize/tableSize=1000/16/1040064/1040080
    DpShMCreate: sizeof(sock_adm) 1040080 (1016)
    DpShMCreate: sizeof(vmc_adm) 0 (3208)
    DpShMCreate: sizeof(wall_adm) (ft=41664/fi=67472/hd=64/rec=192)
    DpShMCreate: sizeof(amc_rec_adm) (ft=172864/fi=101872/hd=64/rec=416)
    DpShMCreate: sizeof(websocket_adm) (ft=28864/hd=64/rec=272)
    DpShMCreate: sizeof(gw_adm) 64
    DpShMCreate: sizeof(j2ee_adm) 3936
    ShmProtect( 2, 3 )
    DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000FD20050, size: 18986576
    sizeof(ca) 208896000 (34816)
    ShmProtect( 3, 3 )
    SHM_DP_CA_KEY (addr: 0000000010F40050, size: 208896000)
    DpShMCreate: Initialized eye before sys_adm with len 512 at 000000000FD20050
    DpShMCreate: allocated sys_adm at 000000000FD20250
    DpShMCreate: Initialized eye before wp_adm_list with len 512 at 000000000FD31F40
    DpShMCreate: allocated wp_adm_list at 000000000FD32140
    DpShMCreate: Initialized eye before wp_adm with len 512 at 000000000FD32260
    DpShMCreate: allocated wp_adm at 000000000FD32460
    DpShMCreate: Initialized eye before tm_adm_list with len 512 at 000000000FD37FA0
    DpShMCreate: allocated tm_adm_list at 000000000FD381A0
    DpShMCreate: Initialized eye before tm_adm with len 512 at 000000000FD381E0
    DpShMCreate: allocated tm_adm at 000000000FD383E0
    DpShMCreate: Initialized eye before ca_adm with len 512 at 00000000109B62F0
    Wed May 02 19:15:00 2040
    DpShMCreate: allocated ca_adm at 00000000109B64F0
    DpShMCreate: Initialized eye before comm_adm with len 512 at 0000000010A1FC70
    DpShMCreate: allocated comm_adm at 0000000010A1FE70
    DpShMCreate: system runs without slock table
    DpShMCreate: Initialized eye before sock_adm with len 512 at 0000000010DD0850
    DpShMCreate: allocated sock_adm at  0000000010DD0A50
    DpShMCreate: Initialized eye before vmc_adm_list with len 512 at 0000000010ECE920
    DpShMCreate: allocated vmc_adm_list at 0000000010ECEB20
    DpShMCreate: system runs without VMC
    DpShMCreate: Initialized eye before gw_adm with len 512 at 0000000010ECEBC0
    DpShMCreate: allocated gw_adm at 0000000010ECEDC0
    DpShMCreate: Initialized eye before j2ee_adm with len 512 at 0000000010ECEE00
    DpShMCreate: allocated j2ee_adm at 0000000010ECF000
    DpShMCreate: Initialized eye before ca_info with len 512 at 0000000010ECFF60
    DpShMCreate: allocated ca_info at 0000000010ED0160
    DpShMCreate: Initialized eye before wall_adm_ft with len 512 at 0000000010ED01A0
    DpShMCreate: allocated wall_adm (ft) at 0000000010ED03A0
    DpShMCreate: Initialized eye before wall_adm_fi with len 512 at 0000000010EDA660
    DpShMCreate: allocated wall_adm (fi) at 0000000010EDA860
    DpShMCreate: Initialized eye before wall_adm_head with len 512 at 0000000010EEAFF0
    DpShMCreate: allocated wall_adm (head) at 0000000010EEB1F0
    DpShMCreate: Initialized eye before amc_rec_adm_ft with len 512 at 0000000010EEB230
    DpShMCreate: allocated amc_rec_adm (ft) at 0000000010EEB430
    DpShMCreate: Initialized eye before amc_rec_adm_fi with len 512 at 0000000010F15770
    DpShMCreate: allocated amc_rec_adm (fi) at 0000000010F15970
    DpShMCreate: Initialized eye before amc_rec_adm_head with len 512 at 0000000010F2E760
    DpShMCreate: allocated amc_rec_adm (head) at 0000000010F2E960
    DpShMCreate: Initialized eye before websocket_adm_ft with len 512 at 0000000010F2E9A0
    DpShMCreate: allocated websocket_adm (ft) at 0000000010F2EBA0
    DpShMCreate: Initialized eye before websocket_adm_head with len 512 at 0000000010F35C60
    DpShMCreate: allocated websocket_adm (head) at 0000000010F35E60
    DpShMCreate: Initialized eye after websocket_adm_head with len 512 at 0000000010F35EA0
    DpShMCreate: initialized 21 eyes
    SEM_COMM_ADM_KEY SemInit o.k.
    SEM_STAT_KEY SemInit o.k.
    ShmProtect( 52, 3 )
    DpMBufCreate allocated 138384 bytes for 500 entries
    DpSBufCreate allocated 41200 bytes for 100 entries
    SEM_MSBUF SemInit o.k.
    DpSysAdmIntInit: initialize sys_adm
    Wed May 02 19:15:00 2040
    DpSysAdmIntInit: initialized sys_adm
    DpSysAdmIntInit: SemInMgt o.k.
    DpSysAdmIntInit: SEM_TM_ADM_KEY SemInit o.k.
    shutdown/max_time: 3600 sec
    RqQQueueCreate: Created queue <DispatcherQueue> in slot 0 (10000) with normal priority
    RqQQueueAcquire: Acquire queue <DispatcherQueue> in slot 0
    DpSysAdmIntInit: created queue 0 (DispatcherQueue)
    RqQQueueCreate: Created queue <GatewayQueue> in slot 1 (10001) with normal priority
    RqQQueueAcquire: Acquire queue <GatewayQueue> in slot 1
    DpSysAdmIntInit: created queue 1 (GatewayQueue)
    RqQQueueCreate: Created queue <IcmanQueue> in slot 2 (10002) with normal priority
    RqQQueueAcquire: Acquire queue <IcmanQueue> in slot 2
    DpSysAdmIntInit: created queue 2 (IcmanQueue)
    RqQQueueCreate: Created queue <StartServiceQueue> in slot 3 (10003) with normal priority
    RqQQueueAcquire: Acquire queue <StartServiceQueue> in slot 3
    DpSysAdmIntInit: created queue 3 (StartServiceQueue)
    RqQQueueCreate: Created queue <DpMonQueue> in slot 4 (10004) with normal priority
    RqQQueueAcquire: Acquire queue <DpMonQueue> in slot 4
    DpSysAdmIntInit: created queue 4 (DpMonQueue)
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_TYPE_UNDEF,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_RFC_UI) = high priority
    Wed May 02 19:15:00 2040
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_GUI,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_SYNC_RFC) = normal priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_ASYNC_RFC) = normal priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_RFC,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_HTTP_NORMAL) = normal priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_BGRFC_SCHEDULER) = high priority
    Wed May 02 19:15:00 2040
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_PLUGIN,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_BATCH) = low priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_APC_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_ENQ) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_INTERNAL,DP_LOGON_UPDATE) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_SUB_TYPE_UNDEF) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_SYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_ASYNC_RFC) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_RFC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_HTTP_NORMAL) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_HTTP_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_HTTP_ITS) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_SMTP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_BATCH) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_BGRFC_SCHEDULER) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_BGRFC_UNIT) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_APC_NORMAL) = normal priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_APC_UI) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_AMC_STREAMING) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_SERVER_STARTUP) = high priority
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_ENQ) = high priority
    Wed May 02 19:15:00 2040
    DpSysAdmIntInit: prio(DP_LOGON_APC,DP_LOGON_UPDATE) = high priority
    DpSetSchedulerParam: set rdisp/scheduler/timeslice_millis
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_low/max_runtime
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_low/max_quota
    DpMaxQuotaExplicitlySet: return -1
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_normal/max_runtime
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_normal/max_quota
    DpMaxQuotaExplicitlySet: return -1
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/prio_high/max_runtime
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    DpSetSchedulerParam: set rdisp/scheduler/test/reschedule_always
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    gui_auto_logout: 0 sec
    plugin_auto_logout: 1800 sec
    rejectSoftcancelInPrivMode: 1
    DpSetCpicStreaming: cpicStreamingActive is 1
    DpVmcReadBasicStateFromProfile: vmc state is DP_VMC_NOT_ACTIVE
    task_limit: 1000
    websocket_deletion_timeout: 0
    websocket_open_message_limit: 500
    websocket_receive_threshold: 10
    resource_limit: 95 %
    DpMaxWpRuntimeExplicitelySet: return -1
    DpMaxQuotaExplicitlySet: return -1
    Scheduler info
    WP info
      #dia    = 10
    Wed May 02 19:15:00 2040
      #btc    = 0
      #standby = 0
      #max    = 21
    General Scheduler info
      preemptionInfo.isActive          = true
      preemptionInfo.timeslice          = 500
      preemptionInfo.checkLoad          = true
    Prio Class High
      maxRuntime[RQ_Q_PRIO_HIGH]    = 600 sec
      maxRuntimeHalf[RQ_Q_PRIO_HIGH] = 300 sec
    Prio Class Normal
      maxRuntime[RQ_Q_PRIO_NORMAL]          = 3600 sec
      maxRuntimeHalf[RQ_Q_PRIO_NORMAL]      = 1800 sec
      maxTicketsForPrio[RQ_Q_PRIO_NORMAL]    = 8
      withPrioTickets[RQ_Q_PRIO_NORMAL]      = true
    Prio Class Low
      maxRuntime[RQ_Q_PRIO_LOW]          = infinite
      maxRuntimeHalf[RQ_Q_PRIO_LOW]      = infinite
      maxTicketsForPrio[RQ_Q_PRIO_LOW]    = 8
      withPrioTickets[RQ_Q_PRIO_LOW]      = true
    Running requests[RQ_Q_PRIO_NORMAL] = 0
    Running requests[RQ_Q_PRIO_LOW] = 0
    DpCommAttachTable: attached comm table (header=0000000010A1FE70/ft=0000000010A1FE80/fi=0000000010D9E740)
    DpSockAttachTable: attached sock table (header=0000000010DD0A50/ft=0000000010DD0A60)
    DpAmcRecTabInit: initialized table for 400 entries
    DpWebSocketTabInit: initialized table for 100 entries
    DpBasicEyesCheck: eyes of group DP-MEM-SEGMENTS o.k. (21 eyes checked)
    DpShMInit: initialize tm_adm
    DpITmSlotClear: cleared T0_U65535
    DpITmSlotClear: cleared T1_U65535
    DpITmSlotClear: cleared T2_U65535
    DpITmSlotClear: cleared T3_U65535
    DpITmSlotClear: cleared T4_U65535
    DpITmSlotClear: cleared T5_U65535
    DpITmSlotClear: cleared T6_U65535
    DpITmSlotClear: cleared T7_U65535
    DpITmSlotClear: cleared T8_U65535
    DpITmSlotClear: cleared T9_U65535
    DpITmSlotClear: cleared T10_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T11_U65535
    DpITmSlotClear: cleared T12_U65535
    DpITmSlotClear: cleared T13_U65535
    DpITmSlotClear: cleared T14_U65535
    DpITmSlotClear: cleared T15_U65535
    DpITmSlotClear: cleared T16_U65535
    DpITmSlotClear: cleared T17_U65535
    DpITmSlotClear: cleared T18_U65535
    DpITmSlotClear: cleared T19_U65535
    DpITmSlotClear: cleared T20_U65535
    DpITmSlotClear: cleared T21_U65535
    DpITmSlotClear: cleared T22_U65535
    DpITmSlotClear: cleared T23_U65535
    DpITmSlotClear: cleared T24_U65535
    DpITmSlotClear: cleared T25_U65535
    DpITmSlotClear: cleared T26_U65535
    DpITmSlotClear: cleared T27_U65535
    DpITmSlotClear: cleared T28_U65535
    DpITmSlotClear: cleared T29_U65535
    DpITmSlotClear: cleared T30_U65535
    DpITmSlotClear: cleared T31_U65535
    DpITmSlotClear: cleared T32_U65535
    DpITmSlotClear: cleared T33_U65535
    DpITmSlotClear: cleared T34_U65535
    DpITmSlotClear: cleared T35_U65535
    DpITmSlotClear: cleared T36_U65535
    DpITmSlotClear: cleared T37_U65535
    DpITmSlotClear: cleared T38_U65535
    DpITmSlotClear: cleared T39_U65535
    DpITmSlotClear: cleared T40_U65535
    DpITmSlotClear: cleared T41_U65535
    DpITmSlotClear: cleared T42_U65535
    DpITmSlotClear: cleared T43_U65535
    DpITmSlotClear: cleared T44_U65535
    DpITmSlotClear: cleared T45_U65535
    DpITmSlotClear: cleared T46_U65535
    DpITmSlotClear: cleared T47_U65535
    DpITmSlotClear: cleared T48_U65535
    DpITmSlotClear: cleared T49_U65535
    DpITmSlotClear: cleared T50_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T51_U65535
    DpITmSlotClear: cleared T52_U65535
    DpITmSlotClear: cleared T53_U65535
    DpITmSlotClear: cleared T54_U65535
    DpITmSlotClear: cleared T55_U65535
    DpITmSlotClear: cleared T56_U65535
    DpITmSlotClear: cleared T57_U65535
    DpITmSlotClear: cleared T58_U65535
    DpITmSlotClear: cleared T59_U65535
    DpITmSlotClear: cleared T60_U65535
    DpITmSlotClear: cleared T61_U65535
    DpITmSlotClear: cleared T62_U65535
    DpITmSlotClear: cleared T63_U65535
    DpITmSlotClear: cleared T64_U65535
    DpITmSlotClear: cleared T65_U65535
    DpITmSlotClear: cleared T66_U65535
    DpITmSlotClear: cleared T67_U65535
    DpITmSlotClear: cleared T68_U65535
    DpITmSlotClear: cleared T69_U65535
    DpITmSlotClear: cleared T70_U65535
    DpITmSlotClear: cleared T71_U65535
    DpITmSlotClear: cleared T72_U65535
    DpITmSlotClear: cleared T73_U65535
    DpITmSlotClear: cleared T74_U65535
    DpITmSlotClear: cleared T75_U65535
    DpITmSlotClear: cleared T76_U65535
    DpITmSlotClear: cleared T77_U65535
    DpITmSlotClear: cleared T78_U65535
    DpITmSlotClear: cleared T79_U65535
    DpITmSlotClear: cleared T80_U65535
    DpITmSlotClear: cleared T81_U65535
    DpITmSlotClear: cleared T82_U65535
    DpITmSlotClear: cleared T83_U65535
    DpITmSlotClear: cleared T84_U65535
    DpITmSlotClear: cleared T85_U65535
    DpITmSlotClear: cleared T86_U65535
    DpITmSlotClear: cleared T87_U65535
    DpITmSlotClear: cleared T88_U65535
    DpITmSlotClear: cleared T89_U65535
    DpITmSlotClear: cleared T90_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T91_U65535
    DpITmSlotClear: cleared T92_U65535
    DpITmSlotClear: cleared T93_U65535
    DpITmSlotClear: cleared T94_U65535
    DpITmSlotClear: cleared T95_U65535
    DpITmSlotClear: cleared T96_U65535
    DpITmSlotClear: cleared T97_U65535
    DpITmSlotClear: cleared T98_U65535
    DpITmSlotClear: cleared T99_U65535
    DpITmSlotClear: cleared T100_U65535
    DpITmSlotClear: cleared T101_U65535
    DpITmSlotClear: cleared T102_U65535
    DpITmSlotClear: cleared T103_U65535
    DpITmSlotClear: cleared T104_U65535
    DpITmSlotClear: cleared T105_U65535
    DpITmSlotClear: cleared T106_U65535
    DpITmSlotClear: cleared T107_U65535
    DpITmSlotClear: cleared T108_U65535
    DpITmSlotClear: cleared T109_U65535
    DpITmSlotClear: cleared T110_U65535
    DpITmSlotClear: cleared T111_U65535
    DpITmSlotClear: cleared T112_U65535
    DpITmSlotClear: cleared T113_U65535
    DpITmSlotClear: cleared T114_U65535
    DpITmSlotClear: cleared T115_U65535
    DpITmSlotClear: cleared T116_U65535
    DpITmSlotClear: cleared T117_U65535
    DpITmSlotClear: cleared T118_U65535
    DpITmSlotClear: cleared T119_U65535
    DpITmSlotClear: cleared T120_U65535
    DpITmSlotClear: cleared T121_U65535
    DpITmSlotClear: cleared T122_U65535
    DpITmSlotClear: cleared T123_U65535
    DpITmSlotClear: cleared T124_U65535
    DpITmSlotClear: cleared T125_U65535
    DpITmSlotClear: cleared T126_U65535
    DpITmSlotClear: cleared T127_U65535
    DpITmSlotClear: cleared T128_U65535
    DpITmSlotClear: cleared T129_U65535
    DpITmSlotClear: cleared T130_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T131_U65535
    DpITmSlotClear: cleared T132_U65535
    DpITmSlotClear: cleared T133_U65535
    DpITmSlotClear: cleared T134_U65535
    DpITmSlotClear: cleared T135_U65535
    DpITmSlotClear: cleared T136_U65535
    DpITmSlotClear: cleared T137_U65535
    DpITmSlotClear: cleared T138_U65535
    DpITmSlotClear: cleared T139_U65535
    DpITmSlotClear: cleared T140_U65535
    DpITmSlotClear: cleared T141_U65535
    DpITmSlotClear: cleared T142_U65535
    DpITmSlotClear: cleared T143_U65535
    DpITmSlotClear: cleared T144_U65535
    DpITmSlotClear: cleared T145_U65535
    DpITmSlotClear: cleared T146_U65535
    DpITmSlotClear: cleared T147_U65535
    DpITmSlotClear: cleared T148_U65535
    DpITmSlotClear: cleared T149_U65535
    DpITmSlotClear: cleared T150_U65535
    DpITmSlotClear: cleared T151_U65535
    DpITmSlotClear: cleared T152_U65535
    DpITmSlotClear: cleared T153_U65535
    DpITmSlotClear: cleared T154_U65535
    DpITmSlotClear: cleared T155_U65535
    DpITmSlotClear: cleared T156_U65535
    DpITmSlotClear: cleared T157_U65535
    DpITmSlotClear: cleared T158_U65535
    DpITmSlotClear: cleared T159_U65535
    DpITmSlotClear: cleared T160_U65535
    DpITmSlotClear: cleared T161_U65535
    DpITmSlotClear: cleared T162_U65535
    DpITmSlotClear: cleared T163_U65535
    DpITmSlotClear: cleared T164_U65535
    DpITmSlotClear: cleared T165_U65535
    DpITmSlotClear: cleared T166_U65535
    DpITmSlotClear: cleared T167_U65535
    DpITmSlotClear: cleared T168_U65535
    DpITmSlotClear: cleared T169_U65535
    DpITmSlotClear: cleared T170_U65535
    Wed May 02 19:15:00 2040
    DpITmSlotClear: cleared T171_U65535
    DpITmSlotClear: cleared T172_U65535
    DpITmSlotClear: cleared T173_U65535
    DpITmSlotClear: cleared T174_U65535
    DpITmSlotClear: cleared T175_U65535
    DpITmSlotClear: cleared T176_U65535
    DpITmSlotClear: cleared T177_U65535
    DpITmSlotClear: cleared T178_U65535
    DpITmSlotClear: cleared T179_U65535
    DpITmSlotClear: cleared T180_U65535
    DpITmSlotClear: cleared T181_U65535
    DpITmSlotClear: cleared T182_U65535
    DpITmSlotClear: cleared T183_U65535
    DpITmSlotClear: cleared T184_U65535
    DpITmSlotClear: cleared T185_U65535
    DpITmSlotClear: cleared T186_U65535
    DpITmSlotClear: cleared T187_U65535
    DpITmSlotClear: cleared T188_U65535
    DpITmSlotClear: cleared T189_U65535
    DpITmSlotClear: cleared T190_U65535
    DpITmSlotClear: cleared T191_U65535
    DpITmSlotClear: cleared T192_U65535
    DpITmSlotClear: cleared T193_U65535
    DpITmSlotClear: cleared T194_U65535
    DpITmSlotClear: cleared T195_U65535
    DpITmSlotClear: cleared T196_U65535
    DpITmSlotClear: cleared T197_U65535
    DpITmSlotClear: cleared T198_U65535
    DpITmSlotClear: cleared T199_U65535
    DpITmSlotClear: cleared T200_U65535
    DpShMInit: 200 elems in tmadm_free_list
    DpShMInit: initialize wp_adm
    RqQQueueCreate: Created queue <W0> in slot 5 (10005) with normal priority
    RqQQueueAcquire: Acquire queue <W0> in slot 5
    RqQQueueCreate: Created queue <W1> in slot 6 (10006) with normal priority
    RqQQueueAcquire: Acquire queue <W1> in slot 6
    RqQQueueCreate: Created queue <W2> in slot 7 (10007) with normal priority
    RqQQueueAcquire: Acquire queue <W2> in slot 7
    RqQQueueCreate: Created queue <W3> in slot 8 (10008) with normal priority
    RqQQueueAcquire: Acquire queue <W3> in slot 8
    Wed May 02 19:15:00 2040
    RqQQueueCreate: Created queue <W4> in slot 9 (10009) with normal priority
    RqQQueueAcquire: Acquire queue <W4> in slot 9
    RqQQueueCreate: Created queue <W5> in slot 10 (10010) with normal priority
    RqQQueueAcquire: Acquire queue <W5> in slot 10
    RqQQueueCreate: Created queue <W6> in slot 11 (10011) with normal priority
    RqQQueueAcquire: Acquire queue <W6> in slot 11
    RqQQueueCreate: Created queue <W7> in slot 12 (10012) with normal priority
    RqQQueueAcquire: Acquire queue <W7> in slot 12
    RqQQueueCreate: Created queue <W8> in slot 13 (10013) with normal priority
    RqQQueueAcquire: Acquire queue <W8> in slot 13
    RqQQueueCreate: Created queue <W9> in slot 14 (10014) with normal priority
    RqQQueueAcquire: Acquire queue <W9> in slot 14
    RqQQueueCreate: Created queue <W10> in slot 15 (10015) with normal priority
    RqQQueueAcquire: Acquire queue <W10> in slot 15
    RqQQueueCreate: Created queue <W11> in slot 16 (10016) with normal priority
    RqQQueueAcquire: Acquire queue <W11> in slot 16
    RqQQueueCreate: Created queue <W12> in slot 17 (10017) with normal priority
    RqQQueueAcquire: Acquire queue <W12> in slot 17
    RqQQueueCreate: Created queue <W13> in slot 18 (10018) with normal priority
    RqQQueueAcquire: Acquire queue <W13> in slot 18
    RqQQueueCreate: Created queue <W14> in slot 19 (10019) with normal priority
    RqQQueueAcquire: Acquire queue <W14> in slot 19
    RqQQueueCreate: Created queue <W15> in slot 20 (10020) with normal priority
    RqQQueueAcquire: Acquire queue <W15> in slot 20
    RqQQueueCreate: Created queue <W16> in slot 21 (10021) with normal priority
    RqQQueueAcquire: Acquire queue <W16> in slot 21
    RqQQueueCreate: Created queue <W17> in slot 22 (10022) with normal priority
    RqQQueueAcquire: Acquire queue <W17> in slot 22
    RqQQueueCreate: Created queue <W18> in slot 23 (10023) with normal priority
    RqQQueueAcquire: Acquire queue <W18> in slot 23
    RqQQueueCreate: Created queue <W19> in slot 24 (10024) with normal priority
    RqQQueueAcquire: Acquire queue <W19> in slot 24
    RqQQueueCreate: Created queue <W20> in slot 25 (10025) with normal priority
    RqQQueueAcquire: Acquire queue <W20> in slot 25
    MBUF state OFF
    MBUF opmode USE
    DpMBufClearGlobalHighLoadCounter: reset global load flags
    DpMBufInit o.k.
    DpCommInitTable: init table for 1000 entries
    DpSockInitTable: init table for 1000 entries
    Wed May 02 19:15:00 2040
    dp-shmem init o.k.
    disp+work.EXE 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    ntdll.dll 6.1.7601.17514 loaded from C:\Windows\SYSTEM32\.
    kernel32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    KERNELBASE.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    dw_gui.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    librender.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    dw_stl.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    MSVCP100.dll 10.0.40219.325 loaded from C:\Windows\system32\.
    MSVCR100.dll 10.0.40219.325 loaded from C:\Windows\system32\.
    USER32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    GDI32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    LPK.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    USP10.dll 1.626.7601.17514 loaded from C:\Windows\system32\.
    msvcrt.dll 7.0.7600.16385 loaded from C:\Windows\system32\.
    dw_xml.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    dw_xtc.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    dw_rndrt.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    dw_abp.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    libregex.dll 7420.101.23.59699 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    ADVAPI32.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    sechost.dll 6.1.7600.16385 loaded from C:\Windows\SYSTEM32\.
    RPCRT4.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    ole32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    OLEAUT32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    WINSPOOL.DRV 6.1.7601.17514 loaded from C:\Windows\system32\.
    WS2_32.dll 6.1.7601.17514 loaded from C:\Windows\system32\. SAP minimum version is 4.0.1381.6.
    NSI.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    IPHLPAPI.DLL 6.1.7601.17514 loaded from C:\Windows\system32\.
    WINNSI.DLL 6.1.7600.16385 loaded from C:\Windows\system32\.
    NETAPI32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    netutils.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    srvcli.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    wkscli.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    SAMCLI.DLL 6.1.7601.17514 loaded from C:\Windows\system32\.
    SHELL32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    SHLWAPI.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    dbghelp.dll 6.2.9200.20512 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    VERSION.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    MPR.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    Wed May 02 19:15:00 2040
    SETUPAPI.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    CFGMGR32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    DEVOBJ.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    icule51.dll 51.2.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    icuuc51.dll 51.2.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    icudt51.dll 51.2.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    IMM32.DLL 6.1.7600.16385 loaded from C:\Windows\system32\.
    MSCTF.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    icuuc50.dll 50.1.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    icudt50.dll 50.1.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    icuin50.dll 50.1.0.0 loaded from C:\usr\sap\ECC\DVEBMGS00\exe\.
    NLAapi.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    napinsp.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    pnrpnsp.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    mswsock.dll 6.1.7601.17514 loaded from C:\Windows\System32\.
    DNSAPI.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    winrnr.dll 6.1.7600.16385 loaded from C:\Windows\System32\.
    cscapi.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    wshtcpip.dll 6.1.7600.16385 loaded from C:\Windows\System32\.
    wship6.dll 6.1.7600.16385 loaded from C:\Windows\System32\.
    rasadhlp.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    fwpuclnt.dll 6.1.7600.16385 loaded from C:\Windows\System32\.
    ntmarta.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    WLDAP32.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    SspiCli.dll 6.1.7601.17514 loaded from C:\Windows\system32\.
    psapi.dll 6.1.7600.16385 loaded from C:\Windows\system32\.
    disp service: sapdp00
    sapinit ()
    EM: em/proc_max_size_MB = 0
    MmxRegisterRscAdm 17 000000014130F8B0 000000014130FCD0
    EmIAllocMmResourcePROC: size=1048576 total=-1 ptr=0000000008C20040
    MmxInit( 0000000008C20050 1048576 17 0000000000000000 0 ) 16 32 64 64
    MmxRegisterRscAdm 18 000000014130F850 000000014130F890
    EM: Initializing PROC storage: quota=0 use_stdheap=0
    sapinit: allocated ZCSA at 0000000008C22D70, len=1992, RSTG_CL_PERM
    sapinit: allocated ZTTA and RSTG at 0000000008C235C0, len=1608, RSTG_CL_PERM
    sapinit: allocated temporary DYNPRO at 0000000000000000, len=3200000, RSTG_CL_PERM
    sapinit: allocated CUA at 0000000008C23C90, len=8, RSTG_CL_PERM
    sapinit o.k.
    DpEmInit()
    Wed May 02 19:15:00 2040
    EmGetMaxGlobalSizeMB: tbiSize = 693
    EmGetMaxGlobalSizeMB: maxSize = 1095
    EmInit () Lock method = 2
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    EsGetAdmSize( 22 )
    EsGetAdmSize( 42 ) = 26425536
    ShmProtect( 51, 3 )
    EmInit: initializing process shared data.
    EmInit: initializing process private data.
    EmILckRecover: checking for Mutex to recover ...
    <ES> client 21 initializing ....
    EsInit(000000001D71A8B0, 26444192, 21, 4096KB, 5734MB, 12287MB, 5734MB, 0, ECC)
    <ES> EsILock: use Semphore 33 for locking
    <ES> initializing shared memory....
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 5734MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 5736MB
    Sem2Init: LockObjPtr = 000000001F047ED0
    Sem2Init: LockObjPtr = 000000001F047F30
    Sem2Init: LockObjPtr = 000000001F047F90
    Sem2Init: LockObjPtr = 000000001F047FF0
    Sem2Init: LockObjPtr = 000000001F048050
    Sem2Init: LockObjPtr = 000000001F0480B0
    Sem2Init: LockObjPtr = 000000001F048110
    Sem2Init: LockObjPtr = 000000001F048170
    Sem2Init: LockObjPtr = 000000001F0481D0
    Sem2Init: LockObjPtr = 000000001F048230
    Sem2Init: LockObjPtr = 000000001F048290
    Sem2Init: LockObjPtr = 000000001F0482F0
    Sem2Init: LockObjPtr = 000000001F048350
    Sem2Init: LockObjPtr = 000000001F0483B0
    Sem2Init: LockObjPtr = 000000001F048410
    Sem2Init: LockObjPtr = 000000001F048470
    Sem2Init: LockObjPtr = 000000001F0484D0
    Sem2Init: LockObjPtr = 000000001F048530
    Sem2Init: LockObjPtr = 000000001F048590
    Sem2Init: LockObjPtr = 000000001F0485F0
    Sem2Init: LockObjPtr = 000000001F048650
    Sem2Init: LockObjPtr = 000000001F0486B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F048710
    Sem2Init: LockObjPtr = 000000001F048770
    Sem2Init: LockObjPtr = 000000001F0487D0
    Sem2Init: LockObjPtr = 000000001F048830
    Sem2Init: LockObjPtr = 000000001F048890
    Sem2Init: LockObjPtr = 000000001F0488F0
    Sem2Init: LockObjPtr = 000000001F048950
    Sem2Init: LockObjPtr = 000000001F0489B0
    Sem2Init: LockObjPtr = 000000001F048A10
    Sem2Init: LockObjPtr = 000000001F048A70
    Sem2Init: LockObjPtr = 000000001F048AD0
    Sem2Init: LockObjPtr = 000000001F048B30
    Sem2Init: LockObjPtr = 000000001F048B90
    Sem2Init: LockObjPtr = 000000001F048BF0
    Sem2Init: LockObjPtr = 000000001F048C50
    Sem2Init: LockObjPtr = 000000001F048CB0
    Sem2Init: LockObjPtr = 000000001F048D10
    Sem2Init: LockObjPtr = 000000001F048D70
    Sem2Init: LockObjPtr = 000000001F048DD0
    Sem2Init: LockObjPtr = 000000001F048E30
    Sem2Init: LockObjPtr = 000000001F048E90
    Sem2Init: LockObjPtr = 000000001F048EF0
    Sem2Init: LockObjPtr = 000000001F048F50
    Sem2Init: LockObjPtr = 000000001F048FB0
    Sem2Init: LockObjPtr = 000000001F049010
    Sem2Init: LockObjPtr = 000000001F049070
    Sem2Init: LockObjPtr = 000000001F0490D0
    Sem2Init: LockObjPtr = 000000001F049130
    Sem2Init: LockObjPtr = 000000001F049190
    Sem2Init: LockObjPtr = 000000001F0491F0
    Sem2Init: LockObjPtr = 000000001F049250
    Sem2Init: LockObjPtr = 000000001F0492B0
    Sem2Init: LockObjPtr = 000000001F049310
    Sem2Init: LockObjPtr = 000000001F049370
    Sem2Init: LockObjPtr = 000000001F0493D0
    Sem2Init: LockObjPtr = 000000001F049430
    Sem2Init: LockObjPtr = 000000001F049490
    Sem2Init: LockObjPtr = 000000001F0494F0
    Sem2Init: LockObjPtr = 000000001F049550
    Sem2Init: LockObjPtr = 000000001F0495B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F049610
    Sem2Init: LockObjPtr = 000000001F049670
    Sem2Init: LockObjPtr = 000000001F0496D0
    Sem2Init: LockObjPtr = 000000001F049730
    Sem2Init: LockObjPtr = 000000001F049790
    Sem2Init: LockObjPtr = 000000001F0497F0
    Sem2Init: LockObjPtr = 000000001F049850
    Sem2Init: LockObjPtr = 000000001F0498B0
    Sem2Init: LockObjPtr = 000000001F049910
    Sem2Init: LockObjPtr = 000000001F049970
    Sem2Init: LockObjPtr = 000000001F0499D0
    Sem2Init: LockObjPtr = 000000001F049A30
    Sem2Init: LockObjPtr = 000000001F049A90
    Sem2Init: LockObjPtr = 000000001F049AF0
    Sem2Init: LockObjPtr = 000000001F049B50
    Sem2Init: LockObjPtr = 000000001F049BB0
    Sem2Init: LockObjPtr = 000000001F049C10
    Sem2Init: LockObjPtr = 000000001F049C70
    Sem2Init: LockObjPtr = 000000001F049CD0
    Sem2Init: LockObjPtr = 000000001F049D30
    Sem2Init: LockObjPtr = 000000001F049D90
    Sem2Init: LockObjPtr = 000000001F049DF0
    Sem2Init: LockObjPtr = 000000001F049E50
    Sem2Init: LockObjPtr = 000000001F049EB0
    Sem2Init: LockObjPtr = 000000001F049F10
    Sem2Init: LockObjPtr = 000000001F049F70
    Sem2Init: LockObjPtr = 000000001F049FD0
    Sem2Init: LockObjPtr = 000000001F04A030
    Sem2Init: LockObjPtr = 000000001F04A090
    Sem2Init: LockObjPtr = 000000001F04A0F0
    Sem2Init: LockObjPtr = 000000001F04A150
    Sem2Init: LockObjPtr = 000000001F04A1B0
    Sem2Init: LockObjPtr = 000000001F04A210
    Sem2Init: LockObjPtr = 000000001F04A270
    Sem2Init: LockObjPtr = 000000001F04A2D0
    Sem2Init: LockObjPtr = 000000001F04A330
    Sem2Init: LockObjPtr = 000000001F04A390
    Sem2Init: LockObjPtr = 000000001F04A3F0
    Sem2Init: LockObjPtr = 000000001F04A450
    Sem2Init: LockObjPtr = 000000001F04A4B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F04A510
    Sem2Init: LockObjPtr = 000000001F04A570
    Sem2Init: LockObjPtr = 000000001F04A5D0
    Sem2Init: LockObjPtr = 000000001F04A630
    Sem2Init: LockObjPtr = 000000001F04A690
    Sem2Init: LockObjPtr = 000000001F04A6F0
    Sem2Init: LockObjPtr = 000000001F04A750
    Sem2Init: LockObjPtr = 000000001F04A7B0
    Sem2Init: LockObjPtr = 000000001F04A810
    Sem2Init: LockObjPtr = 000000001F04A870
    Sem2Init: LockObjPtr = 000000001F04A8D0
    Sem2Init: LockObjPtr = 000000001F04A930
    Sem2Init: LockObjPtr = 000000001F04A990
    Sem2Init: LockObjPtr = 000000001F04A9F0
    Sem2Init: LockObjPtr = 000000001F04AA50
    Sem2Init: LockObjPtr = 000000001F04AAB0
    Sem2Init: LockObjPtr = 000000001F04AB10
    Sem2Init: LockObjPtr = 000000001F04AB70
    Sem2Init: LockObjPtr = 000000001F04ABD0
    Sem2Init: LockObjPtr = 000000001F04AC30
    Sem2Init: LockObjPtr = 000000001F04AC90
    Sem2Init: LockObjPtr = 000000001F04ACF0
    Sem2Init: LockObjPtr = 000000001F04AD50
    Sem2Init: LockObjPtr = 000000001F04ADB0
    Sem2Init: LockObjPtr = 000000001F04AE10
    Sem2Init: LockObjPtr = 000000001F04AE70
    Sem2Init: LockObjPtr = 000000001F04AED0
    Sem2Init: LockObjPtr = 000000001F04AF30
    Sem2Init: LockObjPtr = 000000001F04AF90
    Sem2Init: LockObjPtr = 000000001F04AFF0
    Sem2Init: LockObjPtr = 000000001F04B050
    Sem2Init: LockObjPtr = 000000001F04B0B0
    Sem2Init: LockObjPtr = 000000001F04B110
    Sem2Init: LockObjPtr = 000000001F04B170
    Sem2Init: LockObjPtr = 000000001F04B1D0
    Sem2Init: LockObjPtr = 000000001F04B230
    Sem2Init: LockObjPtr = 000000001F04B290
    Sem2Init: LockObjPtr = 000000001F04B2F0
    Sem2Init: LockObjPtr = 000000001F04B350
    Sem2Init: LockObjPtr = 000000001F04B3B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F04B410
    Sem2Init: LockObjPtr = 000000001F04B470
    Sem2Init: LockObjPtr = 000000001F04B4D0
    Sem2Init: LockObjPtr = 000000001F04B530
    Sem2Init: LockObjPtr = 000000001F04B590
    Sem2Init: LockObjPtr = 000000001F04B5F0
    Sem2Init: LockObjPtr = 000000001F04B650
    Sem2Init: LockObjPtr = 000000001F04B6B0
    Sem2Init: LockObjPtr = 000000001F04B710
    Sem2Init: LockObjPtr = 000000001F04B770
    Sem2Init: LockObjPtr = 000000001F04B7D0
    Sem2Init: LockObjPtr = 000000001F04B830
    Sem2Init: LockObjPtr = 000000001F04B890
    Sem2Init: LockObjPtr = 000000001F04B8F0
    Sem2Init: LockObjPtr = 000000001F04B950
    Sem2Init: LockObjPtr = 000000001F04B9B0
    Sem2Init: LockObjPtr = 000000001F04BA10
    Sem2Init: LockObjPtr = 000000001F04BA70
    Sem2Init: LockObjPtr = 000000001F04BAD0
    Sem2Init: LockObjPtr = 000000001F04BB30
    Sem2Init: LockObjPtr = 000000001F04BB90
    Sem2Init: LockObjPtr = 000000001F04BBF0
    Sem2Init: LockObjPtr = 000000001F04BC50
    Sem2Init: LockObjPtr = 000000001F04BCB0
    Sem2Init: LockObjPtr = 000000001F04BD10
    Sem2Init: LockObjPtr = 000000001F04BD70
    Sem2Init: LockObjPtr = 000000001F04BDD0
    Sem2Init: LockObjPtr = 000000001F04BE30
    Sem2Init: LockObjPtr = 000000001F04BE90
    Sem2Init: LockObjPtr = 000000001F04BEF0
    Sem2Init: LockObjPtr = 000000001F04BF50
    Sem2Init: LockObjPtr = 000000001F04BFB0
    Sem2Init: LockObjPtr = 000000001F04C010
    Sem2Init: LockObjPtr = 000000001F04C070
    Sem2Init: LockObjPtr = 000000001F04C0D0
    Sem2Init: LockObjPtr = 000000001F04C130
    Sem2Init: LockObjPtr = 000000001F04C190
    Sem2Init: LockObjPtr = 000000001F04C1F0
    Sem2Init: LockObjPtr = 000000001F04C250
    Sem2Init: LockObjPtr = 000000001F04C2B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F04C310
    Sem2Init: LockObjPtr = 000000001F04C370
    Sem2Init: LockObjPtr = 000000001F04C3D0
    Sem2Init: LockObjPtr = 000000001F04C430
    Sem2Init: LockObjPtr = 000000001F04C490
    Sem2Init: LockObjPtr = 000000001F04C4F0
    Sem2Init: LockObjPtr = 000000001F04C550
    Sem2Init: LockObjPtr = 000000001F04C5B0
    Sem2Init: LockObjPtr = 000000001F04C610
    Sem2Init: LockObjPtr = 000000001F04C670
    Sem2Init: LockObjPtr = 000000001F04C6D0
    Sem2Init: LockObjPtr = 000000001F04C730
    Sem2Init: LockObjPtr = 000000001F04C790
    Sem2Init: LockObjPtr = 000000001F04C7F0
    Sem2Init: LockObjPtr = 000000001F04C850
    Sem2Init: LockObjPtr = 000000001F04C8B0
    Sem2Init: LockObjPtr = 000000001F04C910
    Sem2Init: LockObjPtr = 000000001F04C970
    Sem2Init: LockObjPtr = 000000001F04C9D0
    Sem2Init: LockObjPtr = 000000001F04CA30
    Sem2Init: LockObjPtr = 000000001F04CA90
    Sem2Init: LockObjPtr = 000000001F04CAF0
    Sem2Init: LockObjPtr = 000000001F04CB50
    Sem2Init: LockObjPtr = 000000001F04CBB0
    Sem2Init: LockObjPtr = 000000001F04CC10
    Sem2Init: LockObjPtr = 000000001F04CC70
    Sem2Init: LockObjPtr = 000000001F04CCD0
    Sem2Init: LockObjPtr = 000000001F04CD30
    Sem2Init: LockObjPtr = 000000001F04CD90
    Sem2Init: LockObjPtr = 000000001F04CDF0
    Sem2Init: LockObjPtr = 000000001F04CE50
    Sem2Init: LockObjPtr = 000000001F04CEB0
    Sem2Init: LockObjPtr = 000000001F04CF10
    Sem2Init: LockObjPtr = 000000001F04CF70
    Sem2Init: LockObjPtr = 000000001F04CFD0
    Sem2Init: LockObjPtr = 000000001F04D030
    Sem2Init: LockObjPtr = 000000001F04D090
    Sem2Init: LockObjPtr = 000000001F04D0F0
    Sem2Init: LockObjPtr = 000000001F04D150
    Sem2Init: LockObjPtr = 000000001F04D1B0
    Wed May 02 19:15:00 2040
    Sem2Init: LockObjPtr = 000000001F04D210
    Sem2Init: LockObjPtr = 000000001F04D270
    Sem2Init: LockObjPtr = 000000001F04D2D0
    Sem2Init: LockObjPtr = 000000001F04D330
    Sem2Init: LockObjPtr = 000000001F04D390
    Sem2Init: LockObjPtr = 000000001F04D3F0
    Sem2Init: LockObjPtr = 000000001F04D450
    Sem2Init: LockObjPtr = 000000001F04D4B0
    Sem2Init: LockObjPtr = 000000001F04D510
    Sem2Init: LockObjPtr = 000000001F04D570
    Sem2Init: LockObjPtr = 000000001F04D5D0
    Sem2Init: LockObjPtr = 000000001F04D630
    Sem2Init: LockObjPtr = 000000001F04D690
    Sem2Init: LockObjPtr = 000000001F04D6F0
    Sem2Init: LockObjPtr = 000000001F04D750
    Sem2Init: LockObjPtr = 000000001F04D7B0
    Sem2Init: LockObjPtr = 000000001F04D810
    Sem2Init: LockObjPtr = 000000001F04D870
    Sem2Init: LockObjPtr = 000000001F04D8D0
    Sem2Init: LockObjPtr = 000000001F04D930
    Sem2Init: LockObjPtr = 000000001F04D990
    Sem2Init: LockObjPtr = 000000001F04D9F0
    Sem2Init: LockObjPtr = 000000001F04DA50
    Sem2Init: LockObjPtr = 000000001F04DAB0
    Sem2Init: LockObjPtr = 000000001F04DB10
    Sem2Init: LockObjPtr = 000000001F04DB70
    Sem2Init: LockObjPtr = 000000001F04DBD0
    Sem2Init: LockObjPtr = 000000001F04DC30
    Sem2Init: LockObjPtr = 000000001F04DC90
    Sem2Init: LockObjPtr = 000000001F04DCF0
    Sem2Init: LockObjPtr = 000000001F04DD50
    Sem2Init: LockObjPtr = 000000001F04DDB0
    Sem2Init: LockObjPtr = 000000001F04DE10
    Sem2Init: LockObjPtr = 000000001F04DE70
    STD_EsInit: FreelistCompactor active
    <ES> Info: disclaim threshold = 0 MB
    <ES> Info: disclaim coasting/alloc = 300 s
    <ES> Info: disclaim coasting/free = 0 s
    <ES> Info: blockdisclaimsize_KB = 0 KB
    Found implementation view
    Wed May 02 19:15:00 2040
    Using implementation view
    <EsNT> EsIOsInit
    <EsNT> ExecuteProtection is supported
    <EsNT> Using memory model view.
    <EsNT> EsIOsInit: em/initial_size_MB=5736MB
    <EsNT> EsIOsInit: em/address_space_MB=5734MB
    <EsNT> Memory Reset disabled as NT default
    <EsNT> Address Space set to 5734
    <EsNT> EsILocMthSlotsAttach
    <EsNT> CreateFileMapping name=Global\ES_SEG_00_000 ,size=2044 MB
    <EsNT> CreateFileMapping name=Global\ES_SEG_00_001 ,size=2044 MB
    <EsNT> CreateFileMapping name=Global\ES_SEG_00_002 ,size=1648 MB
    <EsNT> MemoryTotalPhys      8388144 KB
    <EsNT> MemoryTotalVirtual  8589934464 KB
    <EsNT> MemoryAvailVirtual  8588333064 KB
    <EsNT> Static              00000001417896C0
    <EsNT> Start Map Area      000007DE99A00000
    <ES> 1433 blocks reserved for free list.
    ES initialized.
    EmInit2: egSegSizeEsBlocks number = 274
    EgInit: esBlkSz = 4194304, maxEsBlocks = 274, segSz = (1149239296 EG_MAX_SEGSIZE = 68719476735
    EsILock(LockFreeList) unexpected LastLocker 0 LockCount 0
    <EsNT> EsISearchAlloc Blocks = 274
    <EsNT> EsIViewInitSlots Blocks = 274, FromTop = 1
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 1
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 2
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 3
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 4
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 5
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 6
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 7
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 8
    Wed May 02 19:15:00 2040
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 9
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 10
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 11
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 12
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 13
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 14
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 15
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 16
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 17
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 18
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 19
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 20
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 21
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 22
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 23
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 24
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 25
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 26
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 27
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 28
    Wed May 02 19:15:00 2040
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 29
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 30
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 31
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 32
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 33
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 34
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 35
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 36
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 37
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 38
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 39
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 40
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 41
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    <EsNT> EsIViewAttach Slot = 42
    EsILock(LockFreeList) unexpected LastLocker 21 LockCount 1
    &l

    Hi Experts,
    I spent all weekend installing again IDES and the result was the same. I could find one possible error:
    DpSetAvoidTraceInSignalHandler: 0 -> 1
    DpCommonParamInit: rdisp/core_file_size = default --> no change
    NiSrvLGetServNo: got service name 'sapdp00' from operating system
    NiIGetServNo: servicename 'sapdp00' = port 3200
    NiSrvLGetServNo: got service name 'sapgw00' from operating system
    NiIGetServNo: servicename 'sapgw00' = port 3300
    NiMyHostName: hostname = 'SAPIDESECC'
    NiHLGetNodeAddr: got hostname 'SAPIDESECC' from operating system
    NiIGetNodeAddr: hostname 'SAPIDESECC' = addr 10.211.55.10
    NiHLGetHostName: found address 10.211.55.10 in cache
    NiIGetHostName: addr 10.211.55.10 = hostname 'SAPIDESECC' (fq)
    Fri May 04 02:36:50 2040
    NiHLGetNodeAddr: hostname 'www.doesnotexist0196.qqq.nxst' not found by operating system
    *** WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0196.qqq.nxst) took 24 seconds
    Fri May 04 02:37:11 2040
    NiHLGetHostName: address 1.0.0.1 not found by operating system
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 21 seconds
    NiSrvLGetServNo: got service name 'http' from operating system
    NiIGetServNo: servicename 'http' = port 80
    NiSrvLGetServName: port 8080 not found by operating system
    NiSrvLGetServName: port 64555 not found by operating system
    NiSrvLGetServNo: service name 'sapdp9988' not found by operating system
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5079]
    SigIRegisterRoutine: handler for signal 16 installed (DpTrcOnOff, flag 0)
    SigIRegisterRoutine: handler for signal 17 installed (DpTrcOnOff, flag 0)
    SigIRegisterRoutine: alarm handler installed (DpSigAlrm)
    SigIRegisterRoutine: handler for signal SIGINT installed (DpSigInt, flag 0)
    SigIRegisterRoutine: handler for signal SIGTERM installed (DpSigInt, flag 0)
    SigIRegisterRoutine: handler for signal 3 installed (DpSigQuit, flag 0)
    MtxInit: 30000 0 0
    Do you think this may be the main problem??
    Best Regards.
    David Cortes

  • SHAREPOINT 2013 WITH SQL SERVER 2012 REPORTING SERVICES - NOT WORKING

    The SQL 2012 with SP1 is installed but the Reporting Services are not working and not able to connect the Sharepoint with it.
    i also TRIED TO install THE ADD-ON (rsSharePoint.msi) but it doesn't connect and show the Sharepoint Mode and cannot connect the Reporting services.
    If I install the Reporting Native feature then the reporting service config displays the Instance else doesn't show and connect to the sql server.
    But I am able to access the Configuration manager and TCP/IP are enabled.
    I have installed SQL 2012 and Sharepoint 2013. Please revert soon.
    Tks - Vinay

    Reporting Service
    http://msdn.microsoft.com/en-us/library/jj219068.aspx
    http://blogs.msdn.com/b/biblog/archive/2012/12/04/installing-and-configuring-sql-reporting-services-on-sharepoint-2013.aspx
    http://blogs.msdn.com/b/psssql/archive/2011/02/18/sharepoint-adventures-setting-up-reporting-services-with-sharepoint-integration.aspx
    http://dinesql.blogspot.in/2010/06/configuring-reporting-services-2008-r2_07.html
    http://www.codeproject.com/Articles/355461/Dynamically-Pointing-to-Shared-Data-Sources-on-SQL
    http://www.heysharepoint.com/problems-with-sql-2012-reporting-services/
    http://andrewcbancroft.com/2012/06/30/troubleshooting-sql-server-2012-reporting-services-and-sharepoint-2010-integration-part-1/
    Please find the helping URL
    Thanks
    Jaison A
    http://infomoss.blogspot.in

  • Difference between SQL SERVER 2008 & SQL SERVER 2012 & SQL SERVER 2014

    Difference between SQL SERVER 2008 & SQL SERVER 2012 & SQL SERVER 2014 ?

    What sort of databases do you have OLTP? Data warehouse? What requirements do you have for High Availability?
    The main features for SQL 2012/2014, as I see it:
    o  Support for window functions, which makes it possible to write fast queries for running totals, sliding windows etc.
    o  Columnstore indexes, which can speed up your data warehouse enormously. But of no interest for OLTP. Only writable in SQL 2014.
    o  AlwaysOn and Availability Groups, a vastly improve story for high availability and disaster recovery.
    o  try_convert/try_cast, you can now easily filter out values from a column which does not convert to a number. A small but essential feature.
    o  In memory-OLTP, a new in-memory engine in SQL 2014. This far with very limited feature set, and quite specialised.
    Of the points above, the second and third require Enterprise Edition, the first and fourth are in all editions. For the last, I don't think Microsoft has announced anything yet.
    There are also new stuff in the BI area, but that's out of my league.
    And, oh, there is a new licensing model - which I think is holding more than one customer back.
    Erland Sommarskog, SQL Server MVP, [email protected]

Maybe you are looking for

  • New to using Apple TV and edd some hints and help

    hi, I've just set up my Apple TV, and have a few questions. When you are showing a movie off your Mac through Apple TV does it use up any data? How much data does it generally use? and anything else that I shod know would be very helpful. Thank you

  • Question in using sockets in parsing XML!!!!(urgent plz help)

    i have a server/client program and the client has some XML files the server want to process and parse them using DOM. But i want to do this without having to transfer neither the whole file nor line-by-line of the file does anybody know how to do thi

  • Abapers role in SD process

    Hi Any one can tell me what are the different ways a abaper can help Sd guys in  customization or confifuration ?I mean to say what's the role of Abaper?? thanks

  • Error in connecting with Netweaver2004s Preview

    I'm a new guy in this area. After some days working , I finally installed NW04s preview correctly on windows2003. Now I've installed .Net2003 , PDK for .net2003 , Protal Runtime and SAP .NET Connector 2.0. According to tutorials of Portal Development

  • Novell File Upload extension not Installing

    I am trying to install the Novell File Upload extension so I can upload my PE file. It will not let me install the plugin in IE or Firefox. I have tried Firefox 22 and IE 8. I have tried from an XP, Win7 and 2003 server. I have tried all of the Activ