13 lines
145 B
SQL
13 lines
145 B
SQL
INSERT INTO [Exception]
|
|
(
|
|
[Text],
|
|
[ExceptionText],
|
|
[StackTrace],
|
|
[CreatedDate]
|
|
)
|
|
SELECT
|
|
@Text,
|
|
@ExceptionText,
|
|
@StackTrace,
|
|
@CreatedDate
|