Database Reference
In-Depth Information
was using NServiceBus Version 4.4. We will use the Package Manager Console to install
the correct version.
We will create the Log table in the nservicebus database by running SQL commands
to create the Log table in the nservicebus table using Visual Studio 2012.
For the query, refer to the following code snippet:
CREATE TABLE [dbo].[Log] (
[Id] [int] IDENTITY (1, 1) NOT NULL,
[Date] [datetime] NOT NULL,
[Thread] [varchar] (255) NOT NULL,
[Level] [varchar] (50) NOT NULL,
[Logger] [varchar] (255) NOT NULL,
[Message] [varchar] (4000) NOT NULL,
[Exception] [varchar] (2000) NULL
)
The previous query created the Log table for nservicebus . SQL commands do have
their uses in commands.
Search WWH ::




Custom Search