Search

c0000005 EXCEPTION_ACCESS_VIOLATION by lucas.leonan

Closed
as External Help for as External

1
0
Sign in
to vote
Type: Bug
ID: 780211
Opened: 2/28/2013 2:38:11 AM
Access Restriction: Public
0
Workaround(s)
0
User(s) can reproduce this bug

J have problem with error in SQL SERVER. One time per day I have EXCEPTION_ACCESS_VIOLATION and stack dump.
Details (expand)

Product Language

English

Version

SQL Server 2008 R2

Category

SQL Engine

Operating System

Windows Server 2008 Standard

Operating System Language

English

Steps to Reproduce



create table #ss (db varchar(50),name varchar(50),rows varchar(50),reserved varchar(50),data varchar(50),index_size varchar(50),unused varchar(50),last_update datetime)
--create table #ss (db varchar(50),name varchar(50),rows varchar(50),reserved varchar(50),data varchar(50),index_size varchar(50),unused varchar(50))

EXEC sp_MSForEachTable 'insert into #ss (name,rows,reserved,data,index_size,unused) EXEC sp_spaceused ''?'', false; '         
update #ss set db='crsqlarch.elxmas_pf_arch' where db is null
    update #ss set reserved = REPLACE(reserved ,' KB','')
     update #ss set data = REPLACE(data ,' KB','')         
     update #ss set index_size = REPLACE(index_size ,' KB','')         
     update #ss set last_update =(SELECT max(last_user_update)FROM sys.dm_db_index_usage_stats where database_id = DB_ID () and [OBJECT_ID] =OBJECT_ID(name))
    select * from #ss order by convert(int,reserved) desc
drop table #ss

Actual Results


Stack dump

Expected Results


Information about data.

Platform

X64

Virtualization

 
File Attachments
File Name Submitted By Submitted On File Size  
log.txt (restricted) 2/28/2013 -
SQLDump0057.txt (restricted) 3/4/2013 -
SQLDump0057.zip (restricted) 3/4/2013 -
Sign in to post a comment.
Posted by Microsoft on 4/18/2013 at 7:16 PM
Thanks for reporting this. This issue is resolved in SQL Server 2012.
Posted by Microsoft on 3/20/2013 at 11:08 AM
Hello Lucas,

I am developer owning the feature. SQL2012 and SQL2008R2 works quite differently internally.
There is no patch and CU at this moment. And I have not yet known how to fix it.
Is this problem blocking you? or you just want to know the status about this bug only?
If this is a critical issue for you, then I need to talk to a program manager and see how we can make it for a later CU.

Thanks,
Bryan
Posted by lucas.leonan on 3/18/2013 at 12:43 AM
Yes, but in 2014, maybe. Do you now how fix this in SQL008 R2? Any patch or CU?
Posted by Microsoft on 3/15/2013 at 11:39 AM
Hello Lucas,

This problem is fixed in SQL Server 2012. Are you planning to migrate from SQL Server 2008 R2 to newer version of SQL Server?

Thanks,
Rinku.
Posted by Microsoft on 3/8/2013 at 2:10 PM
Thank you Lucas. We are investigating further and will get back to you.

Peter
Posted by lucas.leonan on 3/4/2013 at 12:43 AM
Hello Peter,
I uploaded files.
Posted by Microsoft on 3/3/2013 at 1:37 PM
Hello Lucas,

Can you please send 1 or more dump files from this exception?

Thank you,
Peter Shier
Microsoft
Sign in to post a workaround.