Quantcast
Channel: SQL Server Database Engine Forum
Viewing all 15872 articles
Browse latest View live

SQL Server 2012 Express with Advanced Services (contains the database engine, Express Tools, Reporting Services)

$
0
0

Hi all,

A new Microsoft SQL Server 2012 Express with Advanced Services (contains the database engine, Express Tools, Reporting Services and Full Text Search) was just installed in my "Windows 7" PC.  I saw the following files and folders in my C:Drive: (i) "Microsoft SQL Server 2012" folder that has Import and Export Data (32-bit), Import and Export Data (64-bit), SQL Server Data Tools, SQL Server Management Studio; (ii) "Configuration Tools" folder that has Reporting Services Configuration, SQL Server Configuration Manager, SQL Server Error and Usage Report..; (iii) "Documentation & Community" folder; (iv) "Integration Services" folder that has Data Profile Viewer, Deployment Wizard, Execute Package Utility, Project Conversion Wizard.

In my SQL Server 2012 Management Studio (SSMS 2012), I have a database "SHCSQLEXPRESS" that has 2 dbo Tables (NAB-WK-1234567.dbo.Table_1_APG_XYcoord and NAB-WK-1234567.dbo.Table_2_Soil).  I can do "JOIN" on the 2 Tables, then do"Query" to extract the "useful" chemical data in the result set of my T-SQL output (I posted my questions and results in this Forum about 2 weeks ago).  I plan to do the "Reporting Services" in the SQL Server 2012 Express/SQL Server 2012 Management Studio (SSMS 2012), but I don't know how to proceed.  Could you please kindly help me and give me the necessary tips/key steps and procedures of "Reporting Services" by using the SQL Server 2012 Express and SQL Server 2012 Management Studio (SSMS 2012)?

Thanks in advance,

Scott Chang

P. S. From http://msdn.microsoft.com/en-us/library, I read the following:

SQL Server 2012 Reporting Services Tutorials (SSRS): (1) Create a Data-Driven Subscrition (SSRS Tutorial)-3 Lessons using the "AdventureWorksDataSet" and (2) Create a Basic Table Report (SSRS Totorial).

I did not gain much from these 2 sets of tutorials about the Reporting Services of SSRS. 






I got above error whenever my server rebooted only.

$
0
0

Getting error: BackupDiskFile::CreateMedia: Backup device 'C:\Backups\SharePoint\spbr0004\00000008.bak' failed to create. Operating system error 3(failed to retrieve text for this error. Reason: 15100).

I got above error whenever my server rebooted only.It tries to take the backup of sharepoint database.But I have checked there is no such job or procedure who do this.

Is it anything saved in MSDB due to which it is going ?


Thanks

SQL Memory Issue

$
0
0

Dear Expert,

     I hope someone already dicuss before i post this topic. But I believe someone can explain to me why SQL memory usage is high after run the T-SQL or process (i want to hear my testing is wrong or not). I have Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64)   Microsoft Corporation  Developer Edition (64-bit) (Build 3790: Service Pack 2)  on Windows XP-64Bit. I set 10240 MB at "Maximum Server Memory". I want to know memory usage before and after finish working process. How am i test it, I run rebuild index used below sql script.

SET NOCOUNT ON
GO
--Set the fillfactor
DECLARE @FillFactor TINYINT
SELECT @FillFactor=80
DECLARE @StartTime DATETIME
SELECT @StartTime=GETDATE()
if object_id('tempdb..#TablesToRebuildIndex') is not null
begin
drop table #TablesToRebuildIndex
end
DECLARE @NumTables VARCHAR(20)
SELECT
s.[Name] AS SchemaName,
t.[name] AS TableName,
SUM(p.rows) AS RowsInTable
INTO #TablesToRebuildIndex
FROM
sys.schemas s
LEFT JOIN sys.tables t
ON  s.schema_id = t.schema_id
LEFT JOIN sys.partitions p
ON  t.object_id = p.object_id
LEFT JOIN sys.allocation_units a
ON  p.partition_id = a.container_id
WHERE
p.index_id IN ( 0, 1 ) -- 0 heap table , 1 table with clustered index
AND p.rows IS NOT NULL
AND a.type = 1  -- row-data only , not LOB
GROUP BY
s.[Name],
t.[name]
SELECT @NumTables=@@ROWCOUNT
DECLARE RebuildIndex CURSOR FOR
SELECT
ROW_NUMBER() OVER (ORDER BY ttus.RowsInTable),
ttus.SchemaName,
ttus.TableName,
ttus.RowsInTable
FROM
#TablesToRebuildIndex AS ttus
ORDER BY
ttus.RowsInTable
OPEN RebuildIndex
DECLARE @TableNumber VARCHAR(20)
DECLARE @SchemaName NVARCHAR(128)
DECLARE @tableName NVARCHAR(128)
DECLARE @RowsInTable VARCHAR(20)
DECLARE @Statement NVARCHAR(300)
DECLARE @Status NVARCHAR(300)
FETCH NEXT FROM RebuildIndex INTO @TableNumber, @SchemaName, @tablename, @RowsInTable
WHILE ( @@FETCH_STATUS = 0 )
BEGIN
SET @Status='Table '+@TableNumber+' of '+@NumTables+': Rebuilding indexes on '+@SchemaName+'.'+@tablename + ' ('+@RowsInTable+' rows)'
--RAISERROR (@Status, 0, 1) WITH NOWAIT  --RAISERROR used to immediately output status
PRINT @Status
SET @Statement = 'ALTER INDEX ALL ON ['+@SchemaName+'].['+@tablename +'] REBUILD WITH (FILLFACTOR = '+CONVERT(VARCHAR(3), @FillFactor)+' )'
EXEC sp_executesql @Statement
FETCH NEXT FROM RebuildIndex INTO @TableNumber, @SchemaName, @tablename, @RowsInTable
END
CLOSE RebuildIndex
DEALLOCATE RebuildIndex
drop table #TablesToRebuildIndex
Print 'Total Elapsed Time: '+CONVERT(VARCHAR(100), DATEDIFF(minute, @StartTime, GETDATE()))+' minutes'
GO

Before i run above script, i run below script for memory usage of each database.

select db_name(database_id),(cast(count(*) as bigint)*8192)/1024 as "size in mb" from sys.dm_os_buffer_descriptors 
group by db_name(database_id) 

My Database size

MDF - 184 MB

NDF - 52.3 GB

LDF - 2.03 GB

Here is memory usage before and after run rebuild index.

Before Memory usage - 55808MB(using T-SQL)

After Memory usage - 9883216MB (using T-SQL) - I wait 1 hour but memory usage is high. That's why i restart service.

After restart SQL Service Memory usage - 55808MB

Is it something wrong my testing? Or is it anyway to test memory usage? Why memory usage is high until restart the service?

Best Regards,

Yukon


Make Simple & Easy

We wants to know the threshold value (MS-SQL server) which they configured.

$
0
0

Dear All,

Users to use the Monitor tool will have configured the threshold value.

We wants to know the threshold value (MS-SQL server) which they configured.

That is to say, we wish to refer to the threshold value which different users configured.

We also know that thresholds are based on business policies. But we wants to refer to other users.

Monitored Items:

1. Memory Usage
    - Total Memory, SQL Cache Memory, Lock Memory, Optimizer Memory, Connection Memory, Granted WorkSpace Memory, Memory Grants Pending, Memory Grant Success

2. Buffer Manager Statistics
    - Buffer Hit Ratio, Page Lookups/Min, Page Reads/Min, Page Writes/Min, Total Pages, Database Pages, Free Pages

3.  Connection Statistics
    - Connection Time, Active Connections, Logins/Min, Logouts/Min

4. Cache Details
    - Cache Hit Ratio, Cache Used/Min, Cache Count, Cache Pages

5. Lock Details
    - Lock Requests/Min, Lock Waits/Min, Lock Timeouts/Min, Deadlocks/Min, Average Lock Wait Time

6. SQL Statistics
    - Batch Requests/Min, SQL Compilations/Min, SQL Recompilations/Min, AutoParams/Min, Failed AutoParams/Min

7. Latch Details
    - Latch Waits/Min, Average Latch Wait Time

8. Access Method Details
    - Full Scans/Min, Range Scans/Min, Probe Scans/Min

Thank you in advance.

How to fix Filestream enabled database

$
0
0

I have SQL Server 2008 R2 FileStream enabled Database, when I try to access any value that stored in the filestream I get the following error :

Msg 233, Level 20, State 0, Line 0
A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.)

I read about that exception and Microsoft has KB for it (KB972936), but it also didn't worked after I installed its hotfix.

If I SELECT the count of the records in that table using :

SELECT COUNT(1) FROM [Table_Name]

I get a correct result.

Here is some details for the database files and filegroups :

The database have 2 files the "Row Data" file and the "Log" file where it should also contains the "Filestream Data" item.

The database has the following filegroups :

  • Rows : PRIMARY with 1 File
  • Filestream : [MyFileName] with 0 Files !

Here is a snapshots for the DB properties page

And here is the full SQL ERRORLOG file.


why the value for virtual_address_space_committed_kb is different from VM Commited

$
0
0

select * from [sys].[dm_os_process_memory]
DBCC memorystatus()

I run the above command ,and found that the value for virtual_address_space_committed_kb is 684964, but VM Commited from DBCC memorystatus() is 496596. why they are different ,does mean they are refer to different things?



Add partitions

$
0
0

SQL 2012

I have an existing partition function which has about 50 partitions (by date).  As the “last date” approaches, I want to modify the function and add 50 more date partitions so that as new data comes into the table, it gets put into the new partitions, rather than on the last partition (which is what would happen if I don’t extend the function).

All this being said, do I also need to modify the partition scheme?  Or only the function?

Thanks, Andre


André

SQL Server 2012 Linked Server Object to Access Database Engine

$
0
0
I have a SQL Server 2012 installed with Microsoft Access Database Engine 2010 (64 bit).  But I failed to create a linked object to access a .mdb file.  It prompts "Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "TEST".  (Microsoft SQL Server, Error: 7303).  How could I resolve this error.

Browse SQL servers on other subnet

$
0
0

Hi!

We have several SQL servers located on several subnets, and some users want to be able to use the browse function when they connect to a SQL servers instead of typing in the hostname manually. But we are not able to see SQL servers on different subnet, is this because the firewall block broadcast? We can reach the serves if we type in the hostname, but that is not what the users want.

To information, im not a SQL person :)

Thanks for reply

/R

Andreas

Can we change sql server from default instance to named insatnce?

$
0
0

If so, Please provide the way to do?

Thank you.

Regards

Sushil

SSMS vs. SQLCMD performance

$
0
0

Hi,

I see very different performance when running the below setup in the same set of queries in SSMS and SQLCMD locally on a SQL server 2008 R2 cluster.

Scripts to run:

create new empty database and one empty table with a clustered index. SSMS 1 sec / SQLCMD 1 sec

Insert 10K rows SSMS 11 sec / SQLCMD 3 min 7 sec

drop db SSMS 0 sec / SQLCMD 1 sec

I've tried to run a SQL server profiler with Showplan XML and SQL:stmtCompleted enabled.

In both cases the showPlan for the statements show that we are doing a clustered index insert and the read/writes/durations are comparable. 

I've had a look at this post: http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/thread/777c6113-d190-4080-8508-6344b03bbb91 and tried to add the SET statements from SSMS->Tools-Options->query executions->SQL server to the scripts that we run but with no change in performance.

One thing that DID help is to disable the count of row affected by the TSQL statement that is being returned as a part of the result. This makes the execution via. SQLCMD perform with more or less the same elapsed time. So when the result that SQLCMD receives as a client contains a less amount of data then the elapsed time is lowered.  Unfortunately this is not a fix to the solution as the meta data is used by the receiving application. 

So what is causing the performance difference  - SSMS vs. SQLCMD ? 

Does the two use different network protocols ?  Its a clustered environment so I cant force the SQLCMD to used sharedmemory.

Should I adjust the screenbuffer size of the Command Prompt ?

Could it be network related even if I run this locally on a cluster ?

Any kind of input is appreciated. Thanks


sql server service terminated unexpectedly

$
0
0
A SQL crash has occurred on a clustered SQL Server 2008 R2 SP2 system. The service crashed and restarted itself, any pointers?

Error in event log:
The SQL Server service terminated unexpectedly. It has done this 4 times.

Looking at the error log, the detail is only

ex_terminator - Last chance exception handling

And stack dump:

2013-04-19 05:26:14.36 Server      Using 'dbghelp.dll' version '4.0.5'
2013-04-19 05:26:14.44 Server      **Dump thread - spid = 0, EC = 0x0000000000000000
2013-04-19 05:26:14.44 Server      ***Stack Dump being sent to E:\043E\MSSQL10_50\MSSQL\LOG\SQLDump0036.txt
2013-04-19 05:26:14.44 Server      * *******************************************************************************
2013-04-19 05:26:14.44 Server      *
2013-04-19 05:26:14.44 Server      * BEGIN STACK DUMP:
2013-04-19 05:26:14.44 Server      *   04/19/13 05:26:14 spid 46924
2013-04-19 05:26:14.44 Server      *
2013-04-19 05:26:14.44 Server      * ex_terminator - Last chance exception handling
2013-04-19 05:26:14.44 Server      *
2013-04-19 05:26:14.44 Server      *
2013-04-19 05:26:14.44 Server      *  MODULE                          BASE      END       SIZE
2013-04-19 05:26:14.44 Server      * sqlservr                       0000000000350000  0000000003EFDFFF  03bae000
2013-04-19 05:26:14.44 Server      * ntdll                          0000000076EC0000  0000000077045FFF  00186000
2013-04-19 05:26:14.44 Server      * kernel32                       0000000076CC0000  0000000076DECFFF  0012d000
2013-04-19 05:26:14.44 Server      * ADVAPI32                       000007FEFEFE0000  000007FEFF0E7FFF  00108000
2013-04-19 05:26:14.44 Server      * RPCRT4                         000007FEFD6C0000  000007FEFD802FFF  00143000
2013-04-19 05:26:14.44 Server      * MSVCR80                        0000000074790000  0000000074858FFF  000c9000
2013-04-19 05:26:14.44 Server      * msvcrt                         000007FEFD620000  000007FEFD6BBFFF  0009c000
2013-04-19 05:26:14.44 Server      * MSVCP80                        0000000074610000  0000000074718FFF  00109000
2013-04-19 05:26:14.44 Server      * sqlos                          0000000075140000  0000000075146FFF  00007000
2013-04-19 05:26:14.44 Server      * Secur32                        000007FEFD460000  000007FEFD47BFFF  0001c000
2013-04-19 05:26:14.44 Server      * pdh                            000007FEFA560000  000007FEFA5AFFFF  00050000
2013-04-19 05:26:14.44 Server      * SHLWAPI                        000007FEFE4D0000  000007FEFE542FFF  00073000
2013-04-19 05:26:14.44 Server      * GDI32                          000007FEFE550000  000007FEFE5B3FFF  00064000
2013-04-19 05:26:14.44 Server      * USER32                         0000000076DF0000  0000000076EBCFFF  000cd000
2013-04-19 05:26:14.44 Server      * USERENV                        000007FEFD480000  000007FEFD4A5FFF  00026000
2013-04-19 05:26:14.44 Server      * WINMM                          000007FEFB440000  000007FEFB478FFF  00039000
2013-04-19 05:26:14.44 Server      * ole32                          000007FEFEE00000  000007FEFEFD7FFF  001d8000
2013-04-19 05:26:14.44 Server      * OLEAUT32                       000007FEFEBB0000  000007FEFEC82FFF  000d3000
2013-04-19 05:26:14.44 Server      * OLEACC                         000007FEFB3E0000  000007FEFB434FFF  00055000
2013-04-19 05:26:14.44 Server      * IPHLPAPI                       000007FEFCCB0000  000007FEFCCD2FFF  00023000
2013-04-19 05:26:14.44 Server      * dhcpcsvc                       000007FEFCB60000  000007FEFCBA4FFF  00045000
2013-04-19 05:26:14.44 Server      * DNSAPI                         000007FEFCF00000  000007FEFCF39FFF  0003a000
2013-04-19 05:26:14.44 Server      * WS2_32                         000007FEFE8F0000  000007FEFE933FFF  00044000
2013-04-19 05:26:14.44 Server      * NSI                            000007FEFD610000  000007FEFD616FFF  00007000
2013-04-19 05:26:14.44 Server      * WINNSI                         000007FEFCCA0000  000007FEFCCA9FFF  0000a000
2013-04-19 05:26:14.44 Server      * dhcpcsvc6                      000007FEFCC00000  000007FEFCC2AFFF  0002b000
2013-04-19 05:26:14.44 Server      * opends60                       0000000075130000  0000000075137FFF  00008000
2013-04-19 05:26:14.44 Server      * NETAPI32                       000007FEFCF80000  000007FEFD022FFF  000a3000
2013-04-19 05:26:14.44 Server      * PSAPI                          0000000077060000  0000000077068FFF  00009000
2013-04-19 05:26:14.44 Server      * BatchParser                    0000000072A00000  0000000072A2CFFF  0002d000
2013-04-19 05:26:14.44 Server      * IMM32                          000007FEFF110000  000007FEFF13CFFF  0002d000
2013-04-19 05:26:14.44 Server      * MSCTF                          000007FEFEC90000  000007FEFED91FFF  00102000
2013-04-19 05:26:14.44 Server      * LPK                            000007FEFE660000  000007FEFE66CFFF  0000d000
2013-04-19 05:26:14.44 Server      * USP10                          000007FEFF140000  000007FEFF1D9FFF  0009a000
2013-04-19 05:26:14.44 Server      * comctl32                       000007FEFBCE0000  000007FEFBED8FFF  001f9000
2013-04-19 05:26:14.44 Server      * instapi10                      0000000071060000  000000007106CFFF  0000d000
2013-04-19 05:26:14.44 Server      * CLUSAPI                        000007FEF9600000  000007FEF963EFFF  0003f000
2013-04-19 05:26:14.44 Server      * NTDSAPI                        000007FEFCE90000  000007FEFCEB5FFF  00026000
2013-04-19 05:26:14.44 Server      * WLDAP32                        000007FEFD810000  000007FEFD864FFF  00055000
2013-04-19 05:26:14.44 Server      * cryptdll                       000007FEFD350000  000007FEFD363FFF  00014000
2013-04-19 05:26:14.44 Server      * ACTIVEDS                       000007FEF9570000  000007FEF95B4FFF  00045000
2013-04-19 05:26:14.44 Server      * adsldpc                        000007FEF9390000  000007FEF93CBFFF  0003c000
2013-04-19 05:26:14.44 Server      * credui                         000007FEF8FF0000  000007FEF9025FFF  00036000
2013-04-19 05:26:14.44 Server      * SHELL32                        000007FEFD870000  000007FEFE4C2FFF  00c53000
2013-04-19 05:26:14.44 Server      * ATL                            000007FEFC370000  000007FEFC388FFF  00019000
2013-04-19 05:26:14.44 Server      * RESUTILS                       000007FEF9460000  000007FEF9476FFF  00017000
2013-04-19 05:26:14.44 Server      * cscapi                         000007FEF9D00000  000007FEF9D0CFFF  0000d000
2013-04-19 05:26:14.44 Server      * sqlevn70                       0000000070730000  0000000070930FFF  00201000
2013-04-19 05:26:14.44 Server      * rsaenh                         000007FEFC6E0000  000007FEFC727FFF  00048000
2013-04-19 05:26:14.44 Server      * AUTHZ                          000007FEFD0E0000  000007FEFD105FFF  00026000
2013-04-19 05:26:14.44 Server      * MSCOREE                        000007FEF5FF0000  000007FEF605EFFF  0006f000
2013-04-19 05:26:14.44 Server      * mscoreei                       000007FEF4AC0000  000007FEF4B4FFFF  00090000
2013-04-19 05:26:14.44 Server      * CRYPT32                        000007FEFCD10000  000007FEFCE47FFF  00138000
2013-04-19 05:26:14.44 Server      * MSASN1                         000007FEFCEC0000  000007FEFCED8FFF  00019000
2013-04-19 05:26:14.44 Server      * credssp                        000007FEFCBD0000  000007FEFCBD8FFF  00009000
2013-04-19 05:26:14.44 Server      * schannel                       000007FEFC770000  000007FEFC7C8FFF  00059000
2013-04-19 05:26:14.44 Server      * msv1_0                         000007FEFC9C0000  000007FEFCA04FFF  00045000
2013-04-19 05:26:14.44 Server      * kerberos                       000007FEFCA10000  000007FEFCAB5FFF  000a6000
2013-04-19 05:26:14.44 Server      * mswsock                        000007FEFC970000  000007FEFC9BEFFF  0004f000
2013-04-19 05:26:14.44 Server      * wshtcpip                       000007FEFC5E0000  000007FEFC5E6FFF  00007000
2013-04-19 05:26:14.44 Server      * wship6                         000007FEFCBC0000  000007FEFCBC6FFF  00007000
2013-04-19 05:26:14.44 Server      * NLAapi                         000007FEFC3F0000  000007FEFC402FFF  00013000
2013-04-19 05:26:14.44 Server      * napinsp                        000007FEFB360000  000007FEFB372FFF  00013000
2013-04-19 05:26:14.44 Server      * winrnr                         000007FEFB390000  000007FEFB39AFFF  0000b000
2013-04-19 05:26:14.44 Server      * rasadhlp                       000007FEFB8F0000  000007FEFB8F7FFF  00008000
2013-04-19 05:26:14.44 Server      * security                       00000000742E0000  00000000742E3FFF  00004000
2013-04-19 05:26:14.44 Server      * ftimport                       0000000060000000  0000000060024FFF  00025000
2013-04-19 05:26:14.44 Server      * MSFTE                          0000000049980000  0000000049D2DFFF  003ae000
2013-04-19 05:26:14.44 Server      * VERSION                        000007FEFCBB0000  000007FEFCBBAFFF  0000b000
2013-04-19 05:26:14.44 Server      * dbghelp                        00000000713A0000  00000000714FDFFF  0015e000
2013-04-19 05:26:14.44 Server      * WINTRUST                       000007FEFB900000  000007FEFB938FFF  00039000
2013-04-19 05:26:14.44 Server      * imagehlp                       000007FEFF0F0000  000007FEFF107FFF  00018000
2013-04-19 05:26:14.44 Server      * NTMARTA                        000007FEFC630000  000007FEFC65BFFF  0002c000
2013-04-19 05:26:14.44 Server      * SAMLIB                         000007FEFCEE0000  000007FEFCEFBFFF  0001c000
2013-04-19 05:26:14.44 Server      * ncrypt                         000007FEFCB10000  000007FEFCB51FFF  00042000
2013-04-19 05:26:14.44 Server      * dssenh                         000007FEF83F0000  000007FEF8423FFF  00034000
2013-04-19 05:26:14.44 Server      * bcrypt                         000007FEFCAC0000  000007FEFCB0FFFF  00050000
2013-04-19 05:26:14.44 Server      * CLBCatQ                        000007FEFE5C0000  000007FEFE658FFF  00099000
2013-04-19 05:26:14.44 Server      * sqlncli10                      000000006E370000  000000006E627FFF  002b8000
2013-04-19 05:26:14.44 Server      * COMCTL32                       000007FEFB4E0000  000007FEFB57FFFF  000a0000
2013-04-19 05:26:14.44 Server      * COMDLG32                       000007FEFEB20000  000007FEFEBABFFF  0008c000
2013-04-19 05:26:14.44 Server      * SQLNCLIR10                     000000006EC30000  000000006EC66FFF  00037000
2013-04-19 05:26:14.44 Server      * xpsqlbot                       0000000075100000  0000000075107FFF  00008000
2013-04-19 05:26:14.44 Server      * xpstar                         0000000071250000  00000000712D7FFF  00088000
2013-04-19 05:26:14.44 Server      * SQLSCM                         0000000074550000  000000007455DFFF  0000e000
2013-04-19 05:26:14.44 Server      * ODBC32                         000007FEF94D0000  000007FEF9541FFF  00072000
2013-04-19 05:26:14.44 Server      * ATL80                          0000000071040000  000000007105FFFF  00020000
2013-04-19 05:26:14.44 Server      * odbcint                        0000000074010000  0000000074047FFF  00038000
2013-04-19 05:26:14.44 Server      * xpstar                         0000000074560000  0000000074584FFF  00025000
2013-04-19 05:26:14.44 Server      * xplog70                        00000000750C0000  00000000750CFFFF  00010000
2013-04-19 05:26:14.44 Server      * xplog70                        00000000750B0000  00000000750B1FFF  00002000
2013-04-19 05:26:14.44 Server      * COMRES                         0000000073140000  000000007327CFFF  0013d000
2013-04-19 05:26:14.44 Server      * XOLEHLP                        000007FEF8A00000  000007FEF8A11FFF  00012000
2013-04-19 05:26:14.44 Server      * MSDTCPRX                       000007FEF8720000  000007FEF87D7FFF  000b8000
2013-04-19 05:26:14.44 Server      * MTXCLU                         000007FEF87E0000  000007FEF883CFFF  0005d000
2013-04-19 05:26:14.44 Server      * ktmw32                         000007FEFC360000  000007FEFC367FFF  00008000
2013-04-19 05:26:14.44 Server      * sqlvdi                         000000000EF10000  000000000EF3BFFF  0002c000
2013-04-19 05:26:14.44 Server      * dbghelp                        0000000039730000  000000003988DFFF  0015e000
2013-04-19 05:26:14.44 Server      *
2013-04-19 05:26:14.44 Server      *     P1Home: 0000000002080076:  8D482E7570245C85  FE2F0C5AE868244C  1C7570245C8522EB  0C48E868244C8D48  70245C8510EBFE2F  E868244C8D480A75  
2013-04-19 05:26:14.44 Server      *     P2Home: 000000001F77BBF0:  0000000000000000  0000000000000000  0000000000000000  0000000000000000  0000000000000000  0000000000000000  
2013-04-19 05:26:14.44 Server      *     P3Home: 0000003B00000076:  
2013-04-19 05:26:14.44 Server      *     P4Home: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *     P5Home: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *     P6Home: 0000000200000000:  0100020000040201  00190003061838CD  00CA0003063BFC82  14EA098200000058  0000000100F4610B  00029C390023F7A4  
2013-04-19 05:26:14.44 Server      * ContextFlags: 000000000010000F:  0000000000000000  0000000000000000  0000000000000000  0000000000000000  0000000000000000  0000000000000000  
2013-04-19 05:26:14.44 Server      *      MxCsr: 0000000000001F80:  
2013-04-19 05:26:14.44 Server      *      SegCs: 0000000000000033:  
2013-04-19 05:26:14.44 Server      *      SegDs: 000000000000002B:  
2013-04-19 05:26:14.44 Server      *      SegEs: 000000000000002B:  
2013-04-19 05:26:14.44 Server      *      SegFs: 0000000000000053:  
2013-04-19 05:26:14.44 Server      *      SegGs: 000000000000002B:  
2013-04-19 05:26:14.44 Server      *      SegSs: 000000000000002B:  
2013-04-19 05:26:14.44 Server      *     EFlags: 0000000000000202:  
2013-04-19 05:26:14.44 Server      *        Rax: 0000000076CD76C0:  83000000C8EC8148  FFFFEF058D4801E2  4DC93320244C89FF  893024448948C985  28244C8948242454  4C8900000BF9850F  
2013-04-19 05:26:14.44 Server      *        Rcx: 000000001F77BAA0:  0000000002080076  000000001F77BBF0  0000003B00000076  0000000000000000  0000000000000000  0000000200000000  
2013-04-19 05:26:14.44 Server      *        Rdx: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *        Rbx: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *        Rsp: 000000001F77BF90:  0000000000000000  0000000076EC0000  000000001F77B980  000007FFFFF4C000  00000000000042AC  0000000000000000  
2013-04-19 05:26:14.44 Server      *        Rbp: 00000000030D887C:  0000000719930522  0000000202D888A4  0000000F02D88954  0000016002D888DC  0000000000000000  00000000FFFFFFFF  
2013-04-19 05:26:14.44 Server      *        Rsi: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *        Rdi: 000000001F77C1C0:  00000000570FF060  0000000000000000  0000000000000000  0000000000000000  0000000000000000  0000000000000000  
2013-04-19 05:26:14.44 Server      *         R8: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *         R9: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *        R10: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *        R11: 000000001F77C7A0:  0000000002080076  000000001F77BBF0  0000003B00000076  0000000000000000  0000000000000000  0000000200000000  
2013-04-19 05:26:14.44 Server      *        R12: 0000000000000001:  
2013-04-19 05:26:14.44 Server      *        R13: 0000000000000000:  
2013-04-19 05:26:14.44 Server      *        R14: 000000000283DF00:  0074005F00780065  0069006D00720065  006F00740061006E  0020002D00200072  007400730061004C  0061006800630020  
2013-04-19 05:26:14.44 Server      *        R15: 000000000000002F:  
2013-04-19 05:26:14.44 Server      *        Rip: 0000000076CD76FD:  C3000000C8C48148  9090909090909090  4848EC8348909090  480000008024848B  7824448B38244489  24448B4830244489  
2013-04-19 05:26:14.44 Server      * *******************************************************************************
2013-04-19 05:26:14.44 Server      * -------------------------------------------------------------------------------
2013-04-19 05:26:14.44 Server      * Short Stack Dump
2013-04-19 05:26:14.45 Server      0000000076CD76FD Module(kernel32+00000000000176FD)
2013-04-19 05:26:14.45 Server      00000000023F981D Module(sqlservr+00000000020A981D)
2013-04-19 05:26:14.45 Server      00000000023FDD3A Module(sqlservr+00000000020ADD3A)
2013-04-19 05:26:14.45 Server      00000000023FD89D Module(sqlservr+00000000020AD89D)
2013-04-19 05:26:14.45 Server      000000000283DDC2 Module(sqlservr+00000000024EDDC2)
2013-04-19 05:26:14.46 Server      000000000283D5AB Module(sqlservr+00000000024ED5AB)
2013-04-19 05:26:14.46 Server      00000000747CACF0 Module(MSVCR80+000000000003ACF0)
2013-04-19 05:26:14.46 Server      00000000747C9E0B Module(MSVCR80+0000000000039E0B)
2013-04-19 05:26:14.46 Server      00000000747CA62B Module(MSVCR80+000000000003A62B)
2013-04-19 05:26:14.46 Server      00000000747CA86B Module(MSVCR80+000000000003A86B)
2013-04-19 05:26:14.47 Server      00000000747CABE7 Module(MSVCR80+000000000003ABE7)
2013-04-19 05:26:14.47 Server      0000000076EF58DD Module(ntdll+00000000000358DD)
2013-04-19 05:26:14.47 Server      0000000076EF96D7 Module(ntdll+00000000000396D7)
2013-04-19 05:26:14.47 Server      0000000076F06E08 Module(ntdll+0000000000046E08)
2013-04-19 05:26:14.47 Server      0000000000356F5A Module(sqlservr+0000000000006F5A)
2013-04-19 05:26:14.47 Server      0000000000356FB9 Module(sqlservr+0000000000006FB9)
2013-04-19 05:26:14.47 Server      00000000003572D7 Module(sqlservr+00000000000072D7)
2013-04-19 05:26:14.47 Server      000000000078A5C8 Module(sqlservr+000000000043A5C8)
2013-04-19 05:26:14.47 Server      0000000000AEB3CE Module(sqlservr+000000000079B3CE)
2013-04-19 05:26:14.47 Server      00000000007BD83D Module(sqlservr+000000000046D83D)
2013-04-19 05:26:14.47 Server      00000000007BDC99 Module(sqlservr+000000000046DC99)
2013-04-19 05:26:14.47 Server      000000000078AD10 Module(sqlservr+000000000043AD10)
2013-04-19 05:26:14.47 Server      000000000078ABB1 Module(sqlservr+000000000043ABB1)
2013-04-19 05:26:14.47 Server      00000000007BF14D Module(sqlservr+000000000046F14D)
2013-04-19 05:26:14.47 Server      000000000039DC11 Module(sqlservr+000000000004DC11)
2013-04-19 05:26:14.47 Server      000000000035BBD8 Module(sqlservr+000000000000BBD8)
2013-04-19 05:26:14.47 Server      000000000035B8BA Module(sqlservr+000000000000B8BA)
2013-04-19 05:26:14.47 Server      000000000035B6FF Module(sqlservr+000000000000B6FF)
2013-04-19 05:26:14.47 Server      0000000000878FB6 Module(sqlservr+0000000000528FB6)
2013-04-19 05:26:14.47 Server      0000000000879175 Module(sqlservr+0000000000529175)
2013-04-19 05:26:14.47 Server      0000000000879839 Module(sqlservr+0000000000529839)
2013-04-19 05:26:14.47 Server      0000000000879502 Module(sqlservr+0000000000529502)
2013-04-19 05:26:14.47 Server      00000000747937D7 Module(MSVCR80+00000000000037D7)
2013-04-19 05:26:14.47 Server      0000000074793894 Module(MSVCR80+0000000000003894)
2013-04-19 05:26:14.47 Server      0000000076CDBE3D Module(kernel32+000000000001BE3D)
2013-04-19 05:26:14.47 Server      0000000076EE6861 Module(ntdll+0000000000026861)
2013-04-19 05:26:14.47 Server      Stack Signature for the dump is 0x0000000089E5C4E0


How to shutdown mirrored database instance normally

$
0
0

Hi experts,

  Could I shutdown mirrored database instance any time for maintenance? Or is there any procedure to stop mirrored instance normally?

  Sometimes I found if I just shutdown mirrored database instance maybe while it is restoring, the database will become suspend(and can't restore any more) after I restart it.

  Should I always pause database mirroring in principal and wait for 10 ~ 30 minutes until all transaction logs are restored before I shutdown mirrored database instance? Is there a SOP?

Windows authentication

$
0
0

Hi,

i got this error message when i try to access the database using SQL authentication.

Error Message - "A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (Microsoft SQL Server, Error: 233)"

Please help me out


- Ram



UPDATE STATISTICS WITH FULL SCAN - High reads than normal

$
0
0

Hi

      Update statistics when it runs with full sampling, reads high amount of data.  my database size is 300GB and update stats is reading TBs of data from the data drive.  Did anyone come across this wierd scenario? 

Thanks

Vicky


Thanks


Index rebuild question

$
0
0

Hi All,

I am on SQL 2008.

Few questions about the new index rebuild functionality

1) When I do index rebuild with ONLINE=ON, I assume, existing table and its indices are not touched at all (they are available for normal use), no locks. What about space? Is a new index being created here while existing index is still there? will online index rebuild need lot of disk space?

2) When I am rebuilding index with ONLINE=OFF (default?), I guess I cannot use the index. Correct?

3) How is transaction log affected when we rebuild index? what if ONLINE is ON or OFF?

Thanks in advance

linked server

$
0
0

Hi,

  I connect two server sql2008 and sql2012 using linked server. I successfully connected. I connected sql 2008 as linked server.

I insert data through linked server. I got some error. that error are following.Please any one give solution.

             1.The Microsoft Distributed Transaction Coordinator (MS DTC) has cancelled the distributed transaction

             2. The Microsoft Distributed Transaction Coordinator (MS DTC) has cancelled the distributed transaction


            3.  


Rathinam


SQL Server Buffer Pool Or Memory Cache Issues

$
0
0

 

Short Summery: I am Using SQL Server 2008 R2 With Windows 7 64bit, I have installed 12Gb Ram in this Server.

And Also i have Defined Minimum Server Memory = 1024MB And Max Server Memory =  9216Mb, Clear!

When Server Starts Users(with the Same Volume) Are Start Working on It, Simultaneously the Ram Utilization increases Respectively. Once My Ram Went to 11Gb It Stops Increasing. SQL Server Has no Problem At Initial when it Reaches to 11Gb. But After Some time Or Passing Some couple of Hours Users Are Facing Issues While Saving the Records Or Fetching the Images Files Or such as Data Files. Intention of Performing well i do not have any other way instead of Restarting the Server. Once Server Restarts Then Memory utilization Goes Down And Users Can Able to Work Smoothly. But This Practice Revised Everyday Or Some time Twice in a day. I really Do not have knowledge about Bpool, Cache , Memory Leak, Dirty Pages, Checkpoints,Freesystemcache, Freesessioncache or  any DBA related Information. I really do not know, what they Are? cause i am a Oracle Developer Not SQL Server Admin. So Please Guide me As a new comer.

As Far as i know this problem accurse Due to Complete Utilization of Ram So May be i need to Clear the Buffer Or Cache While UsingDBCC DROPCLEANBUFFERS. Or You all have any other Alternative? Cause Before Running this command i need to RunCheckpoint For Dirty Pages But I really don't know what is Checkpoint and what its performing on my live DB. Or is this Useful? 

In Oracle, It reduces its Buffer Automatically when nobody is using it. In My Environment Every time Query has to Fetch Different Data With Different Record due to this Buffer is Normally not working Well for me. Instead of this when Memory Goes High Or Utilizing Completely Then Users Getting errors While Fetching New Records.

Please Suggest me Here Or Send me your Skyp Ids , Email Id, Phone Numbers Or any other information which is very useful And In Easy Wording. Which is Explaining Information completely



SQL Server 2012 - frequent "System Health Monitor Thread: Operating system error Exception 0x1 encountered" errors in Application log

$
0
0
We have recently installed a brand new Windows 2008 R2 server and installed SQL Server 2012 (and SP1) on it. We have moved a couple of databases from SQL 2005 to it.

Frequently the following is written to the Application log:

Event ID 17053 - "System Health Monitor Thread: Operating system error Exception 0x1 encountered."

It has also been generating SQL dumps regularly, I've pasted an example at the end of my post.

We have installed Cumulative update package 2 (CU2) for SQL Server 2012 Service Pack 1, since then the dumps have stopped being generated but the following is still being written to exception.log frequently:

"03/07/13 09:54:53 spid 14 Exception 0xc000000d EXCEPTION_INVALID_CRT_PARAMETER at 0x7690C41F"

Any ideas how to troubleshoot this?

Paul

29.03 spid14s     * BROWCLI                        6F540000  6F54CFFF  0000d000
2013-02-15 19:25:29.03 spid14s     * xplog70                        6F530000  6F532FFF  00003000
2013-02-15 19:25:29.03 spid14s     * dsrole                         6F640000  6F648FFF  00009000
2013-02-15 19:25:29.03 spid14s     * apphelp                        D34C0000
2013-02-15 19:25:29.03 spid14s     * sqlvdi                         05060000  05083FFF  00024000
2013-02-15 19:25:29.03 spid14s     * dbghelp                        D6EA0000
2013-02-15 19:25:29.03 spid14s     *
2013-02-15 19:25:29.03 spid14s     *        Edi: 6E52D7FC:  00350000  00390036  00370066  00380030  00660066  00660066  
2013-02-15 19:25:29.03 spid14s     *        Esi: 00000022:  
2013-02-15 19:25:29.03 spid14s     *        Eax: 6E52D674:  C000000D  00000000  00000000  7556C41F  00000000  70D22288  
2013-02-15 19:25:29.03 spid14s     *        Ebx: 6E52D848:  939C5FA8  939C0548  00000000  00000000  939C5FA8  00000000  
2013-02-15 19:25:29.03 spid14s     *        Ecx: D072001F:  064F491E  00000100  0335F800  00166B00  00000E00  00000000  
2013-02-15 19:25:29.03 spid14s     *        Edx: 308CE7D8:  308CE7D8  00000000  308CE7D8  00000000  308CEFE0  00000000  
2013-02-15 19:25:29.03 spid14s     *        Eip: 7556C41F:  0010C2C9  CCCCCCCC  55FF8BCC  8B56EC8B  FE830875  831872F4  
2013-02-15 19:25:29.03 spid14s     *        Ebp: 6E52D6C4:  6E52D700  7262347D  C000000D  00000000  00000000  00000000  
2013-02-15 19:25:29.03 spid14s     *      SegCs: 00000023:  
2013-02-15 19:25:29.03 spid14s     *     EFlags: 00000246:  
2013-02-15 19:25:29.03 spid14s     *        Esp: 6E52D674:  C000000D  00000000  00000000  7556C41F  00000000  70D22288  
2013-02-15 19:25:29.03 spid14s     *      SegSs: 0000002B:  
2013-02-15 19:25:29.03 spid14s     * *******************************************************************************
2013-02-15 19:25:29.03 spid14s     * -------------------------------------------------------------------------------
2013-02-15 19:25:29.03 spid14s     * Short Stack Dump
2013-02-15 19:25:29.04 spid14s     7556C41F Module(KERNELBASE+0000C41F)
2013-02-15 19:25:29.05 spid14s     7262347D Module(sqldk+000B347D)
2013-02-15 19:25:29.06 spid14s     74CFD3B2 Module(MSVCR100+0005D3B2)
2013-02-15 19:25:29.06 spid14s     70D220D1 Module(sqllang+001520D1)
2013-02-15 19:25:29.06 spid14s     70D23FA6 Module(sqllang+00153FA6)
2013-02-15 19:25:29.06 spid14s     70D2036A Module(sqllang+0015036A)
2013-02-15 19:25:29.06 spid14s     70D205D0 Module(sqllang+001505D0)
2013-02-15 19:25:29.06 spid14s     719DE79D Module(sqllang+00E0E79D)
2013-02-15 19:25:29.06 spid14s     719DEB1C Module(sqllang+00E0EB1C)
2013-02-15 19:25:29.06 spid14s     7259E3D9 Module(sqldk+0002E3D9)
2013-02-15 19:25:29.06 spid14s     7259E540 Module(sqldk+0002E540)
2013-02-15 19:25:29.06 spid14s     7259E1AC Module(sqldk+0002E1AC)
2013-02-15 19:25:29.06 spid14s     72578368 Module(sqldk+00008368)
2013-02-15 19:25:29.06 spid14s     72578265 Module(sqldk+00008265)
2013-02-15 19:25:29.06 spid14s     72577DF2 Module(sqldk+00007DF2)
2013-02-15 19:25:29.06 spid14s     72578120 Module(sqldk+00008120)
2013-02-15 19:25:29.07 spid14s     766F33AA Module(kernel32+000133AA)
2013-02-15 19:25:29.07 spid14s     77C99EF2 Module(ntdll+00039EF2)
2013-02-15 19:25:29.07 spid14s     77C99EC5 Module(ntdll+00039EC5)
2013-02-15 19:25:29.08 spid14s     Stack Signature for the dump is 0x00CE9793
2013-02-15 19:25:30.18 spid14s     External dump process return code 0x20000001.
External dump process returned no errors.

2013-02-15 19:25:30.18 spid14s     Error: 17053, Severity: 16, State: 1.
2013-02-15 19:25:30.18 spid14s     System Health Monitor Thread: Operating system error Exception 0x1 encountered.
2013-02-15 19:25:30.19 spid14s     Using 'dbghelp.dll' version '4.0.5'
2013-02-15 19:25:30.21 spid14s     ***Stack Dump being sent to D:\Program Files (x86)\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\LOG\SQLDump9998.txt
2013-02-15 19:25:30.21 spid14s     SqlDumpExceptionHandler: Process 14 generated fatal exception c000000d EXCEPTION_INVALID_CRT_PARAMETER. SQL Server is terminating this process.
2013-02-15 19:25:30.21 spid14s     * *******************************************************************************
2013-02-15 19:25:30.21 spid14s     *
2013-02-15 19:25:30.21 spid14s     * BEGIN STACK DUMP:
2013-02-15 19:25:30.21 spid14s     *   02/15/13 19:25:30 spid 14
2013-02-15 19:25:30.21 spid14s     *
2013-02-15 19:25:30.21 spid14s     *
2013-02-15 19:25:30.21 spid14s     *   Exception Address = 7556C41F Module(KERNELBASE+0000C41F)
2013-02-15 19:25:30.21 spid14s     *   Exception Code    = c000000d EXCEPTION_INVALID_CRT_PARAMETER
2013-02-15 19:25:30.21 spid14s     *  
2013-02-15 19:25:30.21 spid14s     *
2013-02-15 19:25:30.21 spid14s     *  MODULE                          BASE      END       SIZE
2013-02-15 19:25:30.21 spid14s     * sqlservr                       00320000  00354FFF  00035000
2013-02-15 19:25:30.21 spid14s     * ntdll                          77C60000  77DDFFFF  00180000
2013-02-15 19:25:30.21 spid14s     * kernel32                       766E0000  767EFFFF  00110000
2013-02-15 19:25:30.21 spid14s     * KERNELBASE                     75560000  755A6FFF  00047000
2013-02-15 19:25:30.21 spid14s     * ADVAPI32                       76C80000  76D1FFFF  000a0000
2013-02-15 19:25:30.21 spid14s     * msvcrt                         76A10000  76ABBFFF  000ac000
2013-02-15 19:25:30.21 spid14s     * sechost                        75640000  75658FFF  00019000
2013-02-15 19:25:30.21 spid14s     * RPCRT4                         76F00000  76FEFFFF  000f0000
2013-02-15 19:25:30.21 spid14s     * SspiCli                        75340000  7539FFFF  00060000
2013-02-15 19:25:30.21 spid14s     * CRYPTBASE                      75330000  7533BFFF  0000c000
2013-02-15 19:25:30.21 spid14s     * MSVCR100                       74CA0000  74D5EFFF  000bf000
2013-02-15 19:25:30.21 spid14s     * MSVCP100                       74C30000  74C98FFF  00069000
2013-02-15 19:25:30.21 spid14s     * sqlos                          75110000  75115FFF  00006000
2013-02-15 19:25:30.21 spid14s     * NETAPI32                       750F0000  75100FFF  00011000
2013-02-15 19:25:30.21 spid14s     * netutils                       750E0000  750E8FFF  00009000
2013-02-15 19:25:30.21 spid14s     * srvcli                         750A0000  750B8FFF  00019000
2013-02-15 19:25:30.21 spid14s     * wkscli                         75050000  7505EFFF  0000f000
2013-02-15 19:25:30.21 spid14s     * pdh                            74BF0000  74C2BFFF  0003c000
2013-02-15 19:25:30.21 spid14s     * opends60                       74BD0000  74BD6FFF  00007000
2013-02-15 19:25:30.21 spid14s     * sqlmin                         731A0000  74B6FFFF  019d0000
2013-02-15 19:25:30.21 spid14s     * USER32                         75980000  75A7FFFF  00100000
2013-02-15 19:25:30.21 spid14s     * GDI32                          76BF0000  76C7FFFF  00090000
2013-02-15 19:25:30.21 spid14s     * LPK                            769F0000  769F9FFF  0000a000
2013-02-15 19:25:30.21 spid14s     * USP10                          753A0000  7543CFFF  0009d000
2013-02-15 19:25:30.21 spid14s     * ole32                          75820000  7597BFFF  0015c000
2013-02-15 19:25:30.21 spid14s     * OLEAUT32                       755B0000  7563EFFF  0008f000
2013-02-15 19:25:30.21 spid14s     * CRYPT32                        76DE0000  76EFDFFF  0011e000
2013-02-15 19:25:30.21 spid14s     * MSASN1                         766D0000  766DBFFF  0000c000
2013-02-15 19:25:30.21 spid14s     * Secur32                        73170000  73177FFF  00008000
2013-02-15 19:25:30.21 spid14s     * PSAPI                          76BE0000  76BE4FFF  00005000
2013-02-15 19:25:30.21 spid14s     * WS2_32                         76D20000  76D54FFF  00035000
2013-02-15 19:25:30.21 spid14s     * NSI                            76A00000  76A05FFF  00006000
2013-02-15 19:25:30.21 spid14s     * sqlTsEs                        72950000  73119FFF  007ca000
2013-02-15 19:25:30.21 spid14s     * sqldk                          72570000  72947FFF  003d8000
2013-02-15 19:25:30.21 spid14s     * WINMM                          75060000  75091FFF  00032000
2013-02-15 19:25:30.21 spid14s     * sqllang                        70BD0000  72519FFF  0194a000
2013-02-15 19:25:30.21 spid14s     * USERENV                        70BB0000  70BC6FFF  00017000
2013-02-15 19:25:30.21 spid14s     * profapi                        70BA0000  70BAAFFF  0000b000
2013-02-15 19:25:30.21 spid14s     * LOGONCLI                       75000000  75021FFF  00022000
2013-02-15 19:25:30.21 spid14s     * SAMCLI                         70B90000  70B9EFFF  0000f000
2013-02-15 19:25:30.21 spid14s     * AUTHZ                          70B70000  70B8AFFF  0001b000
2013-02-15 19:25:30.21 spid14s     * WINTRUST                       75530000  7555CFFF  0002d000
2013-02-15 19:25:30.21 spid14s     * IMM32                          77340000  7739FFFF  00060000
2013-02-15 19:25:30.21 spid14s     * MSCTF                          770A0000  7716BFFF  000cc000
2013-02-15 19:25:30.21 spid14s     * instapi110                     70B60000  70B6AFFF  0000b000
2013-02-15 19:25:30.21 spid14s     * cscapi                         70B20000  70B2AFFF  0000b000
2013-02-15 19:25:30.21 spid14s     * sqlevn70                       708A0000  70B19FFF  0027a000
2013-02-15 19:25:30.21 spid14s     * CRYPTSP                        73180000  73195FFF  00016000
2013-02-15 19:25:30.21 spid14s     * rsaenh                         72530000  7256AFFF  0003b000
2013-02-15 19:25:30.21 spid14s     * imagehlp                       77310000  77339FFF  0002a000
2013-02-15 19:25:30.21 spid14s     * ncrypt                         70860000  70897FFF  00038000
2013-02-15 19:25:30.21 spid14s     * bcrypt                         70B40000  70B56FFF  00017000
2013-02-15 19:25:30.21 spid14s     * bcryptprimitives               70820000  7085CFFF  0003d000
2013-02-15 19:25:30.21 spid14s     * GPAPI                          70800000  70815FFF  00016000
2013-02-15 19:25:30.21 spid14s     * cryptnet                       707E0000  707FBFFF  0001c000
2013-02-15 19:25:30.21 spid14s     * WLDAP32                        76D60000  76DA4FFF  00045000
2013-02-15 19:25:30.21 spid14s     * SHLWAPI                        75440000  75496FFF  00057000
2013-02-15 19:25:30.21 spid14s     * VERSION                        74FD0000  74FD8FFF  00009000
2013-02-15 19:25:30.21 spid14s     * credssp                        70B30000  70B37FFF  00008000
2013-02-15 19:25:30.21 spid14s     * msv1_0                         70790000  707D1FFF  00042000
2013-02-15 19:25:30.21 spid14s     * cryptdll                       70770000  70780FFF  00011000
2013-02-15 19:25:30.21 spid14s     * Kerberos                       706E0000  70767FFF  00088000
2013-02-15 19:25:30.21 spid14s     * schannel                       706A0000  706DEFFF  0003f000
2013-02-15 19:25:30.21 spid14s     * MSCOREE                        70650000  70699FFF  0004a000
2013-02-15 19:25:30.21 spid14s     * mscoreei                       705E0000  70646FFF  00067000
2013-02-15 19:25:30.21 spid14s     * CLUSAPI                        705A0000  705DAFFF  0003b000
2013-02-15 19:25:30.21 spid14s     * RESUTILS                       70580000  70593FFF  00014000
2013-02-15 19:25:30.21 spid14s     * security                       70570000  70572FFF  00003000
2013-02-15 19:25:30.21 spid14s     * CLBCatQ                        754A0000  75522FFF  00083000
2013-02-15 19:25:30.21 spid14s     * sqlncli11                      70270000  7054DFFF  002de000
2013-02-15 19:25:30.21 spid14s     * COMCTL32                       701E0000  70263FFF  00084000
2013-02-15 19:25:30.21 spid14s     * COMDLG32                       77290000  7730AFFF  0007b000
2013-02-15 19:25:30.21 spid14s     * SHELL32                        75A80000  766C9FFF  00c4a000
2013-02-15 19:25:30.21 spid14s     * SQLNCLIR11                     700C0000  700F7FFF  00038000
2013-02-15 19:25:30.21 spid14s     * netbios                        700B0000  700B7FFF  00008000
2013-02-15 19:25:30.21 spid14s     * clr                            6FA40000  700AFFFF  00670000
2013-02-15 19:25:30.21 spid14s     * MSVCR100_CLR0400               6F880000  6F93DFFF  000be000
2013-02-15 19:25:30.21 spid14s     * BatchParser                    6F300000  6F321FFF  00022000
2013-02-15 19:25:30.21 spid14s     * mscorlib.ni                    6E530000  6F2F0FFF  00dc1000
2013-02-15 19:25:30.21 spid14s     * mswsock                        751A0000  751DBFFF  0003c000
2013-02-15 19:25:30.21 spid14s     * wship6                         6F780000  6F785FFF  00006000
2013-02-15 19:25:30.21 spid14s     * nlssorting                     6F790000  6F79FFFF  00010000
2013-02-15 19:25:30.21 spid14s     * wshtcpip                       75030000  75034FFF  00005000
2013-02-15 19:25:30.21 spid14s     * ntmarta                        75120000  75140FFF  00021000
2013-02-15 19:25:30.21 spid14s     * ntdsapi                        6F7B0000  6F7C7FFF  00018000
2013-02-15 19:25:30.21 spid14s     * DNSAPI                         74F80000  74FC3FFF  00044000
2013-02-15 19:25:30.21 spid14s     * IPHLPAPI                       750C0000  750DBFFF  0001c000
2013-02-15 19:25:30.21 spid14s     * WINNSI                         75040000  75046FFF  00007000
2013-02-15 19:25:30.21 spid14s     * rasadhlp                       74E90000  74E95FFF  00006000
2013-02-15 19:25:30.21 spid14s     * fwpuclnt                       74EA0000  74ED7FFF  00038000
2013-02-15 19:25:30.21 spid14s     * clrjit                         6F660000  6F6BFFFF  00060000
2013-02-15 19:25:30.21 spid14s     * xpsqlbot                       6F610000  6F616FFF  00007000
2013-02-15 19:25:30.21 spid14s     * xpstar                         6F5C0000  6F60DFFF  0004e000
2013-02-15 19:25:30.21 spid14s     * ATL100                         6F590000  6F5B5FFF  00026000
2013-02-15 19:25:30.21 spid14s     * SQLSCM                         6F7A0000  6F7AAFFF  0000b000
2013-02-15 19:25:30.21 spid14s     * ODBC32                         74D60000  74DEBFFF  0008c000
2013-02-15 19:25:30.21 spid14s     * odbcint                        75160000  75197FFF  00038000
2013-02-15 19:25:30.21 spid14s     * xpstar                         6F560000  6F584FFF  00025000
2013-02-15 19:25:30.21 spid14s     * xplog70                        6F550000  6F55DFFF  0000e000
2013-02-15 19:25:30.21 spid14s     * BROWCLI                        6F540000  6F54CFFF  0000d000
2013-02-15 19:25:30.21 spid14s     * xplog70                        6F530000  6F532FFF  00003000
2013-02-15 19:25:30.21 spid14s     * dsrole                         6F640000  6F648FFF  00009000
2013-02-15 19:25:30.21 spid14s     * apphelp                        D34C0000
2013-02-15 19:25:30.21 spid14s     * sqlvdi                         05060000  05083FFF  00024000
2013-02-15 19:25:30.21 spid14s     * dbghelp                        D6EA0000
2013-02-15 19:25:30.21 spid14s     *
2013-02-15 19:25:30.21 spid14s     *        Edi: C97FD9D4:  00350000  00390036  00370066  00380030  00660066  00660066  
2013-02-15 19:25:30.21 spid14s     *        Esi: 00000022:  
2013-02-15 19:25:30.21 spid14s     *        Eax: C97FD84C:  C000000D  00000000  00000000  7556C41F  00000000  70D22288  
2013-02-15 19:25:30.21 spid14s     *        Ebx: C97FDA20:  5EA71FA8  939C4548  059B126C  C97FDA60  5EA71FA8  7497EC80  
2013-02-15 19:25:30.21 spid14s     *        Ecx: D072001F:  064F491E  00000100  0335F800  00166B00  00000E00  00000000  
2013-02-15 19:25:30.21 spid14s     *        Edx: BE59E3D8:  BE59E3D8  00000000  BE59E3D8  00000000  BE59EBE0  00000000  
2013-02-15 19:25:30.21 spid14s     *        Eip: 7556C41F:  0010C2C9  CCCCCCCC  55FF8BCC  8B56EC8B  FE830875  831872F4  
2013-02-15 19:25:30.21 spid14s     *        Ebp: C97FD89C:  C97FD8D8  7262347D  C000000D  00000000  00000000  00000000  
2013-02-15 19:25:30.21 spid14s     *      SegCs: 00000023:  
2013-02-15 19:25:30.21 spid14s     *     EFlags: 00000246:  
2013-02-15 19:25:30.21 spid14s     *        Esp: C97FD84C:  C000000D  00000000  00000000  7556C41F  00000000  70D22288  
2013-02-15 19:25:30.21 spid14s     *      SegSs: 0000002B:  
2013-02-15 19:25:30.21 spid14s     * *******************************************************************************
2013-02-15 19:25:30.21 spid14s     * -------------------------------------------------------------------------------
2013-02-15 19:25:30.21 spid14s     * Short Stack Dump
2013-02-15 19:25:30.22 spid14s     7556C41F Module(KERNELBASE+0000C41F)
2013-02-15 19:25:30.23 spid14s     7262347D Module(sqldk+000B347D)
2013-02-15 19:25:30.23 spid14s     74CFD3B2 Module(MSVCR100+0005D3B2)
2013-02-15 19:25:30.23 spid14s     70D220D1 Module(sqllang+001520D1)
2013-02-15 19:25:30.23 spid14s     70D23FA6 Module(sqllang+00153FA6)
2013-02-15 19:25:30.23 spid14s     70D2036A Module(sqllang+0015036A)
2013-02-15 19:25:30.23 spid14s     70D205D0 Module(sqllang+001505D0)
2013-02-15 19:25:30.23 spid14s     719DE79D Module(sqllang+00E0E79D)
2013-02-15 19:25:30.23 spid14s     719DEB1C Module(sqllang+00E0EB1C)
2013-02-15 19:25:30.23 spid14s     7259E3D9 Module(sqldk+0002E3D9)
2013-02-15 19:25:30.23 spid14s     7259E540 Module(sqldk+0002E540)
2013-02-15 19:25:30.23 spid14s     7259E1AC Module(sqldk+0002E1AC)
2013-02-15 19:25:30.23 spid14s     72578368 Module(sqldk+00008368)
2013-02-15 19:25:30.23 spid14s     72578265 Module(sqldk+00008265)
2013-02-15 19:25:30.23 spid14s     72577DF2 Module(sqldk+00007DF2)
2013-02-15 19:25:30.23 spid14s     72578120 Module(sqldk+00008120)
2013-02-15 19:25:30.24 spid14s     766F33AA Module(kernel32+000133AA)
2013-02-15 19:25:30.24 spid14s     77C99EF2 Module(ntdll+00039EF2)
2013-02-15 19:25:30.24 spid14s     77C99EC5 Module(ntdll+00039EC5)
2013-02-15 19:25:30.24 spid14s     Stack Signature for the dump is 0x00CE9793
2013-02-15 19:25:30.96 spid14s     External dump process return code 0x20000001.
External dump process returned no errors.

2013-02-15 19:25:30.96 spid14s     Error: 17053, Severity: 16, State: 1.
2013-02-15 19:25:30.96 spid14s     System Health Monitor Thread: Operating system error Exception 0x1 encountered.
2013-02-15 19:25:30.97 spid14s     Using 'dbghelp.dll' version '4.0.5'
2013-02-15 19:25:30.99 spid14s     ***Stack Dump being sent to D:\Program Files (x86)\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\LOG\SQLDump9999.txt
2013-02-15 19:25:30.99 spid14s     SqlDumpExceptionHandler: Process 14 generated fatal exception c000000d EXCEPTION_INVALID_CRT_PARAMETER. SQL Server is terminating this process.
2013-02-15 19:25:30.99 spid14s     * *******************************************************************************
2013-02-15 19:25:30.99 spid14s     *
2013-02-15 19:25:30.99 spid14s     * BEGIN STACK DUMP:
2013-02-15 19:25:30.99 spid14s     *   02/15/13 19:25:30 spid 14
2013-02-15 19:25:30.99 spid14s     *
2013-02-15 19:25:30.99 spid14s     *
2013-02-15 19:25:30.99 spid14s     *   Exception Address = 7556C41F Module(KERNELBASE+0000C41F)
2013-02-15 19:25:30.99 spid14s     *   Exception Code    = c000000d EXCEPTION_INVALID_CRT_PARAMETER
2013-02-15 19:25:30.99 spid14s     *  
2013-02-15 19:25:30.99 spid14s     *
2013-02-15 19:25:30.99 spid14s     *  MODULE                          BASE      END       SIZE
2013-02-15 19:25:30.99 spid14s     * sqlservr                       00320000  00354FFF  00035000
2013-02-15 19:25:30.99 spid14s     * ntdll                          77C60000  77DDFFFF  00180000
2013-02-15 19:25:30.99 spid14s     * kernel32                       766E0000  767EFFFF  00110000
2013-02-15 19:25:30.99 spid14s     * KERNELBASE                     75560000  755A6FFF  00047000
2013-02-15 19:25:30.99 spid14s     * ADVAPI32                       76C80000  76D1FFFF  000a0000
2013-02-15 19:25:30.99 spid14s     * msvcrt                         76A10000  76ABBFFF  000ac000
2013-02-15 19:25:30.99 spid14s     * sechost                        75640000  75658FFF  00019000
2013-02-15 19:25:30.99 spid14s     * RPCRT4                         76F00000  76FEFFFF  000f0000
2013-02-15 19:25:30.99 spid14s     * SspiCli                        75340000  7539FFFF  00060000
2013-02-15 19:25:30.99 spid14s     * CRYPTBASE                      75330000  7533BFFF  0000c000
2013-02-15 19:25:30.99 spid14s     * MSVCR100                       74CA0000  74D5EFFF  000bf000
2013-02-15 19:25:30.99 spid14s     * MSVCP100                       74C30000  74C98FFF  00069000
2013-02-15 19:25:30.99 spid14s     * sqlos                          75110000  75115FFF  00006000
2013-02-15 19:25:30.99 spid14s     * NETAPI32                       750F0000  75100FFF  00011000
2013-02-15 19:25:30.99 spid14s     * netutils                       750E0000  750E8FFF  00009000
2013-02-15 19:25:30.99 spid14s     * srvcli                         750A0000  750B8FFF  00019000
2013-02-15 19:25:30.99 spid14s     * wkscli                         75050000  7505EFFF  0000f000
2013-02-15 19:25:30.99 spid14s     * pdh                            74BF0000  74C2BFFF  0003c000
2013-02-15 19:25:30.99 spid14s     * opends60                       74BD0000  74BD6FFF  00007000
2013-02-15 19:25:30.99 spid14s     * sqlmin                         731A0000  74B6FFFF  019d0000
2013-02-15 19:25:30.99 spid14s     * USER32                         75980000  75A7FFFF  00100000
2013-02-15 19:25:30.99 spid14s     * GDI32                          76BF0000  76C7FFFF  00090000
2013-02-15 19:25:30.99 spid14s     * LPK                            769F0000  769F9FFF  0000a000
2013-02-15 19:25:30.99 spid14s     * USP10                          753A0000  7543CFFF  0009d000
2013-02-15 19:25:30.99 spid14s     * ole32                          75820000  7597BFFF  0015c000
2013-02-15 19:25:30.99 spid14s     * OLEAUT32                       755B0000  7563EFFF  0008f000
2013-02-15 19:25:30.99 spid14s     * CRYPT32                        76DE0000  76EFDFFF  0011e000
2013-02-15 19:25:30.99 spid14s     * MSASN1                         766D0000  766DBFFF  0000c000
2013-02-15 19:25:30.99 spid14s     * Secur32                        73170000  73177FFF  00008000
2013-02-15 19:25:30.99 spid14s     * PSAPI                          76BE0000  76BE4FFF  00005000
2013-02-15 19:25:30.99 spid14s     * WS2_32                         76D20000  76D54FFF  00035000
2013-02-15 19:25:30.99 spid14s     * NSI                            76A00000  76A05FFF  00006000
2013-02-15 19:25:30.99 spid14s     * sqlTsEs                        72950000  73119FFF  007ca000
2013-02-15 19:25:30.99 spid14s     * sqldk                          72570000  72947FFF  003d8000
2013-02-15 19:25:30.99 spid14s     * WINMM                          75060000  75091FFF  00032000
2013-02-15 19:25:30.99 spid14s     * sqllang                        70BD0000  72519FFF  0194a000
2013-02-15 19:25:30.99 spid14s     * USERENV                        70BB0000  70BC6FFF  00017000
2013-02-15 19:25:30.99 spid14s     * profapi                        70BA0000  70BAAFFF  0000b000
2013-02-15 19:25:30.99 spid14s     * LOGONCLI                       75000000  75021FFF  00022000
2013-02-15 19:25:30.99 spid14s     * SAMCLI                         70B90000  70B9EFFF  0000f000
2013-02-15 19:25:30.99 spid14s     * AUTHZ                          70B70000  70B8AFFF  0001b000
2013-02-15 19:25:30.99 spid14s     * WINTRUST                       75530000  7555CFFF  0002d000
2013-02-15 19:25:30.99 spid14s     * IMM32                          77340000  7739FFFF  00060000
2013-02-15 19:25:30.99 spid14s     * MSCTF                          770A0000  7716BFFF  000cc000
2013-02-15 19:25:30.99 spid14s     * instapi110                     70B60000  70B6AFFF  0000b000
2013-02-15 19:25:30.99 spid14s     * cscapi                         70B20000  70B2AFFF  0000b000
2013-02-15 19:25:30.99 spid14s     * sqlevn70                       708A0000  70B19FFF  0027a000
2013-02-15 19:25:30.99 spid14s     * CRYPTSP                        73180000  73195FFF  00016000
2013-02-15 19:25:30.99 spid14s     * rsaenh                         72530000  7256AFFF  0003b000
2013-02-15 19:25:30.99 spid14s     * imagehlp                       77310000  77339FFF  0002a000
2013-02-15 19:25:30.99 spid14s     * ncrypt                         70860000  70897FFF  00038000
2013-02-15 19:25:30.99 spid14s     * bcrypt                         70B40000  70B56FFF  00017000
2013-02-15 19:25:30.99 spid14s     * bcryptprimitives               70820000  7085CFFF  0003d000
2013-02-15 19:25:30.99 spid14s     * GPAPI                          70800000  70815FFF  00016000
2013-02-15 19:25:30.99 spid14s     * cryptnet                       707E0000  707FBFFF  0001c000
2013-02-15 19:25:30.99 spid14s     * WLDAP32                        76D60000  76DA4FFF  00045000
2013-02-15 19:25:30.99 spid14s     * SHLWAPI                        75440000  75496FFF  00057000
2013-02-15 19:25:30.99 spid14s     * VERSION                        74FD0000  74FD8FFF  00009000
2013-02-15 19:25:30.99 spid14s     * credssp                        70B30000  70B37FFF  00008000
2013-02-15 19:25:30.99 spid14s     * msv1_0                         70790000  707D1FFF  00042000
2013-02-15 19:25:30.99 spid14s     * cryptdll                       70770000  70780FFF  00011000
2013-02-15 19:25:30.99 spid14s     * Kerberos                       706E0000  70767FFF  00088000
2013-02-15 19:25:30.99 spid14s     * schannel                       706A0000  706DEFFF  0003f000
2013-02-15 19:25:30.99 spid14s     * MSCOREE                        70650000  70699FFF  0004a000
2013-02-15 19:25:30.99 spid14s     * mscoreei                       705E0000  70646FFF  00067000
2013-02-15 19:25:30.99 spid14s     * CLUSAPI                        705A0000  705DAFFF  0003b000
2013-02-15 19:25:30.99 spid14s     * RESUTILS                       70580000  70593FFF  00014000
2013-02-15 19:25:30.99 spid14s     * security                       70570000  70572FFF  00003000
2013-02-15 19:25:30.99 spid14s     * CLBCatQ                        754A0000  75522FFF  00083000
2013-02-15 19:25:30.99 spid14s     * sqlncli11                      70270000  7054DFFF  002de000
2013-02-15 19:25:30.99 spid14s     * COMCTL32                       701E0000  70263FFF  00084000
2013-02-15 19:25:30.99 spid14s     * COMDLG32                       77290000  7730AFFF  0007b000
2013-02-15 19:25:30.99 spid14s     * SHELL32                        75A80000  766C9FFF  00c4a000
2013-02-15 19:25:30.99 spid14s     * SQLNCLIR11                     700C0000  700F7FFF  00038000
2013-02-15 19:25:30.99 spid14s     * netbios                        700B0000  700B7FFF  00008000
2013-02-15 19:25:30.99 spid14s     * clr                            6FA40000  700AFFFF  00670000
2013-02-15 19:25:30.99 spid14s     * MSVCR100_CLR0400               6F880000  6F93DFFF  000be000
2013-02-15 19:25:30.99 spid14s     * BatchParser                    6F300000  6F321FFF  00022000
2013-02-15 19:25:30.99 spid14s     * mscorlib.ni                    6E530000  6F2F0FFF  00dc1000
2013-02-15 19:25:30.99 spid14s     * mswsock                        751A0000  751DBFFF  0003c000
2013-02-15 19:25:31.00 spid14s     * wship6                         6F780000  6F785FFF  00006000
2013-02-15 19:25:31.00 spid14s     * nlssorting                     6F790000  6F79FFFF  00010000
2013-02-15 19:25:31.00 spid14s     * wshtcpip                       75030000  75034FFF  00005000
2013-02-15 19:25:31.00 spid14s     * ntmarta                        75120000  75140FFF  00021000
2013-02-15 19:25:31.00 spid14s     * ntdsapi                        6F7B0000  6F7C7FFF  00018000
2013-02-15 19:25:31.00 spid14s     * DNSAPI                         74F80000  74FC3FFF  00044000
2013-02-15 19:25:31.00 spid14s     * IPHLPAPI                       750C0000  750DBFFF  0001c000
2013-02-15 19:25:31.00 spid14s     * WINNSI                         75040000  75046FFF  00007000
2013-02-15 19:25:31.00 spid14s     * rasadhlp                       74E90000  74E95FFF  00006000
2013-02-15 19:25:31.00 spid14s     * fwpuclnt                       74EA0000  74ED7FFF  00038000
2013-02-15 19:25:31.00 spid14s     * clrjit                         6F660000  6F6BFFFF  00060000
2013-02-15 19:25:31.00 spid14s     * xpsqlbot                       6F610000  6F616FFF  00007000
2013-02-15 19:25:31.00 spid14s     * xpstar                         6F5C0000  6F60DFFF  0004e000
2013-02-15 19:25:31.00 spid14s     * ATL100                         6F590000  6F5B5FFF  00026000
2013-02-15 19:25:31.00 spid14s     * SQLSCM                         6F7A0000  6F7AAFFF  0000b000
2013-02-15 19:25:31.00 spid14s     * ODBC32                         74D60000  74DEBFFF  0008c000
2013-02-15 19:25:31.00 spid14s     * odbcint                        75160000  75197FFF  00038000
2013-02-15 19:25:31.00 spid14s     * xpstar                         6F560000  6F584FFF  00025000
2013-02-15 19:25:31.00 spid14s     * xplog70                        6F550000  6F55DFFF  0000e000
2013-02-15 19:25:31.00 spid14s     * BROWCLI                        6F540000  6F54CFFF  0000d000
2013-02-15 19:25:31.00 spid14s     * xplog70                        6F530000  6F532FFF  00003000
2013-02-15 19:25:31.00 spid14s     * dsrole                         6F640000  6F648FFF  00009000
2013-02-15 19:25:31.00 spid14s     * apphelp                        D34C0000
2013-02-15 19:25:31.00 spid14s     * sqlvdi                         05060000  05083FFF  00024000
2013-02-15 19:25:31.00 spid14s     * dbghelp                        D6EA0000
2013-02-15 19:25:31.00 spid14s     *
2013-02-15 19:25:31.00 spid14s     *        Edi: 3141DD04:  00350000  00390036  00370066  00380030  00660066  00660066  
2013-02-15 19:25:31.00 spid14s     *        Esi: 00000022:  
2013-02-15 19:25:31.00 spid14s     *        Eax: 3141DB7C:  C000000D  00000000  00000000  7556C41F  00000000  70D22288  
2013-02-15 19:25:31.00 spid14s     *        Ebx: 3141DD50:  5EA71FA8  939C4548  059B126C  3141DD90  5EA71FA8  7497EC80  
2013-02-15 19:25:31.00 spid14s     *        Ecx: D072001F:  064F491E  00000100  0335F800  00166B00  00000E00  00000000  
2013-02-15 19:25:31.00 spid14s     *        Edx: 30DEE3F8:  30DEE3F8  00000000  30DEE3F8  00000000  30DEEC00  00000000  
2013-02-15 19:25:31.00 spid14s     *        Eip: 7556C41F:  0010C2C9  CCCCCCCC  55FF8BCC  8B56EC8B  FE830875  831872F4  
2013-02-15 19:25:31.00 spid14s     *        Ebp: 3141DBCC:  3141DC08  7262347D  C000000D  00000000  00000000  00000000  
2013-02-15 19:25:31.00 spid14s     *      SegCs: 00000023:  
2013-02-15 19:25:31.00 spid14s     *     EFlags: 00000246:  
2013-02-15 19:25:31.00 spid14s     *        Esp: 3141DB7C:  C000000D  00000000  00000000  7556C41F  00000000  70D22288  
2013-02-15 19:25:31.00 spid14s     *      SegSs: 0000002B:  
2013-02-15 19:25:31.00 spid14s     * *******************************************************************************
2013-02-15 19:25:31.00 spid14s     * -------------------------------------------------------------------------------
2013-02-15 19:25:31.00 spid14s     * Short Stack Dump
2013-02-15 19:25:31.00 spid14s     7556C41F Module(KERNELBASE+0000C41F)
2013-02-15 19:25:31.01 spid14s     7262347D Module(sqldk+000B347D)
2013-02-15 19:25:31.02 spid14s     74CFD3B2 Module(MSVCR100+0005D3B2)
2013-02-15 19:25:31.02 spid14s     70D220D1 Module(sqllang+001520D1)
2013-02-15 19:25:31.02 spid14s     70D23FA6 Module(sqllang+00153FA6)
2013-02-15 19:25:31.02 spid14s     70D2036A Module(sqllang+0015036A)
2013-02-15 19:25:31.02 spid14s     70D205D0 Module(sqllang+001505D0)
2013-02-15 19:25:31.02 spid14s     719DE79D Module(sqllang+00E0E79D)
2013-02-15 19:25:31.02 spid14s     719DEB1C Module(sqllang+00E0EB1C)
2013-02-15 19:25:31.02 spid14s     7259E3D9 Module(sqldk+0002E3D9)
2013-02-15 19:25:31.02 spid14s     7259E540 Module(sqldk+0002E540)
2013-02-15 19:25:31.02 spid14s     7259E1AC Module(sqldk+0002E1AC)
2013-02-15 19:25:31.02 spid14s     72578368 Module(sqldk+00008368)
2013-02-15 19:25:31.02 spid14s     72578265 Module(sqldk+00008265)
2013-02-15 19:25:31.02 spid14s     72577DF2 Module(sqldk+00007DF2)
2013-02-15 19:25:31.02 spid14s     72578120 Module(sqldk+00008120)
2013-02-15 19:25:31.03 spid14s     766F33AA Module(kernel32+000133AA)
2013-02-15 19:25:31.03 spid14s     77C99EF2 Module(ntdll+00039EF2)
2013-02-15 19:25:31.03 spid14s     77C99EC5 Module(ntdll+00039EC5)
2013-02-15 19:25:31.03 spid14s     Stack Signature for the dump is 0x00CE9793

windows internal database

$
0
0

Hi All,

I want to know what is windows internal database and what is the use of it?

In my current scenario.I have one server in which windows internal database services as well as SQL Server services also running.

Below are the configuration details of the server:

System:Windows 2003R2 Standard edition SP2 32bit

RAM:2Gb 

when i click on start -> programs->In that i can see sql server 2005 and SQl server 2008R2.In 2005 SQL server configuration Manager i can see windows internal database services are running.In 2008 SQL Server configuration Manager i can see Sql server services are running.

The databases which are running in windows internal database and in SQL server instance are different.

My question is that is there any dependency between Windows internal database services(2005) and sql server services(2008).

I used to connect to the windows internal databases from sql server 2005 management studio by using below url

\\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query

The details of Windows internal database:Product :Microsoft SQl Server Windows Internal Database
Platform:NT INTEL X86

The details of SQL Server instance:Product:Microsoft SQl Server Express Edition with Advanced Services
Platform:NT INTEL X86

I got request from user to migrate the sql server databases to sql server 2008r2 Enterprise edition.

What is the process i need to follow for this migration.

Any Help can be much appreciated and please let me know if any information is required on the same.

Regards,


Maheshwar Reddy

Viewing all 15872 articles
Browse latest View live


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