Viewing 4 posts - 1 through 4 (of 4 total)
server: 224GB, sql server: 170GB
February 4, 2016 at 7:57 am
TheSQLGuru (2/2/2015)
February 2, 2015 at 7:20 am
GilaMonster (7/9/2014)
What recovery model is the DB in?
simple
July 9, 2014 at 5:35 am
create database example
GO
USE example
GO
Create table tbl_a (email varchar (20),membershipexpiry date)
insert into tbl_a VALUES
('a@a.com','01-Jan-2012'),('b@a.com','01-Jan-2013')
GO
Create proc proc_a
@email varchar(20)
as
declare @v-2 date =
(select membershipexpiry from tbl_a where email = @email)
November 24, 2012 at 9:01 am
Viewing 4 posts - 1 through 4 (of 4 total)