Quantcast
Channel: SQL Server Database Engine forum
Viewing all 15930 articles
Browse latest View live

Urgent 2005: Linked Server data doesn’t match expected length for column

$
0
0

 

I’m hoping someone can help me here because I’ve hit a HUGE issue migrating from SQL Server 2000 to 2005. We just upgrade TEST to SQL 2005 (on Prod we are still 2000). On both I have a linked server pointed to the same Cache database (InterSystems Cache - not a fan, but the vendor uses it).

 

On PROD everything works fine but on TEST we are seeing a huge issue. On some of the cache tables they under state the actual length of the data to be returned. In turn we are seeing the following error message being returned by SQL Server:

 

**********************

Msg 7347, Level 16, State 1, Line 1

OLE DB provider 'MSDASQL' for linked server '-X-' returned data that does not match expected data length for column '[MSDASQL].SecurityText'. The (maximum) expected data length is 32, while the returned data length is 35.

**********************

 

This is apparently tied to inaccurate Meta Data being sent to SQL. I even used Cache Monitor (a tool for quering Cache database) to verify the Meta Data and it does show the Cache database is stating the data will be no longer than 32 (though some of the data returned is of length 35).

 

Okay, Cache shouldn’t be returning in accurate Meta Data for sure. However, I can’t do anything about this. I can’t make changes on the Cache side due to vendor related matters.

 

With all that said, SQL 2000 (we have the latest SP) has no issue with the bad Meta Data, it just ignores it. So I did some checking around and found out that SQL 2000 had the same issue. Here is a link to the KB article (http://support.microsoft.com/kb/920930) with the exact error message we are seeing for the exact situation. There is a fix but for SQL 2000.

 

I also found others are running into the same issue with linked servers on 2005. Here a link to one of a few I found (http://www.sqlservercentral.com/Forums/Topic473552-146-1.aspx).

 

Does anyone have any ideas as to what I can/should do? I have no options on the Cache side so I have to find some way to make SQL Server 2005 behave as 2000 did when running into this issue.

 

This is a show stopper for our production environment because we pull so much information out from the vendor database over the linked server. So I am desperate.

 

Thank you in advance for any help or feedback you can provide.

 

Steve 


INSERT statement conflicted with the FOREIGN KEY constraint. The statement has been terminated.

$
0
0

Hi all,

I get this error when inserting data...

The INSERT statement conflicted with the FOREIGN KEY constraint "FK_Participant_Log_BiometricInstance_Participant_Activities". The conflict occurred in database "ProvantCustomerPortal", table "dbo.Activities", column 'Id'.
The statement has been terminated.

My query looks like this 

insert into [dbo].[Participant_BiometricInstance](ParticipantId, ActivityId, ProviderTypeId, Fasting, ExternalSystemId, ResultsDate, ModifiedBy, ModifiedDate)
select participantID,'','','',NULL,getdate(),NULL,getdate() from [dbo].[Participant_Profile]
union all 
select '',id,'','','','','','' from [dbo].[Activities]
union all
select '','',id,'','','','','' from [dbo].[Log_ProviderType]

ParticipantID, ActivityId, ProviderTypeId are Foreign Keys.

Id is primary key in Activity table

Id is primary key in Log_ProviderType.

Does anyone know how can we solve this?


Maintenance Jobs , Backup jobs got slow after shifting servers.

$
0
0

Recently we have shifted our servers from one cabin to other cabin with same specs of Power , UPS & Network connections.

From next day we noticed that our SQL maintenance plans (Subplan2,3 . Sub plan 1 is running for same time) & Backup job running for long hours.

Details:

SSMS : 2008 R2  , OS : 2012 R2  , DB Size :220GB ,RAM 128Gig , SQL Allocated memory 85Gig.

Earlier Subplan 2 running time 3 Hrs 30mins ,now after shifting of servers 6hrs with locking of other application objects.

Earlier Subplan 3 running time 3Hrs 30Mins , Now running for 5Hrs 30mins.

We have disabled Subplan2 and running 1& 3 only now.

Backup earlier it used to take 35 Mins now its taking 90 mins.

What could be the issue ? Other application and server performance are running fine.

 

SQL Server 2017 CU9 (14.0.3035.2) MODIFY FILE encountered operating system error 31(A device attached to the system is not functioning.) while attempting to expand the physical file

$
0
0

Hello, 

I'm trying to restore a database to Linux SQL Server, The drive is formated as XFS so is under the list of supported items, however, I'm getting the following error:

Msg 5149, Level 16, State 3, Line 1
MODIFY FILE encountered operating system error 31(A device attached to the system is not functioning.) while attempting to expand the physical file '/var/opt/mssql/data/TestDB.mdf'.

Msg 3013, Level 16, State 1, Line 1
RESTORE DATABASE is terminating abnormally.

My Command for restore:

RESTORE DATABASE TestDB
FROM DISK = '/var/opt/mssql/backup/TestDB.bak'
WITH MOVE 'TestDB' TO '/var/opt/mssql/data/TestDB.mdf',
MOVE 'TestDB_Log' TO '/var/opt/mssql/data/TestDB_Log.ldf'

Anyone able to help with this?

Thank you.


RESTORE HEADERONLY statement for a TDE compressed backup slow to complete in SQL Server 2014

$
0
0

Hi,

I have enabled TDE on database on SQL server 2014. Its take long time to backup a database specially when it in process of Restore Headeronly.

I found this has been fixed in CU1 sql server 2016 sp2. can anyone help me is there any fixes in SQL Server 2014?


I have enabled TDE on database on SQL server 2014. Its take long time to backup a database specially when it verify backup integrity process i.e.Restore Headeronly process.
I have enabled TDE on database on SQL server 2014. Its take long time to backup a database specially when it verify backup integrity process i.e.Restore Headeronly process.

logging all copy data from a database

$
0
0

I need to be able to log/audit every data copy from a specific database. Proper permissions are in place, the question is logging/auditing. As far as I see this is not possible.

 

  1. Do not see how to log users that are querying the data in any client tools and then copy this data. Ex: in SSMS from grid and then copy to Excel, same if save to file in SSMS, Excel directly, PowerBi, cmd bulk load etc. do you know any tool for this available?
  2. Focusing now on the copy from this database to any other db on the instance, I need to be able to log/report on the copy data only, the solution is only an extended events session or trace and then filter for specific events. Do you have a solution for just this copy (between db to db on the instance I mean)

Thank you,

ways of making just a table readonly

$
0
0

Hi we run 2016 enterprise.

I'm reading the tricks at https://www.mssqltips.com/sqlservertip/2711/different-ways-to-make-a-table-read-only-in-a-sql-server-database/ for making a table readonly and tried the view trick where a union is introduced with predicate 1=0.  But my delete statement worked (it wasn't supposed to) so I've decided to post here.

My next choice from that list would be triggers that would prevent crud ops. 

I don't want to make the db readonly.  And I don't want to introduce a filegroup that is readonly.  And from what I understand using denies etc or anything security based isn't going to happen.

Are there any other tricks for making just a table readonly?

USE [formsdn]
GO

SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[testViewBlocksCRUD](
	[Id] [int] IDENTITY(1,1) NOT NULL,
	[afield] [varchar](250) NOT NULL,
	
 CONSTRAINT [PK_testViewBlocksCRUD] PRIMARY KEY CLUSTERED 
(
	[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

--insert [dbo].[testViewBlocksCRUD] select 'a test'
select * from [dbo].[testViewBlocksCRUD]

create view vw_testViewBlocksCRUD as
select * from testViewBlocksCRUD
union all 
select 0,'' where 1=0

delete from testViewBlocksCRUD

Linked server error 7202 could not find server in sysservers

$
0
0
we are working to upgrade our old sql 2000 servers to 2008 initially then on to current. what I have is a sql 2000 server (server1) using a linked server to call another sql 2000 server (server2) and execute a stored procedure. I scripted off the linked server to server2 from server1 and replaced the servr2 name with my 2008 instance server3\instance1 name where I had to use the ip address not the name of the server due to other requirements (replication). So the new linked server is named something like '12.123.12.133\instance1'. the linked server was set up to use a specific sql login.  I can see the linked server under server objects but when I click on catalogs to expand the databases, it gets an error "failed to retrieve data... dbnetlib connection open sql server does not exist or access denied". When I try to run the procedure using exec [12.123.12.133\instance1].databasename.dbo.storedprocname it returns a 7202 error could not find 12.123.12.133\instance1 in sysservers. a select from sysservers does return 12.123.12.133\instance1. I believe it has to do with the scripting used to create and not adding additional parms in the sp_addlinkedserver call, all it puts in is @server and @srvproduct. Appreciate any suggestions as to what needs to be done to resolve this.

Frequent Shutdown of SQL Server

$
0
0

Hi All,

We are facing frequent shutdown of sql server in couple of development machines, When we checked log files , we could see that the error as below,

OS error: 32(The process cannot access the file because it is being used by another process.)

 CREATE FILE encountered operating system error 32(The process cannot access the file because it is being used by another process.) while attempting to open or create the physical file ‘E:\TempDB\tempdb.mdf’

2014-08-07 05:53:45.42 spid11s     Error: 17204, Severity: 16, State: 1. 
2014-08-07 05:53:45.42 spid11s     FCB::Open failed: Could not open file E:\TempDB\tempdb.mdf for file number 1.  OS error: 32(The process cannot access the file because it is being used by another process.).
2014-08-07 05:53:45.43 spid11s     Error: 5120, Severity: 16, State: 101. 
2014-08-07 05:53:45.43 spid11s     Unable to open the physical file "E:\TempDB\tempdb.mdf". Operating system error 32: "32(The process cannot access the file because it is being used by another process.)". 
2014-08-07 05:53:45.46 spid11s     Error: 1802, Severity: 16, State: 4. 
2014-08-07 05:53:45.46 spid11s     CREATE DATABASE failed. Some file names listed could not be created. 

we have tried identifying the process that is locking the tempdb.mdf file via process monitor tool, ( As suggested in the below link), but there is no process detected via this tool. We are able to start the SQL server only after restarting the machine. This issue is so frequent now days. can any one of you advise how to identify the process causing the problem.

we have checked that only one instance is running and tried changing the path for tempdb.mdf file but no lock.https://sqlserver-help.com/2014/08/07/tips-and-tricks-os-error-32the-process-cannot-access-the-file-because-it-is-being-used-by-another-process/

SQL fatal exception - Team Foundation Server error TF400917

$
0
0

When running on-prem TFS 2017 Update 3, a number of links cause the following error to occur:

TF400917: The current configuration is not valid for this feature. This feature cannot be used until you correct the configuration.

Learn about how to correct your configuration

Details about the validation error appear below:

  • TF246017: Team Foundation Server could not connect to the database. Verify that the instance is specified correctly, that the server that is hosting the database is operational, and that network problems are not blocking communication with the server.

It happens from the Work/Backlog link and the Default Team Settings pages.

Event Viewer on the SQL Server is showing the following error:

Error: - A user request from the session with SPID 65 generated a fatal exception. SQL Server is terminating this session. Contact Product Support Services with the dump produced in the log directory.

Information: - Fault bucket 1787858134119301324, type 5 

Event Name: SQLException64
Response: Not available
Cab Id: 0

Any help with this would be greatly received.

Corrupt SQL Function

$
0
0

I tracked an error down to a function in SQL server which seams corrupted.

Here is the story:

This morning TFS stopped working, or at least some of it. The first thing I saw was an error in the request:

SQL Server error: 596.

I could see that some of the SQL worked fine, but it was only viewing a work item it would fail.

I got down to the SQL server and looked at the log, finding this error: A user request from the session with SPID 63 generated a fatal exception. SQL Server is terminating this session. Contact Product Support Services with the dump produced in the log directory.

Together with this error message was an exception dump where I found the following error:

Exception Address = 00007FF9574B8B5F Module(sqlmin+00000000006E8B5F)
Exception Code    = c0000005 EXCEPTION_ACCESS_VIOLATION
Access Violation occurred reading address 0000000000000000

I also found the Stored Procedure causing the error: GetConstantSets

Calling this SP would cause the same error. So far so good. I digged into the SP and found a function called ConstantDownward. When I wanted to look at this function (Modify) it gave me the same error: A severe error occurred on the current command.  The results, if any, should be discarded. (.Net SqlClient Data Provider).

How do I proceed? Restoring a backup is my only option at the moment, but I do not prefer it.

EXCEPTION_ACCESS_VIOLATION after update to SQL Server 2016 SP 2 13.0.5161.0

$
0
0
This is a "cross" post from the TFS forums: Our TFS 2017 (now Update 3) is unable to list all workitems because of a error in our SQL Server 2016 SP2 installation. 

We are now using the most recent version 13.0.5161.0 and facing some EXCEPTION_ACCESS_VIOLATION bugs. I tried to reach out to MS Support but sadly their systems are either down or our support contract is "broken", but maybe someone has the same issue or an SQL Server engineer looks through the forums.

Anyway, here is the error that I'm seeing in the logs:



SQL Server is terminating this session. Contact Product Support Services with the dump produced in the log directory.
2018-08-16 09:26:06.52 spid115     ***Stack Dump being sent to D:\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\LOG\SQLDump0203.txt
2018-08-16 09:26:06.52 spid115     SqlDumpExceptionHandler: Process 115 generated fatal exception c0000005 EXCEPTION_ACCESS_VIOLATION. SQL Server is terminating this process.
2018-08-16 09:26:06.52 spid115     * *******************************************************************************
2018-08-16 09:26:06.52 spid115     *
2018-08-16 09:26:06.52 spid115     * BEGIN STACK DUMP:
2018-08-16 09:26:06.52 spid115     *   08/16/18 09:26:06 spid 115
2018-08-16 09:26:06.52 spid115     *
2018-08-16 09:26:06.52 spid115     *
2018-08-16 09:26:06.52 spid115     *   Exception Address = 00007FFF72B88B5F Module(sqlmin+00000000006E8B5F)
2018-08-16 09:26:06.52 spid115     *   Exception Code    = c0000005 EXCEPTION_ACCESS_VIOLATION
2018-08-16 09:26:06.52 spid115     *   Access Violation occurred reading address 0000000000000000
2018-08-16 09:26:06.52 spid115     * Input Buffer 255 bytes -
2018-08-16 09:26:06.52 spid115     *                     16 00 00 00 12 00 00 00 02 00 00 00 00 00 00 00 00 00
2018-08-16 09:26:06.52 spid115     *        G e t C o n  01 00 00 00 0f 00 47 00 65 00 74 00 43 00 6f 00 6e 00
2018-08-16 09:26:06.52 spid115     *  s t a n t S e t s  73 00 74 00 61 00 6e 00 74 00 53 00 65 00 74 00 73 00
2018-08-16 09:26:06.52 spid115     *     @ p a r t i t i 00 00 0c 40 00 70 00 61 00 72 00 74 00 69 00 74 00 69
2018-08-16 09:26:06.52 spid115     *   o n I d  &        00 6f 00 6e 00 49 00 64 00 00 26 04 04 01 00 00 00 05
2018-08-16 09:26:06.52 spid115     *  @ s e t s  ó   t y 40 00 73 00 65 00 74 00 73 00 00 f3 00 00 20 74 00 79
2018-08-16 09:26:06.52 spid115     *   p _ W i t C o n s 00 70 00 5f 00 57 00 69 00 74 00 43 00 6f 00 6e 00 73
2018-08-16 09:26:06.52 spid115     *   t a n t S e t R e 00 74 00 61 00 6e 00 74 00 53 00 65 00 74 00 52 00 65
2018-08-16 09:26:06.52 spid115     *   f e r e n c e T a 00 66 00 65 00 72 00 65 00 6e 00 63 00 65 00 54 00 61
2018-08-16 09:26:06.52 spid115     *   b l e         &   00 62 00 6c 00 65 00 04 00 00 00 00 00 01 00 26 04 00
2018-08-16 09:26:06.52 spid115     *        h        h   00 00 00 00 01 00 68 01 00 00 00 00 00 01 00 68 01 00
2018-08-16 09:26:06.52 spid115     *        h     ^ë     00 00 00 00 01 00 68 01 00 00 01 04 5e eb 00 00 01 01
2018-08-16 09:26:06.52 spid115     *        ]ë           01 01 01 00 01 04 5d eb 00 00 01 01 01 01 01 00 01 04
2018-08-16 09:26:06.52 spid115     *  [ë          Zë     5b eb 00 00 01 01 01 01 01 00 01 04 5a eb 00 00 01 01
2018-08-16 09:26:06.52 spid115     *        dë           01 01 01 00 01 04 64 eb 00 00 01 01 01 01 01 00 01 04
2018-08-16 09:26:06.52 spid115     *  gë          hë     67 eb 00 00 01 01 01 01 01 00 01 04 68 eb 00 00 01 01
2018-08-16 09:26:06.52 spid115     *        më           01 01 01 00 01 04 6d eb 00 00 01 01 01 01 01 00 01 04
2018-08-16 09:26:06.52 spid115     *  cë          ië     63 eb 00 00 01 01 01 01 01 00 01 04 69 eb 00 00 01 01
2018-08-16 09:26:06.52 spid115     *        fë           01 01 01 00 01 04 66 eb 00 00 01 01 01 01 01 00 01 04
2018-08-16 09:26:06.52 spid115     *  eë          bë     65 eb 00 00 01 01 01 01 01 00 01 04 62 eb 00 00 01 01
2018-08-16 09:26:06.52 spid115     *        oë           01 01 01 00 01 04 6f eb 00 00 01 01 01 01 01 00 01 04
2018-08-16 09:26:06.52 spid115     *  aë          `ë     61 eb 00 00 01 01 01 01 01 00 01 04 60 eb 00 00 01 01
2018-08-16 09:26:06.52 spid115     *        kë           01 01 01 00 01 04 6b eb 00 00 01 01 01 01 01 00 01 04
2018-08-16 09:26:06.52 spid115     *  jë          në     6a eb 00 00 01 01 01 01 01 00 01 04 6e eb 00 00 01 01
2018-08-16 09:26:06.52 spid115     *        lë           01 01 01 00 01 04 6c eb 00 00 01 01 01 01 01 00 01 04
2018-08-16 09:26:06.52 spid115     *  _ë          Çê     5f eb 00 00 01 01 01 01 01 00 01 04 c7 ea 00 00 01 01
2018-08-16 09:26:06.52 spid115     *        Yë           01 01 01 00 01 04 59 eb 00 00 01 01 01 01 01 00 00
2018-08-16 09:26:06.52 spid115     *  
2018-08-16 09:26:06.52 spid115     *
2018-08-16 09:26:06.52 spid115     *  MODULE                          BASE      END       SIZE
2018-08-16 09:26:06.52 spid115     * sqlservr                       00007FF653090000  00007FF6530F8FFF  00069000
2018-08-16 09:26:06.52 spid115     * ntdll                          00007FFF86B10000  00007FFF86CDFFFF  001d0000
2018-08-16 09:26:06.52 spid115     * KERNEL32                       00007FFF86800000  00007FFF868ABFFF  000ac000
2018-08-16 09:26:06.52 spid115     * KERNELBASE                     00007FFF839A0000  00007FFF83BBCFFF  0021d000
2018-08-16 09:26:06.52 spid115     * ADVAPI32                       00007FFF842A0000  00007FFF84341FFF  000a2000
2018-08-16 09:26:06.52 spid115     * msvcrt                         00007FFF86A70000  00007FFF86B0DFFF  0009e000
2018-08-16 09:26:06.52 spid115     * NETAPI32                       00007FFF7A290000  00007FFF7A2A7FFF  00018000
2018-08-16 09:26:06.52 spid115     * pdh                            00007FFF7FB50000  00007FFF7FB9CFFF  0004d000
2018-08-16 09:26:06.52 spid115     * sechost                        00007FFF86100000  00007FFF86158FFF  00059000
2018-08-16 09:26:06.52 spid115     * RPCRT4                         00007FFF86180000  00007FFF862A0FFF  00121000
2018-08-16 09:26:06.52 spid115     * ole32                          00007FFF84100000  00007FFF84237FFF  00138000
2018-08-16 09:26:06.52 spid115     * combase                        00007FFF86320000  00007FFF865E7FFF  002c8000
2018-08-16 09:26:06.52 spid115     * ucrtbase                       00007FFF838A0000  00007FFF83994FFF  000f5000
2018-08-16 09:26:06.52 spid115     * bcryptPrimitives               00007FFF83000000  00007FFF83069FFF  0006a000
2018-08-16 09:26:06.52 spid115     * GDI32                          00007FFF84350000  00007FFF84383FFF  00034000
2018-08-16 09:26:06.52 spid115     * gdi32full                      00007FFF83C90000  00007FFF83E10FFF  00181000
2018-08-16 09:26:06.52 spid115     * USER32                         00007FFF85DA0000  00007FFF85F04FFF  00165000
2018-08-16 09:26:06.52 spid115     * win32u                         00007FFF83BC0000  00007FFF83BDDFFF  0001e000
2018-08-16 09:26:06.52 spid115     * SQLOS                          00007FFF7B720000  00007FFF7B726FFF  00007000
2018-08-16 09:26:06.52 spid115     * sqlmin                         00007FFF724A0000  00007FFF74D57FFF  028b8000
2018-08-16 09:26:06.52 spid115     * sqllang                        00007FFF52E60000  00007FFF558C5FFF  02a66000
2018-08-16 09:26:06.52 spid115     * sqlTsEs                        00007FFF71C00000  00007FFF7249AFFF  0089b000
2018-08-16 09:26:06.52 spid115     * OLEAUT32                       00007FFF868B0000  00007FFF8696EFFF  000bf000
2018-08-16 09:26:06.52 spid115     * msvcp_win                      00007FFF83070000  00007FFF8310BFFF  0009c000
2018-08-16 09:26:06.52 spid115     * sqldk                          00007FFF71720000  00007FFF71BF0FFF  004d1000
2018-08-16 09:26:06.52 spid115     * opends60                       00007FFF76780000  00007FFF76788FFF  00009000
2018-08-16 09:26:06.52 spid115     * qds                            00007FFF71620000  00007FFF7171DFFF  000fe000
2018-08-16 09:26:06.52 spid115     * MSVCP120                       00007FFF76180000  00007FFF76225FFF  000a6000
2018-08-16 09:26:06.52 spid115     * MSVCR120                       00007FFF75350000  00007FFF7543EFFF  000ef000
2018-08-16 09:26:06.52 spid115     * WINMM                          00007FFF81470000  00007FFF81492FFF  00023000
2018-08-16 09:26:06.52 spid115     * WINMMBASE                      00007FFF81410000  00007FFF8143AFFF  0002b000
2018-08-16 09:26:06.52 spid115     * cfgmgr32                       00007FFF84050000  00007FFF84091FFF  00042000
2018-08-16 09:26:06.52 spid115     * CRYPT32                        00007FFF83E20000  00007FFF83FE8FFF  001c9000
2018-08-16 09:26:06.52 spid115     * MSASN1                         00007FFF82FA0000  00007FFF82FAFFFF  00010000
2018-08-16 09:26:06.52 spid115     * WS2_32                         00007FFF86090000  00007FFF860F9FFF  0006a000
2018-08-16 09:26:06.52 spid115     * Secur32                        00007FFF7F7E0000  00007FFF7F7EBFFF  0000c000
2018-08-16 09:26:06.52 spid115     * WINHTTP                        00007FFF7FA80000  00007FFF7FB4CFFF  000cd000
2018-08-16 09:26:06.52 spid115     * bcrypt                         00007FFF82EB0000  00007FFF82EDAFFF  0002b000
2018-08-16 09:26:06.52 spid115     * ODBC32                         00007FFF752A0000  00007FFF7534EFFF  000af000
2018-08-16 09:26:06.52 spid115     * DPAPI                          00007FFF821B0000  00007FFF821B9FFF  0000a000
2018-08-16 09:26:06.52 spid115     * SSPICLI                        00007FFF82BE0000  00007FFF82C0BFFF  0002c000
2018-08-16 09:26:06.52 spid115     * NETUTILS                       00007FFF826B0000  00007FFF826BCFFF  0000d000
2018-08-16 09:26:06.52 spid115     * WINTRUST                       00007FFF83FF0000  00007FFF84044FFF  00055000
2018-08-16 09:26:06.52 spid115     * USERENV                        00007FFF826C0000  00007FFF826DEFFF  0001f000
2018-08-16 09:26:06.52 spid115     * AUTHZ                          00007FFF82250000  00007FFF82299FFF  0004a000
2018-08-16 09:26:06.52 spid115     * profapi                        00007FFF82F70000  00007FFF82F83FFF  00014000
2018-08-16 09:26:06.52 spid115     * XmlLite                        00007FFF7B830000  00007FFF7B865FFF  00036000
2018-08-16 09:26:06.52 spid115     * dhcpcsvc                       00007FFF80660000  00007FFF80679FFF  0001a000
2018-08-16 09:26:06.52 spid115     * NSI                            00007FFF85F10000  00007FFF85F17FFF  00008000
2018-08-16 09:26:06.52 spid115     * LOGONCLI                       00007FFF811F0000  00007FFF8122DFFF  0003e000
2018-08-16 09:26:06.52 spid115     * SAMCLI                         00007FFF80810000  00007FFF80828FFF  00019000
2018-08-16 09:26:06.52 spid115     * psapi                          00007FFF86080000  00007FFF86087FFF  00008000
2018-08-16 09:26:06.52 spid115     * kernel.appcore                 00007FFF82F90000  00007FFF82F9EFFF  0000f000
2018-08-16 09:26:06.52 spid115     * instapi130                     00007FFF76170000  00007FFF7617FFFF  00010000
2018-08-16 09:26:06.52 spid115     * CRYPTSP                        00007FFF829F0000  00007FFF82A06FFF  00017000
2018-08-16 09:26:06.52 spid115     * rsaenh                         00007FFF82450000  00007FFF82482FFF  00033000
2018-08-16 09:26:06.52 spid115     * CRYPTBASE                      00007FFF829E0000  00007FFF829EAFFF  0000b000
2018-08-16 09:26:06.52 spid115     * imagehlp                       00007FFF86160000  00007FFF8617BFFF  0001c000
2018-08-16 09:26:06.52 spid115     * gpapi                          00007FFF81F60000  00007FFF81F82FFF  00023000
2018-08-16 09:26:06.52 spid115     * wkscli                         00007FFF7EBD0000  00007FFF7EBE5FFF  00016000
2018-08-16 09:26:06.52 spid115     * cscapi                         00007FFF6EBF0000  00007FFF6EC01FFF  00012000
2018-08-16 09:26:06.52 spid115     * sqlevn70                       00000287D5330000  00000287D56C2FFF  00393000
2018-08-16 09:26:06.52 spid115     * sqlevn70                       00000287D58E0000  00000287D5BCFFFF  002f0000
2018-08-16 09:26:06.52 spid115     * CLUSAPI                        00007FFF782A0000  00007FFF78357FFF  000b8000
2018-08-16 09:26:06.52 spid115     * DNSAPI                         00007FFF82600000  00007FFF826A0FFF  000a1000
2018-08-16 09:26:06.52 spid115     * IPHLPAPI                       00007FFF825C0000  00007FFF825F7FFF  00038000
2018-08-16 09:26:06.52 spid115     * RESUTILS                       00007FFF78360000  00007FFF783C0FFF  00061000
2018-08-16 09:26:06.52 spid115     * VERSION                        00007FFF7A280000  00007FFF7A289FFF  0000a000
2018-08-16 09:26:06.52 spid115     * xedevpkg                       00007FFF75F90000  00007FFF75FB3FFF  00024000
2018-08-16 09:26:06.52 spid115     * SHLWAPI                        00007FFF840A0000  00007FFF840F1FFF  00052000
2018-08-16 09:26:06.52 spid115     * hkruntime                      00007FFF71340000  00007FFF71614FFF  002d5000
2018-08-16 09:26:06.52 spid115     * hkengine                       00007FFF4A8E0000  00007FFF52E54FFF  08575000
2018-08-16 09:26:06.52 spid115     * hkcompile                      00007FFF711E0000  00007FFF71336FFF  00157000
2018-08-16 09:26:06.52 spid115     * dbghelp                        000000006BA70000  000000006BC05FFF  00196000
2018-08-16 09:26:06.52 spid115     * msv1_0                         00007FFF827D0000  00007FFF82836FFF  00067000
2018-08-16 09:26:06.52 spid115     * NtlmShared                     00007FFF827C0000  00007FFF827CBFFF  0000c000
2018-08-16 09:26:06.52 spid115     * cryptdll                       00007FFF828A0000  00007FFF828B4FFF  00015000
2018-08-16 09:26:06.52 spid115     * kerberos                       00007FFF828F0000  00007FFF829DFFFF  000f0000
2018-08-16 09:26:06.52 spid115     * schannel                       00007FFF82390000  00007FFF82407FFF  00078000
2018-08-16 09:26:06.52 spid115     * MSCOREE                        00007FFF76230000  00007FFF76295FFF  00066000
2018-08-16 09:26:06.52 spid115     * mscoreei                       00007FFF6F990000  00007FFF6FA2BFFF  0009c000
2018-08-16 09:26:06.52 spid115     * SqlServerSpatial130            00007FFF71120000  00007FFF711D4FFF  000b5000
2018-08-16 09:26:06.52 spid115     * security                       0000028A3F9B0000  0000028A3F9B2FFF  00003000
2018-08-16 09:26:06.52 spid115     * BatchParser                    00007FFF710F0000  00007FFF7111BFFF  0002c000
2018-08-16 09:26:06.52 spid115     * clbcatq                        00007FFF85D00000  00007FFF85D9EFFF  0009f000
2018-08-16 09:26:06.52 spid115     * sqlncli11                      00007FFF70770000  00007FFF70AC2FFF  00353000
2018-08-16 09:26:06.52 spid115     * MSVCR100                       000000006B990000  000000006BA61FFF  000d2000
2018-08-16 09:26:06.53 spid115     * COMDLG32                       00007FFF86970000  00007FFF86A69FFF  000fa000
2018-08-16 09:26:06.53 spid115     * shcore                         00007FFF837F0000  00007FFF83898FFF  000a9000
2018-08-16 09:26:06.53 spid115     * SHELL32                        00007FFF847F0000  00007FFF85CF4FFF  01505000
2018-08-16 09:26:06.53 spid115     * COMCTL32                       00007FFF6B9A0000  00007FFF6BA4BFFF  000ac000
2018-08-16 09:26:06.53 spid115     * windows.storage                00007FFF83110000  00007FFF837E8FFF  006d9000
2018-08-16 09:26:06.53 spid115     * powrprof                       00007FFF82FB0000  00007FFF82FFBFFF  0004c000
2018-08-16 09:26:06.53 spid115     * SQLNCLIR11                     0000028A3FA80000  0000028A3FAB7FFF  00038000
2018-08-16 09:26:06.53 spid115     * netbios                        00007FFF75290000  00007FFF7529BFFF  0000c000
2018-08-16 09:26:06.53 spid115     * sqlnclirda11                   000000006B630000  000000006B988FFF  00359000
2018-08-16 09:26:06.53 spid115     * SQLNCLIRDAR11                  0000028A3FAD0000  0000028A3FB07FFF  00038000
2018-08-16 09:26:06.53 spid115     * clr                            00007FFF6EF80000  00007FFF6F96BFFF  009ec000
2018-08-16 09:26:06.53 spid115     * MSVCR120_CLR0400               00007FFF6D510000  00007FFF6D606FFF  000f7000
2018-08-16 09:26:06.53 spid115     * SRVCLI                         00007FFF77750000  00007FFF77775FFF  00026000
2018-08-16 09:26:06.53 spid115     * mscorlib.ni                    00007FFF58740000  00007FFF59CC7FFF  01588000
2018-08-16 09:26:06.53 spid115     * ftimport                       0000000060000000  0000000060024FFF  00025000
2018-08-16 09:26:06.53 spid115     * MSFTE                          0000000049980000  0000000049D2DFFF  003ae000
2018-08-16 09:26:06.53 spid115     * clrjit                         00007FFF6E3B0000  00007FFF6E4DBFFF  0012c000
2018-08-16 09:26:06.53 spid115     * ntmarta                        00007FFF81CA0000  00007FFF81CD1FFF  00032000
2018-08-16 09:26:06.53 spid115     * ncrypt                         00007FFF82AC0000  00007FFF82AE5FFF  00026000
2018-08-16 09:26:06.53 spid115     * NTASN1                         00007FFF82A80000  00007FFF82ABAFFF  0003b000
2018-08-16 09:26:06.53 spid115     * mskeyprotect                   00007FFF6BE00000  00007FFF6BE14FFF  00015000
2018-08-16 09:26:06.53 spid115     * mswsock                        00007FFF82840000  00007FFF8289BFFF  0005c000
2018-08-16 09:26:06.53 spid115     * ntdsapi                        00007FFF7A4A0000  00007FFF7A4C8FFF  00029000
2018-08-16 09:26:06.53 spid115     * DSPARSE                        00007FFF7B630000  00007FFF7B63CFFF  0000d000
2018-08-16 09:26:06.53 spid115     * rasadhlp                       00007FFF7C8B0000  00007FFF7C8B9FFF  0000a000
2018-08-16 09:26:06.53 spid115     * fwpuclnt                       00007FFF80EF0000  00007FFF80F59FFF  0006a000
2018-08-16 09:26:06.53 spid115     * ncryptsslp                     00007FFF6BE80000  00007FFF6BEA0FFF  00021000
2018-08-16 09:26:06.53 spid115     * netfxperf                      00007FFF70E20000  00007FFF70E3EFFF  0001f000
2018-08-16 09:26:06.53 spid115     * perfcounter                    00007FFF70670000  00007FFF706B1FFF  00042000
2018-08-16 09:26:06.53 spid115     * CorperfmonExt                  00007FFF70640000  00007FFF70666FFF  00027000
2018-08-16 09:26:06.53 spid115     * WTSAPI32                       00007FFF807F0000  00007FFF80802FFF  00013000
2018-08-16 09:26:06.53 spid115     * DTSPipelinePerf130             00007FFF70630000  00007FFF7063BFFF  0000c000
2018-08-16 09:26:06.53 spid115     * esentprf                       00007FFF70610000  00007FFF70629FFF  0001a000
2018-08-16 09:26:06.53 spid115     * msdtcuiu                       00007FFF705B0000  00007FFF70604FFF  00055000
2018-08-16 09:26:06.53 spid115     * MSDTCPRX                       00007FFF6D3E0000  00007FFF6D4C1FFF  000e2000
2018-08-16 09:26:06.53 spid115     * ATL                            00007FFF7CF60000  00007FFF7CF7BFFF  0001c000
2018-08-16 09:26:06.53 spid115     * MTXCLU                         00007FFF6EC50000  00007FFF6ECB8FFF  00069000
2018-08-16 09:26:06.53 spid115     * ktmw32                         00007FFF6EC40000  00007FFF6EC4AFFF  0000b000
2018-08-16 09:26:06.53 spid115     * msscntrs                       00007FFF70590000  00007FFF705A1FFF  00012000
2018-08-16 09:26:06.53 spid115     * perf-MSSQLSERVER-sqlctr13.2.5026.0 00007FFF70530000  00007FFF7058AFFF  0005b000
2018-08-16 09:26:06.53 spid115     * MSMDCTR130                     00007FFF70520000  00007FFF7052AFFF  0000b000
2018-08-16 09:26:06.53 spid115     * perfdisk                       00007FFF70510000  00007FFF7051FFFF  00010000
2018-08-16 09:26:06.53 spid115     * WMICLNT                        00007FFF7EB90000  00007FFF7EBA0FFF  00011000
2018-08-16 09:26:06.53 spid115     * perfnet                        00007FFF70500000  00007FFF7050AFFF  0000b000
2018-08-16 09:26:06.53 spid115     * BROWCLI                        00007FFF704E0000  00007FFF704F3FFF  00014000
2018-08-16 09:26:06.53 spid115     * perfos                         00007FFF6B4F0000  00007FFF6B4FDFFF  0000e000
2018-08-16 09:26:06.53 spid115     * perfproc                       00007FFF704D0000  00007FFF704DEFFF  0000f000
2018-08-16 09:26:06.53 spid115     * rasctrs                        00007FFF704C0000  00007FFF704C9FFF  0000a000
2018-08-16 09:26:06.53 spid115     * rasman                         00007FFF704A0000  00007FFF704BFFFF  00020000
2018-08-16 09:26:06.53 spid115     * perf-ReportServer-rsctr13.2.5026.0 00007FFF70480000  00007FFF70497FFF  00018000
2018-08-16 09:26:06.53 spid115     * winspool                       00007FFF7BC40000  00007FFF7BCC5FFF  00086000
2018-08-16 09:26:06.53 spid115     * perf-MSSQL13.MSSQLSERVER-sqlagtctr 00007FFF70460000  00007FFF7047AFFF  0001b000
2018-08-16 09:26:06.53 spid115     * tapiperf                       00007FFF70450000  00007FFF70457FFF  00008000
2018-08-16 09:26:06.53 spid115     * Perfctrs                       00007FFF70430000  00007FFF70440FFF  00011000
2018-08-16 09:26:06.53 spid115     * perfts                         00007FFF70050000  00007FFF70057FFF  00008000
2018-08-16 09:26:06.53 spid115     * WINSTA                         00007FFF82E50000  00007FFF82EA5FFF  00056000
2018-08-16 09:26:06.53 spid115     * UTILDLL                        00007FFF70030000  00007FFF70047FFF  00018000
2018-08-16 09:26:06.53 spid115     * SETUPAPI                       00007FFF843C0000  00007FFF847E8FFF  00429000
2018-08-16 09:26:06.53 spid115     * usbperf                        00007FFF70020000  00007FFF70027FFF  00008000
2018-08-16 09:26:06.53 spid115     * tquery                         00007FFF6FCA0000  00007FFF6FFE3FFF  00344000
2018-08-16 09:26:06.53 spid115     * msxml3                         00007FFF6E700000  00007FFF6E92BFFF  0022c000
2018-08-16 09:26:06.53 spid115     * cryptnet                       00007FFF6A490000  00007FFF6A4BEFFF  0002f000
2018-08-16 09:26:06.53 spid115     * xpsqlbot                       00007FFF6FC90000  00007FFF6FC97FFF  00008000
2018-08-16 09:26:06.53 spid115     * xpstar                         00007FFF6FC20000  00007FFF6FC88FFF  00069000
2018-08-16 09:26:06.53 spid115     * SQLSCM                         00007FFF710B0000  00007FFF710BFFFF  00010000
2018-08-16 09:26:06.53 spid115     * xpstar                         0000028BC7D50000  0000028BC7D5CFFF  0000d000
2018-08-16 09:26:06.53 spid115     * xplog70                        00007FFF7B330000  00007FFF7B340FFF  00011000
2018-08-16 09:26:06.53 spid115     * xplog70                        0000028BC7DE0000  0000028BC7DE3FFF  00004000
2018-08-16 09:26:06.53 spid115     * SAMLIB                         00007FFF7A470000  00007FFF7A492FFF  00023000
2018-08-16 09:26:06.53 spid115     * Sort00060101                   00007FFF790C0000  00007FFF790D2FFF  00013000
2018-08-16 09:26:06.53 spid115     * System.ni                      00007FFF57B00000  00007FFF5873EFFF  00c3f000
2018-08-16 09:26:06.53 spid115     * System.Data                    00007FFF6CBA0000  00007FFF6CEF6FFF  00357000
2018-08-16 09:26:06.53 spid115     * System.Transactions            00007FFF6FA80000  00007FFF6FACEFFF  0004f000
2018-08-16 09:26:06.53 spid115     * System.Security.ni             00007FFF70B70000  00007FFF70C60FFF  000f1000
2018-08-16 09:26:06.53 spid115     * System.Xml.ni                  00007FFF5ED00000  00007FFF5F58BFFF  0088c000
2018-08-16 09:26:06.53 spid115     * msxmlsql                       00007FFF70270000  00007FFF70428FFF  001b9000
2018-08-16 09:26:06.53 spid115     * apphelp                        00007FFF81320000  00007FFF81399FFF  0007a000
2018-08-16 09:26:06.53 spid115     * DSROLE                         00007FFF810D0000  00007FFF810D9FFF  0000a000
2018-08-16 09:26:06.53 spid115     * dbghelp                        000000006A9B0000  000000006AB45FFF  00196000
2018-08-16 09:26:06.53 spid115     *
2018-08-16 09:26:06.53 spid115     *     P1Home: 000000000000000B:  
2018-08-16 09:26:06.53 spid115     *     P2Home: 00007FFF724A78A9:  4100000A98A58D48  5F5C415D415E415F  53909090C35D5B5E  18418B28EC834855  4824748948E98B41  50247C8948F08B49  
2018-08-16 09:26:06.53 spid115     *     P3Home: 00000287FD526A20:  00007FFF7420C370  00007FFF7420BE28  00000287FD526A50  00000287FEB6B090  0000000000000000  0000010000000000  
2018-08-16 09:26:06.53 spid115     *     P4Home: 0000028860CE9200:  0000028860CE9180  0000000000000000  0000000000000000  0000028888152E00  0000000000000000  00000287FDA87B38  
2018-08-16 09:26:06.53 spid115     *     P5Home: 0000000000000032:  
2018-08-16 09:26:06.53 spid115     *     P6Home: 0005000500000000:  
2018-08-16 09:26:06.53 spid115     * ContextFlags: 000000000010005F:  
2018-08-16 09:26:06.53 spid115     *      MxCsr: 0000000000001FA8:  
2018-08-16 09:26:06.53 spid115     *      SegCs: 0000000000000033:  
2018-08-16 09:26:06.53 spid115     *      SegDs: 000000000000002B:  
2018-08-16 09:26:06.53 spid115     *      SegEs: 000000000000002B:  
2018-08-16 09:26:06.53 spid115     *      SegFs: 0000000000000053:  
2018-08-16 09:26:06.53 spid115     *      SegGs: 000000000000002B:  
2018-08-16 09:26:06.53 spid115     *      SegSs: 000000000000002B:  
2018-08-16 09:26:06.53 spid115     *     EFlags: 0000000000010202:  
2018-08-16 09:26:06.53 spid115     *        Rax: 0000000000000000:  
2018-08-16 09:26:06.53 spid115     *        Rcx: 00000287FD526A20:  00007FFF7420C370  00007FFF7420BE28  00000287FD526A50  00000287FEB6B090  0000000000000000  0000010000000000  
2018-08-16 09:26:06.53 spid115     *        Rdx: 0000000000000000:  
2018-08-16 09:26:06.53 spid115     *        Rbx: 00000287FD526A20:  00007FFF7420C370  00007FFF7420BE28  00000287FD526A50  00000287FEB6B090  0000000000000000  0000010000000000  
2018-08-16 09:26:06.53 spid115     *        Rsp: 0000008C13DF52E0:  FFFFFFFFFFFFFFFE  0000000000000000  00000287FEB5E828  00000287FDB22A00  00000287FEB6B538  00007FFF5333CBE4  
2018-08-16 09:26:06.53 spid115     *        Rbp: 0000000000000002:  
2018-08-16 09:26:06.53 spid115     *        Rsi: 00000287FD526A20:  00007FFF7420C370  00007FFF7420BE28  00000287FD526A50  00000287FEB6B090  0000000000000000  0000010000000000  
2018-08-16 09:26:06.53 spid115     *        Rdi: 00000287FDB22A00:  00007FFF54CD6428  0000000000000002  00007FFF54CD6448  0000000000000003  00000287FD9C4040  00000287FD9E43C0  
2018-08-16 09:26:06.53 spid115     *         R8: 00007FFF7420C370:  00007FFF72B88750  00007FFF725FA040  00007FFF72B88770  00007FFF72B88930  00007FFF72B88A30  00007FFF72B88A90  
2018-08-16 09:26:06.53 spid115     *         R9: 0000000000000000:  
2018-08-16 09:26:06.53 spid115     *        R10: 0000028865CF4000:  0001000865CF0000  00000288A5E4C040  00000288A5E4C0B8  00000288A5E4C0B8  0000028865CF5570  0000028865CF5640  
2018-08-16 09:26:06.53 spid115     *        R11: 0000000000000003:  
2018-08-16 09:26:06.53 spid115     *        R12: 00007FFF54C3D1C8:  00007FFF5473BC60  00007FFF5472A590  00007FFF5473BC70  00007FFF5473BC80  00007FFF5473BC90  00007FFF5473BCB0  
2018-08-16 09:26:06.53 spid115     *        R13: 0000000000000000:  
2018-08-16 09:26:06.53 spid115     *        R14: 00000287FEB5E828:  00007FFF741FBC08  00007FFF741FBB58  0000000000000001  0000000000000000  0000000000000000  0000006000000005  
2018-08-16 09:26:06.53 spid115     *        R15: 0000008C13DF54E8:  00000287FD51CA00  0000000000000001  00000287FDB06EE8  0000000000000000  00007FFF72558C01  0000000000000000  
2018-08-16 09:26:06.53 spid115     *        Rip: 00007FFF72B88B5F:  0E970D8D48028B48  3B4808408B4C0168  48D0428B483275C1  F8C083480974C085  2C408B03EB2C408B  83C7000000DC8389  
2018-08-16 09:26:06.53 spid115     * *******************************************************************************
2018-08-16 09:26:06.53 spid115     * -------------------------------------------------------------------------------
2018-08-16 09:26:06.53 spid115     * Short Stack Dump
2018-08-16 09:26:06.54 spid115     00007FFF72B88B5F Module(sqlmin+00000000006E8B5F)
2018-08-16 09:26:06.54 spid115     00007FFF5333CBE4 Module(sqllang+00000000004DCBE4)
2018-08-16 09:26:06.54 spid115     00007FFF53012680 Module(sqllang+00000000001B2680)
2018-08-16 09:26:06.54 spid115     00007FFF53010402 Module(sqllang+00000000001B0402)
2018-08-16 09:26:06.54 spid115     00007FFF53011C82 Module(sqllang+00000000001B1C82)
2018-08-16 09:26:06.54 spid115     00007FFF5300DF3E Module(sqllang+00000000001ADF3E)
2018-08-16 09:26:06.54 spid115     00007FFF52FFBEDF Module(sqllang+000000000019BEDF)
2018-08-16 09:26:06.54 spid115     00007FFF52FFBE35 Module(sqllang+000000000019BE35)
2018-08-16 09:26:06.54 spid115     00007FFF52FF1A90 Module(sqllang+0000000000191A90)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0CAB Module(sqllang+0000000000190CAB)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF0C18 Module(sqllang+0000000000190C18)
2018-08-16 09:26:06.54 spid115     00007FFF52FF762F Module(sqllang+000000000019762F)
2018-08-16 09:26:06.54 spid115     00007FFF52FF66C7 Module(sqllang+00000000001966C7)
2018-08-16 09:26:06.54 spid115     00007FFF5316330C Module(sqllang+000000000030330C)
2018-08-16 09:26:06.54 spid115     00007FFF53163041 Module(sqllang+0000000000303041)
2018-08-16 09:26:06.54 spid115     00007FFF52F8C250 Module(sqllang+000000000012C250)
2018-08-16 09:26:06.54 spid115     00007FFF52F8B077 Module(sqllang+000000000012B077)
2018-08-16 09:26:06.54 spid115     00007FFF52F8A539 Module(sqllang+000000000012A539)
2018-08-16 09:26:06.54 spid115     00007FFF52F8A46F Module(sqllang+000000000012A46F)
2018-08-16 09:26:06.54 spid115     00007FFF53DA2DDB Module(sqllang+0000000000F42DDB)
2018-08-16 09:26:06.54 spid115     00007FFF53B92ED4 Module(sqllang+0000000000D32ED4)
2018-08-16 09:26:06.54 spid115     00007FFF53B933CD Module(sqllang+0000000000D333CD)
2018-08-16 09:26:06.54 spid115     00007FFF53267E73 Module(sqllang+0000000000407E73)
2018-08-16 09:26:06.54 spid115     00007FFF52FE7A98 Module(sqllang+0000000000187A98)
2018-08-16 09:26:06.54 spid115     00007FFF52FE854F Module(sqllang+000000000018854F)
2018-08-16 09:26:06.54 spid115     00007FFF53B53329 Module(sqllang+0000000000CF3329)
2018-08-16 09:26:06.54 spid115     00007FFF52FE5DDD Module(sqllang+0000000000185DDD)
2018-08-16 09:26:06.54 spid115     00007FFF5313C3F4 Module(sqllang+00000000002DC3F4)
2018-08-16 09:26:06.54 spid115     00007FFF52FE5DDD Module(sqllang+0000000000185DDD)
2018-08-16 09:26:06.54 spid115     00007FFF5301B0C6 Module(sqllang+00000000001BB0C6)
2018-08-16 09:26:06.54 spid115     00007FFF52FE5DDD Module(sqllang+0000000000185DDD)
2018-08-16 09:26:06.54 spid115     00007FFF53003185 Module(sqllang+00000000001A3185)
2018-08-16 09:26:06.54 spid115     00007FFF52FE5DDD Module(sqllang+0000000000185DDD)
2018-08-16 09:26:06.54 spid115     00007FFF52FE63D8 Module(sqllang+00000000001863D8)
2018-08-16 09:26:06.54 spid115     00007FFF52FE5DDD Module(sqllang+0000000000185DDD)
2018-08-16 09:26:06.54 spid115     00007FFF52FE5E1D Module(sqllang+0000000000185E1D)
2018-08-16 09:26:06.54 spid115     00007FFF52FE37CB Module(sqllang+00000000001837CB)
2018-08-16 09:26:06.54 spid115     00007FFF52F8BBC8 Module(sqllang+000000000012BBC8)
2018-08-16 09:26:06.54 spid115     00007FFF52F8AEE0 Module(sqllang+000000000012AEE0)
2018-08-16 09:26:06.54 spid115     00007FFF52F8A539 Module(sqllang+000000000012A539)
2018-08-16 09:26:06.54 spid115     00007FFF52F8A46F Module(sqllang+000000000012A46F)
2018-08-16 09:26:06.54 spid115     00007FFF52E73020 Module(sqllang+0000000000013020)
2018-08-16 09:26:06.54 spid115     00007FFF52E7AEAB Module(sqllang+000000000001AEAB)
2018-08-16 09:26:06.54 spid115     00007FFF52E7F734 Module(sqllang+000000000001F734)
2018-08-16 09:26:06.55 spid115     00007FFF52E7F853 Module(sqllang+000000000001F853)
2018-08-16 09:26:06.55 spid115     00007FFF71725CAD Module(sqldk+0000000000005CAD)
2018-08-16 09:26:06.55 spid115     00007FFF71725A85 Module(sqldk+0000000000005A85)
2018-08-16 09:26:06.55 spid115     00007FFF717256D9 Module(sqldk+00000000000056D9)
2018-08-16 09:26:06.55 spid115     00007FFF7173DB98 Module(sqldk+000000000001DB98)
2018-08-16 09:26:06.55 spid115     00007FFF7173DC20 Module(sqldk+000000000001DC20)
2018-08-16 09:26:06.55 spid115     00007FFF7173D846 Module(sqldk+000000000001D846)
2018-08-16 09:26:06.55 spid115     00007FFF7173DEA8 Module(sqldk+000000000001DEA8)
2018-08-16 09:26:06.56 spid115     00007FFF86808364 Module(KERNEL32+0000000000008364)
2018-08-16 09:26:06.56 spid115     00007FFF86B7E851 Module(ntdll+000000000006E851)
2018-08-16 09:26:06.56 spid115     Stack Signature for the dump is 0x00000000AB9E0103
...

Database Snapshot goes Suspect

$
0
0

We have an 800GB database that we take a database snapshot of prior to our product deployments.  The last two times the next day the snapshot has gone in to suspect mode.  The difference file created as the snapshot is only around 30GB.  The drive the data files and difference file is on has 200GB of free space.  If we have reached a limit with the snapshot compatibility we will have to figure out other protections for our deployments.  We are running on Windows 2012 R2 servers and this is happening on SQL 2016 enterprise.

The operating system returned error 665(The requested operation could not be completed due to a file system limitation) to SQL Server during a write at offset 0x000020fc6b0000 in file 'S:\SQLData\NLS.mdf20180815140954_ss'. Additional messages in the SQL Server error log and system event log may provide more detail. This is a severe system-level 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.


Error: 17053, Severity: 16, State: 1.


S:\SQLData\NLS.mdf20180815140954_ss: Operating system error 665(The requested operation could not be completed due to a file system limitation) encountered.


Error: 3420, Severity: 21, State: 1.

SQLServerAgent security context error on agent startup

$
0
0

Hello, 

Having an issue after installing fix => MSSQL 2016 SP2 CU2 security update (build 13.0.5161.0), released 14 of August 2018: https://support.microsoft.com/en-us/help/4293807/description-of-the-security-update-for-the-remote-code-execution-vulne 

SQL Server Agent shows error on startup. It is starting up and working. But before this fix didn't had this problem. Can see this on 2 servers updated with this patch. Without this fix - no errors on sql 2016 (build 13.0.5153.0). 

==========================================
Log Name:      Application
Source:        SQLSERVERAGENT
Date:          8/17/2018 3:49:07 PM
Event ID:      106
Task Category: Service Control
Level:         Error
Keywords:      Classic
User:          N/A
Computer:     
Description:
SQLServerAgent security context does not have server-autorestart privileges.
==========================================

The SQL Agent service account:

  • is AD account
  • configured using SQL server configuration manager
  • not in server local Administrator group
  • has rights for "logon as a service", "replace a process-level token", "bypass traverse checking", "adjust memory quotas for a process". 

Why error states about server-autorestart (not service-autorestart? the feature that is in sql agent for starting services again on failure) 

Is something missing in security setup for SQL agent account? Checked according requirements - it looks that all required privileges are in place, and there were no errors before, no problems with sql agent account security occurred... 

Anyone has the same? 


Lolita Broka

Lost connection to MSSQL Server.

$
0
0

Hi there.

I work with my Community Edition MSSQL almost every day and yesterday I spent a few hours. I have a large C# program (a form) that accesses database tables all the time. Yesterday everything worked. This morning I tried to run the form and got an exception,the server could not be reached. I checked MS Visual Studio and got this error message:

TITLE: Connect to Server
------------------------------

Cannot connect to DESKTOP-54NQG25.

------------------------------
ADDITIONAL INFORMATION:

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 2)

For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&EvtSrc=MSSQLServer&EvtID=2&LinkId=20476

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

The system cannot find the file specified

------------------------------
BUTTONS:

OK
------------------------------

Where is the problem? Is it in the database file or in the data engine?

What shall I do? It has happened before many times but I forgot how I wiggled out of it. I am getting really tired of this sick system.

The error message seems to say that it is the Server, not the database files, right? How can such things be prevented? Shall I reinstall the SQL Server? That link, the error message has, is useless, the site offers stuff for sale.

- MyCatAlex





SQL Update query error

$
0
0

Hi Support,

I am getting below error massage while closing the sql query, SQL server 2012 STD  edition 11.0.6248.0(KB3194721)





Regards

Suresh

Reasons for applying KB4057113 on SQL Server 2008 R2 (SP3)

$
0
0

Hello All,

I have prod box and the version is Microsoft SQL Server 2008 R2 (SP3) - 10.50.6220.0 (X64) .

Security team has ran vulnerability report and they requested to apply KB4057113 (Security patch) on the server, but i need to provide the reason to the customer before applying patch. i googled but i did not found anything or bugs which was fixed by KB4057113.

So can you guys please provide some reasons to apply KB4057113 on the server?

Br

ChetanV 

Insufficient disk space in filegroup

$
0
0

I have SQL Server 2012 and Windows Server 2012 R2 Standard. I have a database with 108 GB. The log file with 16GB. The log Hard disk has 200Gb and it has free almost 86Gb. The data hard disk has 1,26 TB and it has free more than 256 Gb.

When I try to do anything with the database, just create indexes for example, or compress indexes or tables, I get this error:

Msg 1101, Level 17, State 12, Line 29
Could not allocate a new page for database '' because of insufficient disk space in filegroup 'PRIMARY'. Create the necessary space by dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.

When I try to increase the size of the file of the database I get the next error

Msg 5149, Level 16, State 3, Line 5
MODIFY FILE encountered operating system error 665(The requested operation could not be completed due to a file system limitation) while attempting to expand the physical file

In the SQL Instance properties the limit of server memory is more than 2 million GB. 

With a backup it doesn't decrease the log file.

I have cleaned of stuff the data and log database. The hard disk is 5% fragmented.

How could I turn operative again the database?


SQL error

$
0
0

Hi Team,

I found this error in one of my windows server. I don't exactly what is this error please help us. 

msdb.dbo.sp_delete_backuphistory running every night

$
0
0

Hi

I have found that on one of our SQL Servers the sp_delete_backuphistory job is running every night to clear down to 30 days. There is no job running to do this and I cannot see a scheduled task either.

I ran an extended event to capture when it ran but it only shows that is run on the server. Can anyone let me know how I can see what is running this?

The Extended event XML is below.

Thanks

<event name="rpc_completed" package="sqlserver" timestamp="2018-08-10T19:31:28.744Z"><data name="cpu_time"><value>1969000</value></data><data name="duration"><value>10701872</value></data><data name="physical_reads"><value>9756</value></data><data name="logical_reads"><value>516068</value></data><data name="writes"><value>23819</value></data><data name="result"><value>0</value><text><![CDATA[OK]]></text></data><data name="row_count"><value>63217</value></data><data name="connection_reset_option"><value>0</value><text><![CDATA[None]]></text></data><data name="object_name"><value><![CDATA[sp_executesql]]></value></data><data name="statement"><value><![CDATA[exec sp_executesql N'EXEC msdb..sp_delete_backuphistory @oldest_date = @date',N'@date datetime',@date='2018-07-11 20:31:18.030']]></value></data><data name="data_stream"><value/></data><data name="output_parameters"><value/></data><action name="username" package="sqlserver"><value><![CDATA[sd\sqlservice]]></value></action><action name="sql_text" package="sqlserver"><value><![CDATA[(@date datetime)EXEC msdb..sp_delete_backuphistory @oldest_date = @date]]></value></action><action name="server_instance_name" package="sqlserver"><value><![CDATA[SQL-SRV01]]></value></action><action name="database_name" package="sqlserver"><value><![CDATA[msdb]]></value></action><action name="client_hostname" package="sqlserver"><value><![CDATA[SQL-SRV01]]></value></action><action name="client_app_name" package="sqlserver"><value><![CDATA[.Net SqlClient Data Provider]]></value></action></event>

Viewing all 15930 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>