Skip to content

Instantly share code, notes, and snippets.

@jps
Created June 11, 2013 20:16
Show Gist options
  • Select an option

  • Save jps/5760229 to your computer and use it in GitHub Desktop.

Select an option

Save jps/5760229 to your computer and use it in GitHub Desktop.
Creates the cache Item table for the persistent caching example
CREATE TABLE TestDB.dbo.CacheItem(
CacheItemID INT PRIMARY KEY,
Name VARCHAR(255) UNIQUE NOT NULL,
Value VARCHAR(4000),
Value_Type VARCHAR(255) NOT NULL,
Expires DATETIME
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment