My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--$Author: Brent.anderson2 $
--$Date: 11/20/09 4:22p $
--$Modtime: 11/20/09 4:13p $

use YASBE
go

SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER OFF
GO

/*
drop proc BackupProfile_u
drop TYPE File_UDT
*/
if not exists(select 1 from sys.types where name = 'File_UDT')
create TYPE File_UDT AS TABLE
(
FullPath varchar(900) PRIMARY KEY,
ModifiedDate datetime,
[Size] bigint
)
GO

GRANT EXECUTE ON TYPE::dbo.File_UDT TO PUBLIC
GO

Change log

r17 by Beej2020 on Dec 22, 2011   Diff
[No log message]
Go to: 
Project members, sign in to write a code review

Older revisions

r11 by beej2020 on Feb 12, 2011   Diff
[No log message]
All revisions of this file

File info

Size: 471 bytes, 28 lines
Powered by Google Project Hosting