Skip to content

Instantly share code, notes, and snippets.

@bradleykronson
bradleykronson / umbraco.gitignore
Created August 4, 2021 13:29 — forked from amogram/umbraco.gitignore
A .gitignore file for Umbraco projects
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
@bradleykronson
bradleykronson / Pending-Umbraco-Documents-4.11.8.sql
Last active August 30, 2015 08:38 — forked from danlister/4.11.8.sql
Retrieve a list of Umbraco Documents which have pending changes
DECLARE @NodeId INT
DECLARE my_cursor CURSOR local static read_only forward_only FOR
SELECT DISTINCT nodeid
FROM cmsdocument
OPEN my_cursor
FETCH next FROM my_cursor INTO @NodeId
WHILE @@FETCH_STATUS = 0