Skip to content

Instantly share code, notes, and snippets.

View Otterpohl's full-sized avatar
🐌

Tristan Otterpohl Otterpohl

🐌
  • London
  • 10:28 (UTC +01:00)
View GitHub Profile
@Otterpohl
Otterpohl / Strip-HTMLTags
Created May 13, 2022 16:04
Function to strip html tags from data
CREATE FUNCTION [dbo].[fn_StripHTML] (@HTMLText VARCHAR(MAX))
RETURNS VARCHAR(MAX) AS
BEGIN
DECLARE @Start INT = CHARINDEX('<',@HTMLText)
DECLARE @End INT = CHARINDEX('>',@HTMLText,CHARINDEX('<',@HTMLText))
DECLARE @Length INT = (@End - @Start) + 1
WHILE @Start > 0 AND @End > 0 AND @Length > 0
BEGIN
SET @HTMLText = STUFF(@HTMLText,@Start,@Length,'')
@Otterpohl
Otterpohl / Script-Indexes.sql
Created May 13, 2022 16:04
Generates script to create indexes
DECLARE @SchemaName VARCHAR(100);
DECLARE @TableName VARCHAR(256);
DECLARE @IndexName VARCHAR(256);
DECLARE @ColumnName VARCHAR(100);
DECLARE @is_unique VARCHAR(100);
DECLARE @IndexTypeDesc VARCHAR(100);
DECLARE @FileGroupName VARCHAR(100);
DECLARE @is_disabled VARCHAR(100);
DECLARE @IndexOptions VARCHAR(MAX);
DECLARE @IndexColumnId INT;
@Otterpohl
Otterpohl / Get-SSRSReportUsage
Created May 13, 2022 16:02
Get usage details of SSRS reports
SELECT c.Name,
c.[Path],
COUNT(*) AS TimesRun,
MAX(l.TimeStart) AS [LastRun],
(
SELECT SUBSTRING(
(
SELECT CAST(', ' AS VARCHAR(MAX))+CAST(c1.Name AS VARCHAR(MAX))
FROM [ReportServer].[dbo].[Catalog] AS c
INNER JOIN [ReportServer].[dbo].[DataSource] AS d ON c.ItemID = d.ItemID
@Otterpohl
Otterpohl / Get-ParamterisedPlans.sql
Created May 13, 2022 16:01
Get queries which have many plans per query
WITH RedundantQueries
AS (SELECT TOP 10
query_hash,
COUNT(query_hash) AS PlansCached,
COUNT(DISTINCT (query_hash)) AS DistinctPlansCached,
MIN(creation_time) AS FirstPlanCreationTime,
MAX(creation_time) AS LastPlanCreationTime,
SUM(total_worker_time) AS Total_CPU_ms,
SUM(total_elapsed_time) AS Total_Duration_ms,
SUM(total_logical_reads) AS Total_Reads,
@Otterpohl
Otterpohl / Get-IndexDetail
Created May 13, 2022 15:53
Get details of indexes
SELECT T.DatabaseName,
T.ObjectId,
T.ObjectName,
T.IndexId,
T.IndexDescription,
CONVERT(DECIMAL(16, 1), (SUM(T.avg_record_size_in_bytes * T.record_count) / (1024.0 * 1024))) AS [IndexSize(MB)],
T.lastupdated AS [StatisticLastUpdated],
T.AvgFragmentationInPercent
FROM
(
@Otterpohl
Otterpohl / Get-RecentDBCCEvents.sql
Created May 13, 2022 15:50
Get the recent DBCC events executed
DECLARE @TraceFileName NVARCHAR(400);
SELECT TOP 1
@TraceFileName = path
FROM sys.traces
WHERE is_default = 1;
SELECT *
FROM sys.fn_trace_gettable(@TraceFileName, DEFAULT) AS t
WHERE (
@Otterpohl
Otterpohl / Get-DatabaseLatestRestores.sql
Created May 13, 2022 15:49
Get the most recent database restore detail
WITH LastRestores AS
(
SELECT [rs].[destination_database_name]
,[rs].[restore_date]
,[bs].[backup_start_date]
,[bs].[backup_finish_date]
,[bs].[database_name] AS [source_database_name]
,[bmf].[physical_device_name] AS [backup_file_used_for_restore]
,RowNum = ROW_NUMBER() OVER (PARTITION BY [rs].[destination_database_name] ORDER BY rs.[restore_date] DESC)
FROM msdb..restorehistory rs
@Otterpohl
Otterpohl / Get-ObjectLastUsage
Created May 13, 2022 15:47
Get a tables last scan, seek, lookup and update
SELECT t.name,
MAX(us.last_user_seek) AS last_user_seek,
MAX(us.last_user_scan) AS last_user_scan,
MAX(us.last_user_lookup) AS last_user_lookup,
MAX(us.last_user_update) AS last_user_update
FROM sys.dm_db_index_usage_stats AS us
JOIN sys.tables AS t
ON t.object_id = us.object_id
WHERE us.database_id = DB_ID()
GROUP BY t.name;
@Otterpohl
Otterpohl / Get-AgentJobWithSameExecutionTime.sql
Created May 13, 2022 15:43
Get agent jobs with the same execution time
SELECT j.name,
j.description,
a.start_execution_date
FROM msdb.dbo.sysjobs AS j
INNER JOIN msdb.dbo.sysjobactivity AS a
ON j.job_id = a.job_id
WHERE a.start_execution_date > DATEADD(dd, -14, GETDATE())
AND j.enabled = 1
AND a.start_execution_date IN
(
@Otterpohl
Otterpohl / Get-AgentJobSchedule.sql
Created May 13, 2022 15:41
Gets the schedules for all agent jobs
select CASE (ss.freq_subday_type)
WHEN 1 then left(stuff((stuff((replicate('0', 6 - len(ss.active_start_time)))+ convert(varchar(6),ss.active_start_time),3,0,':')),6,0,':'),8)
WHEN 2 then 'Every ' + convert(varchar(10),ss.freq_subday_interval) + ' seconds'
WHEN 4 then 'Every ' + convert(varchar(10),ss.freq_subday_interval) + ' minutes'
WHEN 8 then 'Every ' + convert(varchar(10),ss.freq_subday_interval) + ' hours'
ELSE '??'
END AS [Time],
s.Name
from msdb.dbo.sysjobs AS s
left join msdb.dbo.sysjobschedules AS sj on S.job_id = SJ.job_id