Quantcast
Channel: .NET Framework inside SQL Server forum
Viewing all 780 articles
Browse latest View live

Query Notification Subscription through Sql Server

$
0
0

I have seen articles (see below link) related to Query Notification subscription which suggest three options SQLNotificationRequest, SQLDependency and SoapHeader to achieve this which will require C# code.

Please suggest do we have any SQL Server command that will allow us to subscribe to Query notifications as I don't want to achieve it through C# code.


KB3205404 - SQL Server Standard

$
0
0

Good morning,

The following update is flagged as a security update: kb3205404

We have 2 SQL server, each got the patch applied on a different day but in the morning and in the middle of the backup of our 250 GB DB + 150 GB Log. On both of the servers the backup actually stopped running and went into a weird limbo status I am still looking into.

Question:

* has anybody else encountered issues with this patch and if so, any clue on how to fix them?

Best regards,

error occurred while enabling MARS for this connection

$
0
0

Hi,
I have an asp.net application and using connection string to connect to database.
But I am getting below error.
Connection open and login was successful, but then an error occurred while enabling MARS for this connection. (provider: Name Pipes Provider, error:15- Function not supported)
I am using Asp.net framework 4.5 and SQl server 2012

using SQL authentication with UserId and Password.  Also I have set the MultipleActiveResultSets = true

Code I am using to coonect from asp.net is

DataTable dt = new DataTable();
SqlConnection objcon = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["test"].ToString());

using (var command = new SqlCommand("SELECT * FROM testData", objcon))
{
var formCollection = new List<Form>();

try
{
objcon.Open();

command.CommandTimeout = 3000;
var res = command.ExecuteReader();
objcon.Close();
lblID.Text ="Success";

}
catch (Exception ex)
{
objcon.Close();
lblID.Text = ex.Message;
}
}


progmon

Pass multiple values in INCLAUSE as a parameter

$
0
0

Hello Everyone,

This is my query 

Declare @subList varchar(max)

set @subList = '229764';

select top 10 * from MyTableName where PROBLEM_ID in (@subList)

If I do like this: 

Declare @subList varchar(max)

set @subList = '229764';

select top 10 * from APP_CAEDM.DW_FACT_CASE_PROBLEM where PROBLEM_ID in (@subList)

If I want to pass multiple numbers in the parameter, I'm getting error

Declare @subList varchar(max)

set @subList = '229764','229765';

select top 10 * from APP_CAEDM.DW_FACT_CASE_PROBLEM where PROBLEM_ID in (@subList)

I would like to know how to pass multiple values as a single parameter.

I don't want to make the use of string concatenation, and I want them to make the use of parameters, if there are 200 numbers in a string.

Thank you,
Krishna



SQL SERVER 2008 安装出现的报错请教--An error has occurred creating the configuration section handler for userSettings/Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings: Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, Publ

$
0
0
 An error has occurred creating the configuration section handler for userSettings/Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings: Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The System cannot find the file specified. (C:\Users\Billy\AppData\Local\Microsoft_Corporation\LandingPage.exe_StrongName_ryspccglaxmt4nhllj5z3thcyltsvyyx\10.0.0.0\user.config line

details

See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Configuration.ConfigurationErrorsException: An error occurred creating the configuration section handler for userSettings/Microsoft.SqlServer.Configuration.LandingPage.Properties.Settings: Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified. (C:\Users\Billy\AppData\Local\Microsoft_Corporation\LandingPage.exe_StrongName_ryspccglaxmt4nhllj5z3thycltsvyyx\10.0.0.0\user.config line 5) ---> System.IO.FileNotFoundException: Could not load file or assembly 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
File name: 'System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
   at System.Configuration.TypeUtil.GetTypeWithReflectionPermission(IInternalConfigHost host, String typeString, Boolean throwOnError)

Issue with CLR Procs

$
0
0

Hello All

We have a CLR procedure for converting names into meaningful names. This procedure actually calls a third party DLL. Names are input to this DLL and correct names are spitted out and later the tables are getting updated. Multiple users are using this CLR procedure and it is being called from UI.

No errors being logged at system level. When component will not work, tables are being updated with some default value. What would be the best solution to track the issue?


Request for SCOM reports already been requested.

best regards,

Siddarth

Exception Microsoft.SqlServer.Types.SqlGeometry.STDifference(SqlGeometry other) following upgrade from SQL Server 2008 R2 to 2014

$
0
0
.NET 4.0 app previously working with SQL Server 2008 R2

Upgrade to SQL Server 2014 with .NET 4.5 - now getting lots of exceptions Microsoft.SqlServer.Types.SqlGeometry.STDifference(SqlGeometry other)

Tried using: makeValid and SqlTypes 11 and 12 - with no success

Any suggestions


How to pass .NET Collection of objects (Parent-Child) hierarchy to a SQL Server stored procedure?

$
0
0
Hello,

I need to pass a .NET Collection to a stored procedure. My collection contains 1000 records. Each record contains 2-3 child objects of other types.

All I need to insert them at once by calling stored procedure from .NET.

I already have tried a TVP (table-valued parameter), but that simply doesn't fulfills my needs.

For each and every root level record, I need to call stored procedure by passing root record and it's corresponding child records. This is making the whole process very slow.

That's why I am looking a way, so that I can pass whole hierarchical list at once, and inside stored procedure, by looping and iterating child records I can insert parent child records.

How can I achieve this?</b>

where clause error

$
0
0

i have this code

Select  p_firstname, p_email
From    teacher as t  inner join borrowed as b
where t.p_id = b.p_id;

and it gives 'Record Count: 0'

note: the code is correct


Building custom authentication to reporting services

$
0
0

Hi,

I am using SQL Server 2016 Report Services, where I have built a number of reports that I would like to show in context of the user (different data depending on the user accessing the report).  I have another web application (developed in ASP.net Core) that I have authentication built into and users accounts (stored in a SQL Server database), that I would like to integrate into my Report Services application (i.e. log into my existing application and embed reports into the application).

Question 1:

I would like to be able to identify the user and show reports with data relevant to that user but I'm not sure what's the best way to do this - can I use my already existing user store (SQL database) for identifying users?  Or do the users need to exist in AD to authenticate to Report Services.

Question 2:

Are there any online examples for custom authentication in SQL Server Report Services 2016?  I can only find examples from way back to 2008 (see this link:http://msftrsprodsamples.codeplex.com/).

NOTE: My web app is built in ASP.net core and has forms authentication.

Thanks for any help in advance! :)

Error occurred while enabling MARS for this connection

$
0
0

Facing issues on the systems with Windows 2012 R2 and Windows 2008 R2 (having .net frameworks like 4 or 4.5.2 or 4.6.1) and getting an error in trace logs while it tried to connect to the services.

 

The error trace says -

"Trace Message: Connection open and login was successful, but then an error occurred while enabling MARS for this connection. (provider: Shared memory Provider, error:15 - Function not supported)"

Do we have any specific reason why this is happening ? Also, how do we prevent it happening further ?

Not able to create table in MS SQL

$
0
0

I have posted this in other forum and then I followed their advice to upgrade mySQL to 2016 and I should be able to create table with no problem.  This I did 2 months ago but have yet to test out.

Now, I have to do an urgent project and I have to test things out.

But, I am still not able to create the table.

Here's the error message.

This backend version is not supported to design database diagrams or tables. (MS Visual Database Tools)

------------------------------
Program Location:

   at Microsoft.SqlServer.Management.DataTools.Interop.IDTTableDesignerFactory.NewTable(Object dsRef, Object pServiceProvider)
   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.TableDesignerNode.CreateDesigner(IDTDocToolFactoryProvider factoryProvider, IVsDataConnection dataConnection)
   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VsDataDesignerNode.CreateDesigner()
   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VsDataDesignerNode.Open()
   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VirtualProject.CreateDesigner(Urn origUrn, DocumentType editorType, DocumentOptions aeOptions, IManagedConnection con, String fileName)
   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VirtualProject.Microsoft.SqlServer.Management.UI.VSIntegration.Editors.ISqlVirtualProject.CreateDesigner(Urn origUrn, DocumentType editorType, DocumentOptions aeOptions, IManagedConnection con, String fileName)
   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.ISqlVirtualProject.CreateDesigner(Urn origUrn, DocumentType editorType, DocumentOptions aeOptions, IManagedConnection con, String fileName)
   at Microsoft.SqlServer.Management.UI.VSIntegration.Editors.VsDocumentMenuItem.CreateDesignerWindow(IManagedConnection mc, DocumentOptions options)

Please advise what should I do in order for me to use the Ms SQL. Tks.
Microsoft SQL Server Management Studio						11.0.2100.60
Microsoft Data Access Components (MDAC)						6.1.7601.17514
Microsoft MSXML						3.0 4.0 6.0
Microsoft Internet Explorer						9.11.9600.18537
Microsoft .NET Framework						4.0.30319.42000
Operating System						6.1.7601

Installation of KB3045313 fails due to missing .NET Framework 3.5

$
0
0
On a Windows Server 2012 R2 with SQL Server 2008 R2, installation of KB3045313 is offered, but fails with "The following feature couldn't be installed: .NET Framework 3.5 (includes .NET 2.0 and 3.0)". This feature is indeed not installed on this server, but .NET Framework 4.5 is. I don't want to install an unneeded feature just to make this KB work. Is there a version of the patch that does not rely on .NET 3.5?

I am worried about SQL

$
0
0

SQL server is installed on Macnitosh OS but not on MS Window 8, 8.1, 10.....why? plz...! tell me the solution...

framework 3.5 is not installed....why?    I make more than 237 tries to install the framework? but all time i was unsuccessful???


How to re-use table data with in CLR Assembly using .net

$
0
0

Hi,

I am working on SQL CLR assembly table value function,

My method input is two names and   3000 rows table data, as of now i am passing table data as XML , because of XML or sql connection hitting large performance because this XML data has to convert as list of <names> .

Is there any way caching that table data with in assembly and reuse to further calls .


Could you please suggest me.

Thanks,

Mkonanki.


Monday Morning Access issue - Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The wait operation timed out

$
0
0

Hi All,

We have a website and access by approximately 200 users weekdays (Sunday almost no users accessing). Recently we getting an issue that users are getting slow login and sometime they cannot even able to login to our site on Monday morning. 

I started investigating little with my knowledge, We have three database DB1, DB2 and DB3. DB1 has master setting that validate user login and DB2 has business data, DB3 to save the all the transaction logs.

We introduced a new feature to save the user grid setting (like sorting, paging) and retrieve when they access any page. For this we are using a stored procedure"dbo.GetUserSetting" in DB3. When user login to our site we retrieve some menu setting from DB1 and for that we using stored procedure"biz.GetUserSetting". What I know is when the stored procedure accessed with different namespace cannot be conflicted at all. and we are using different DbContext (ADO.NET code first approach) classes to access both databases. But now I am suspecting that weather one context class can be conflicted with another OR when making database connecting weather namespace in SQL can create this conflict error ? 

Please help me to figure out this issue. 


Maharajan

Validation of DATE in SQL

$
0
0
 I want to validate the date using start date and end date and duration between the dates using SQL stored procedure. For eg:If i raised a requistion  form on start date 13-01-2017 and duration of stay 2days and the end date will be 15-01-2017 then  i tried to send a requistion form on 14-01-2017 it should be validated like, that details should not be added to the backend.because the date 13,14,15 i have already raised the form so its not possible to add details,like that i want to validate.So I want to modify the stored procedure .I have tried the DATEIFF,DATEADD ,BETWEEN methods.But its not working.Can anyone help me please..
BEGIN
	IF NOT EXISTS( SELECT moveDate FROM T_TADA_Requistion WHERE EmpID=@EmpID and (moveDate=@move_date) and
	(@move_date  <=( DATEADD(d,durationStay,moveDate)) and( @enddate >= (DATEADD(d,durationStay,moveDate)))))
	BEGIN
        INSERT INTO   	 T_TADA_Requistion(EmpID,
							DesigID,
							DivisionID,
							CityID,
							ModeID,
							moveDate,
							BasicSalary,
							Gradepay,
							purpose,
							esttVisited,
							durationStay,
							durationUnit,
							dt_movepart,
							placeStay,
							authority,
							ProjFBEID,
							reason,
							advance_flag,
							modified_By ,
							created_Date,
							created_By,
							IsActive)

						VALUES(@EmpID,
							@DesigID,
							@DivisionID,
							@CityID,
							@mode_ID,
							@move_date,
							@basic_pay,
							@grade_pay,
							@purpose,
							@estt_visited,
							@duration_stay,
							@duration_unit,
							@dt_move,
							@placeStay,
							@authority,
							@expenID,
							@reason,
							@advanceflag,
							@modified_By,
							GETDATE(),
							CURRENT_USER,
							--@DomainLoginName,
							1)

					SELECT 'Details Inserted Successfully'
				END
			ELSE
				BEGIN
					SELECT 'Details already present for the Selected Date!'
		        END
		    END




Ignore ' in a NVARCHAR

$
0
0
I'm trying to store text into a database. I have it currently setup as a NVARCHAR(MAX). The problem I see is on the Update the text contains " ' " and it messes it up. How do I ignore " ' " and allow it to treat it as plain text on a Update or Insert?

High Usage on

$
0
0

Hello,

I get a very high usage of the below query, 

as it were sent from the application servers (as the profiler shows).

I sure know that our application is not executing it. 

So an i not clear what & when is executing it? And how to control it.

SELECT 
@reservedpages = SUM (reserved_page_count),
@usedpages = SUM (used_page_count),
@pages = SUM (
CASE
WHEN (index_id < 2) THEN (in_row_data_page_count + lob_used_page_count + row_overflow_used_page_count)
ELSE 0
END
),
@rowCount = SUM (
CASE
WHEN (index_id < 2) THEN row_count
ELSE 0
END
)
FROM sys.dm_db_partition_stats
WHERE object_id = @id

A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name is no longer available.

$
0
0

Hi all,

Can someone help me solve this issue? We are getting this error when we try to access the application.

We have SQL server standard at ISP in cloud on Windows 2012 R2 Std. A client application is installed in our local desktops and laptops. The application connected to the Database in SQL cloud as said above. We have around 40 users locally and only few random users (around 5 users) are getting this error every day (mostly desktop users but not laptop).  


We have Windows 10 Pro 32 bit in all PCs and all latest patches are installed in all PCs. 

LAN is resolving the servers, DNS is perfect. Trace route is fine and ping is fine to all servers.

See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Data.SqlClient.SqlException (0x80131904): A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 - The specified network name is no longer available.) ---> System.ComponentModel.Win32Exception (0x80004005): The specified network name is no longer available
   at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
   at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
   at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
   at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
   at System.Data.SqlClient.TdsParserStateObject.ReadSniSyncOverAsync()
   at System.Data.SqlClient.TdsParserStateObject.TryReadNetworkPacket()
   at System.Data.SqlClient.TdsParserStateObject.TryPrepareBuffer()
   at System.Data.SqlClient.TdsParserStateObject.TryReadByte(Byte& value)
   at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
   at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
   at System.Data.SqlClient.SqlDataReader.get_MetaData()
   at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
   at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
   at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean asyncWrite)
   at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
   at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
   at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
   at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
   at System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
   at System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
   at System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
   at CORE.BI.Setup_DataSetTableAdapters.SYS_SETUPTableAdapter.GetData()
   at ERP.Login.btnLogin_Click(Object sender, EventArgs e)
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
ClientConnectionId:bac63b1a-f756-4649-90c5-398c96ade3d5
Error Number:64,State:0,Class:20


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.127.1 built by: NETFXREL3STAGE
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
ERP
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/BizMagnet/ERP.exe
----------------------------------------
System.Windows.Forms
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.79.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1081.0 built by: NETFXREL3STAGE
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1068.2 built by: NETFXREL3STAGE
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
CORE
    Assembly Version: 1.0.0.0
    Win32 Version: 1.0.0.0
    CodeBase: file:///C:/BizMagnet/CORE.EXE
----------------------------------------
System.Data
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1082.0 built by: NETFXREL3STAGE
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Core
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1084.0 built by: NETFXREL3STAGE
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Xml
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.1064.2 built by: NETFXREL3STAGE
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Configuration
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.79.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Transactions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.79.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Transactions/v4.0_4.0.0.0__b77a5c561934e089/System.Transactions.dll
----------------------------------------
System.EnterpriseServices
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.79.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.EnterpriseServices/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.EnterpriseServices.dll
----------------------------------------
System.Data.DataSetExtensions
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.79.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Data.DataSetExtensions/v4.0_4.0.0.0__b77a5c561934e089/System.Data.DataSetExtensions.dll
----------------------------------------
System.Numerics
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.79.0 built by: NETFXREL2
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Numerics/v4.0_4.0.0.0__b77a5c561934e089/System.Numerics.dll
----------------------------------------
System.Data.Linq
    Assembly Version: 4.0.0.0
    Win32 Version: 4.6.79.0
    CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Data.Linq/v4.0_4.0.0.0__b77a5c561934e089/System.Data.Linq.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.


Viewing all 780 articles
Browse latest View live