Hello everybody,
On a SQL file database (MDF file), SSMS raises me an error when I try to display the data of a table :
When giving it the path, ProcExp only finds explorer.exe, and it is normal as I displayed the folder. It appears two times in the list, I did not deepen this.
Any idea what is on?
It is the Northwind database, here is the structure of the table:
On a SQL file database (MDF file), SSMS raises me an error when I try to display the data of a table :
C#:
Activity Monitor Log
[TABLE]
[TR]
[TD]SyncLock called without an initialized synchronization object[/TD]
[/TR]
[/TABLE]
When giving it the path, ProcExp only finds explorer.exe, and it is normal as I displayed the folder. It appears two times in the list, I did not deepen this.
Any idea what is on?
It is the Northwind database, here is the structure of the table:
Structure of the Category table (creation script generated by SSMS):
USE [D:\PROJECTS VISUAL STUDIO\WINFORM\EF6WINFORMS\SAMPLE\NORTHWND.MDF]
GO
/****** Object: Table [dbo].[Categories] Script Date: 29/09/2022 15:29:05 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Categories](
[CategoryID] [int] IDENTITY(1,1) NOT NULL,
[CategoryName] [nvarchar](15) NOT NULL,
[Description] [ntext] NULL,
[Picture] [image] NULL,
CONSTRAINT [PK_Categories] PRIMARY KEY CLUSTERED
(
[CategoryID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
Last edited by a moderator: