This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE [Archive] -- CONTAINMENT = NONE | |
ON PRIMARY | |
( | |
NAME = N'Archive' | |
,FILENAME = N'C:\data\Archive.mdf' | |
-- ,FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL12.MS_SQL_2014\MSSQL\DATA\Archive.mdf' | |
,SIZE = 4288KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB | |
) | |
,FILEGROUP Archive_FileStreamGroup1 CONTAINS FILESTREAM DEFAULT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- http://msdn.microsoft.com/en-us/library/cc645583.aspx | |
CREATE TABLE dbo.MyDataFile | |
( | |
-- MyUID uniqueidentifier NOT NULL | |
-- A table that has FILESTREAM columns must have a nonnull unique column with the ROWGUIDCOL property. | |
MyUID uniqueidentifier ROWGUIDCOL NOT NULL UNIQUE | |
,MyFile VARBINARY(MAX) FILESTREAM NULL | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($, document, undefined) { | |
$.extend({ | |
/** | |
* A static jQuery-method. | |
* @param {number} x The x-coordinate of the Point. | |
* @param {number} y The y-coordinate of the Point. | |
* @param {Element} until (optional) The element at which traversing should stop. Default is document.body | |
* @return {jQuery} A set of all elements visible at the given point. | |
*/ | |
elementsFromPoint: function(x,y, until) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function elementsFromPoint(x,y, until) | |
{ | |
// until || (until = document.body); // Stop traversing here | |
// if (until instanceof $) until = until[0]; | |
// http://stackoverflow.com/questions/1569775/how-do-i-find-the-dom-node-that-is-at-a-given-x-y-position-hit-test | |
if(!until) | |
{ | |
until = document.elementFromPoint(x,y); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<meta charset="UTF-8" /> | |
<title>Redirect to new test portal</title> | |
<meta http-equiv="cache-control" content="max-age=0" /> | |
<meta http-equiv="cache-control" content="no-cache" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta charset="utf-8" /> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="cache-control" content="max-age=0" /> | |
<meta http-equiv="cache-control" content="no-cache" /> | |
<meta http-equiv="expires" content="0" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @in_yearFrom int | |
DECLARE @in_yearTo int | |
DECLARE @in_QuartalFrom int | |
DECLARE @in_QuartalTo int | |
SET @in_yearFrom = 1800 | |
SET @in_yearTo = 1805 | |
SET @in_QuartalFrom = 2 | |
SET @in_QuartalTo = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[fu_RPT_OverlappingDateRangesDays]') AND type in (N'FN', N'IF', N'TF', N'FS', N'FT')) | |
DROP FUNCTION [dbo].[fu_RPT_OverlappingDateRangesDays] | |
GO | |
-- ====================================================================================================================== | |
-- Author: Stefan Steiger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[fu_get_ISOWeekBegin]') AND type in (N'FN', N'IF', N'TF', N'FS', N'FT')) | |
DROP FUNCTION [dbo].[fu_get_ISOWeekBegin] | |
GO | |
-- PRE: Valid year and week no# | |
-- POST: First day of ISO week no# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[fu_get_ISOWeekEnd]') AND type in (N'FN', N'IF', N'TF', N'FS', N'FT')) | |
DROP FUNCTION [dbo].[fu_get_ISOWeekEnd] | |
GO | |
-- PRE: Valid year and week no# |