SQL Server partitioning

http://msdn.microsoft.com/en-us/library/ms188730.aspx To create a partitioned table In Object Explorer, connect to an instance of Database Engine. On the Standard bar, click New Query. Copy and paste the following example into the query window and click Execute. The example creates new filegroups, a partition function, and…

Move logins

https://support.microsoft.com/en-us/help/918992/how-to-transfer-logins-and-passwords-between-instances-of-sql-server sp_hexadecimal USE [master] GO   /****** Object:  StoredProcedure [dbo].[sp_hexadecimal]    Script Date: 10/14/2014 2:00:01 PM ******/ SET ANSI_NULLS ON GO   SET QUOTED_IDENTIFIER ON GO   CREATE PROCEDURE [dbo].[sp_hexadecimal]     @binvalue varbinary(256),     @hexvalue varchar (514) OUTPUT AS DECLARE @charvalue varchar (514) DECLARE @i int…