You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
USE [nhibernate]
GO
/****** Object: UserDefinedFunction [dbo].[TestQueryCache] Script Date: 17.10.2017 14:11:13 ******/SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================-- Author: <Author,,Name>-- Create date: <Create Date, ,>-- Description: <Description, ,>-- =============================================
CREATE FUNCTION [dbo].[TestQueryCache]
()
RETURNS INTASBEGIN
RETURN DATEPART(YEAR, GETUTCDATE()) *100+ DATEPART(MONTH, GETUTCDATE());
END
GO