Skip to content

After instalation PerformanceMonitorInstaller-1.3.0 with success can´t find table config.retention_settings #223

@josejulioduarte

Description

@josejulioduarte

Which component is your question about?

Full Dashboard

Performance Monitor Version

1.3.0

Is your question about how it works, or the results?

Setup / installation

What's your question?

Hello Erik
After instalation PerformanceMonitorInstaller-1.3.0 with success i can´t find table config.retention_settings in database PerformanceMonitor.

in readme.md
Data Retention

Default: 30 days (configurable per table in config.retention_settings

USE [PerformanceMonitor]
GO
DECLARE @SchemaName SYSNAME = 'config';
DECLARE @objectname SYSNAME = 'retention_setting';

IF EXISTS
(
SELECT 1
FROM sys.objects o
JOIN sys.schemas s ON o.schema_id = s.schema_id
WHERE s.name = @SchemaName
AND o.name = @objectname
)
BEGIN
PRINT 'Object exists';
END
ELSE
BEGIN
PRINT 'Object does not exist';
END
GO

Result:
Object does not exist

Additional Context

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    questionFurther information is requested

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions