- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLQuery_DeveloperTestDB.sql
More file actions
Latest commit
335 lines (335 loc) · 33.9 KB
/
Copy pathSQLQuery_DeveloperTestDB.sql
File metadata and controls
335 lines (335 loc) · 33.9 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
USE [master]
GO
/****** Object: Database [DeveloperTestDB] Script Date: 15/06/2021 7:53:29 a. m. ******/
CREATEDATABASE [DeveloperTestDB]
CONTAINMENT =NONE
ONPRIMARY
( NAME=N'DeveloperTestDB', FILENAME=N'C:\Program Files\Microsoft SQL Server\MSSQL15.MSSQLSERVER\MSSQL\DATA\DeveloperTestDB.mdf' , SIZE = 8192KB , MAXSIZE =UNLIMITED, FILEGROWTH = 65536KB )
LOGON
( NAME=N'DeveloperTestDB_log', FILENAME=N'C:\Program Files\Microsoft SQL Server\MSSQL15.MSSQLSERVER\MSSQL\DATA\DeveloperTestDB_log.ldf' , SIZE = 8192KB , MAXSIZE = 2048GB , FILEGROWTH = 65536KB )
WITH CATALOG_COLLATION = DATABASE_DEFAULT
GO
ALTERDATABASE [DeveloperTestDB] SETCOMPATIBILITY_LEVEL=150
GO
IF (1=FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [DeveloperTestDB].[dbo].[sp_fulltext_database] @action ='enable'
end
GO
ALTERDATABASE [DeveloperTestDB] SETANSI_NULL_DEFAULTOFF
GO
ALTERDATABASE [DeveloperTestDB] SETANSI_NULLSOFF
GO
ALTERDATABASE [DeveloperTestDB] SETANSI_PADDINGOFF
GO
ALTERDATABASE [DeveloperTestDB] SETANSI_WARNINGSOFF
GO
ALTERDATABASE [DeveloperTestDB] SETARITHABORTOFF
GO
ALTERDATABASE [DeveloperTestDB] SETAUTO_CLOSEOFF
GO
ALTERDATABASE [DeveloperTestDB] SETAUTO_SHRINKOFF
GO
ALTERDATABASE [DeveloperTestDB] SETAUTO_UPDATE_STATISTICSON
GO
ALTERDATABASE [DeveloperTestDB] SETCURSOR_CLOSE_ON_COMMITOFF
GO
ALTERDATABASE [DeveloperTestDB] SETCURSOR_DEFAULTGLOBAL
GO
ALTERDATABASE [DeveloperTestDB] SETCONCAT_NULL_YIELDS_NULLOFF
GO
ALTERDATABASE [DeveloperTestDB] SETNUMERIC_ROUNDABORTOFF
GO
ALTERDATABASE [DeveloperTestDB] SETQUOTED_IDENTIFIEROFF
GO
ALTERDATABASE [DeveloperTestDB] SETRECURSIVE_TRIGGERSOFF
GO
ALTERDATABASE [DeveloperTestDB] SETDISABLE_BROKER
GO
ALTERDATABASE [DeveloperTestDB] SETAUTO_UPDATE_STATISTICS_ASYNCOFF
GO
ALTERDATABASE [DeveloperTestDB] SETDATE_CORRELATION_OPTIMIZATIONOFF
GO
ALTERDATABASE [DeveloperTestDB] SETTRUSTWORTHYOFF
GO
ALTERDATABASE [DeveloperTestDB] SETALLOW_SNAPSHOT_ISOLATIONOFF
GO
ALTERDATABASE [DeveloperTestDB] SETPARAMETERIZATIONSIMPLE
GO
ALTERDATABASE [DeveloperTestDB] SETREAD_COMMITTED_SNAPSHOTOFF
GO
ALTERDATABASE [DeveloperTestDB] SET HONOR_BROKER_PRIORITY OFF
GO
ALTERDATABASE [DeveloperTestDB] SETRECOVERY FULL
GO
ALTERDATABASE [DeveloperTestDB] SETMULTI_USER
GO
ALTERDATABASE [DeveloperTestDB] SETPAGE_VERIFYCHECKSUM
GO
ALTERDATABASE [DeveloperTestDB] SETDB_CHAININGOFF
GO
ALTERDATABASE [DeveloperTestDB] SETFILESTREAM( NON_TRANSACTED_ACCESS =OFF )
GO
ALTERDATABASE [DeveloperTestDB] SET TARGET_RECOVERY_TIME =60 SECONDS
GO
ALTERDATABASE [DeveloperTestDB] SETDELAYED_DURABILITY=DISABLED
GO
ALTERDATABASE [DeveloperTestDB] SET ACCELERATED_DATABASE_RECOVERY =OFF
GO
EXECsys.sp_db_vardecimal_storage_formatN'DeveloperTestDB', N'ON'
GO
ALTERDATABASE [DeveloperTestDB] SETQUERY_STORE=OFF
GO
USE [DeveloperTestDB]
GO
/****** Object: Schema [Agreement] Script Date: 15/06/2021 7:53:29 a. m. ******/
CREATESCHEMA [Agreement]
GO
/****** Object: Table [Agreement].[agreement] Script Date: 15/06/2021 7:53:29 a. m. ******/
SETANSI_NULLSON
GO
SETQUOTED_IDENTIFIERON
GO
CREATETABLE [Agreement].[agreement](
[Id] [int] IDENTITY(1,1) NOTNULL,
[Name] [nvarchar](max) NULL,
[Description] [nvarchar](max) NULL,
[CreationDate] [datetime2](7) NOTNULL,
[Amount_Value] [decimal](18, 2) NULL,
[Amount_Currency] [nvarchar](max) NULL,
CONSTRAINT [PK_agreement] PRIMARYKEYCLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX=OFF, STATISTICS_NORECOMPUTE=OFF, IGNORE_DUP_KEY=OFF, ALLOW_ROW_LOCKS=ON, ALLOW_PAGE_LOCKS=ON, OPTIMIZE_FOR_SEQUENTIAL_KEY =OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
/****** Object: Table [dbo].[__EFMigrationsHistory] Script Date: 15/06/2021 7:53:29 a. m. ******/
SETANSI_NULLSON
GO
SETQUOTED_IDENTIFIERON
GO
CREATETABLE [dbo].[__EFMigrationsHistory](
[MigrationId] [nvarchar](150) NOTNULL,
[ProductVersion] [nvarchar](32) NOTNULL,
CONSTRAINT [PK___EFMigrationsHistory] PRIMARYKEYCLUSTERED
(
[MigrationId] ASC
)WITH (PAD_INDEX=OFF, STATISTICS_NORECOMPUTE=OFF, IGNORE_DUP_KEY=OFF, ALLOW_ROW_LOCKS=ON, ALLOW_PAGE_LOCKS=ON, OPTIMIZE_FOR_SEQUENTIAL_KEY =OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [Agreement].[agreement] ON
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (3, N'Acuerdo Prueba', N'Esta es una prueba', CAST(N'2019-12-10T16:40:17.8770000'ASDateTime2), CAST(10000.00ASDecimal(18, 2)), N'CO')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (4, N'Acuerdo Prueba 2', N'2', CAST(N'2020-12-10T16:40:17.8770000'ASDateTime2), CAST(30000.00ASDecimal(18, 2)), N'CO')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (5, N'Monmouth Real Estate Investment Corporation', N'Argemone munita Durand & Hilg. ssp. rotundata (Rydb.) G.B. Ownbey', CAST(N'2021-03-11T00:00:00.0000000'ASDateTime2), CAST(62286.09ASDecimal(18, 2)), N'JPY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (6, N'USA Compression Partners, LP', N'Impatiens ecornuta Gerry Moore, Zika & Rushworth', CAST(N'2021-01-13T00:00:00.0000000'ASDateTime2), CAST(59635.15ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (7, N'Catasys, Inc.', N'Cyrtandra ×scabrella C.B. Clarke (pro sp.)', CAST(N'2020-08-29T00:00:00.0000000'ASDateTime2), CAST(37341.28ASDecimal(18, 2)), N'PEN')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (8, N'Centrais Electricas Brasileiras S.A.- Eletrobras', N'Stephanomeria exigua Nutt. ssp. macrocarpa Gottlieb', CAST(N'2020-10-23T00:00:00.0000000'ASDateTime2), CAST(3053.13ASDecimal(18, 2)), N'LRD')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (9, N'Consumer Portfolio Services, Inc.', N'Nectandra coriacea (Sw.) Griseb.', CAST(N'2020-07-06T00:00:00.0000000'ASDateTime2), CAST(8450.37ASDecimal(18, 2)), N'CLP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (10, N'Sensus Healthcare, Inc.', N'Hulsea nana A. Gray', CAST(N'2020-07-04T00:00:00.0000000'ASDateTime2), CAST(48054.97ASDecimal(18, 2)), N'BDT')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (11, N'Synopsys, Inc.', N'Oplismenus compositus (L.) P. Beauv.', CAST(N'2020-04-30T00:00:00.0000000'ASDateTime2), CAST(23530.91ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (12, N'Taubman Centers, Inc.', N'Woodsia ilvensis (L.) R. Br.', CAST(N'2021-01-19T00:00:00.0000000'ASDateTime2), CAST(35878.14ASDecimal(18, 2)), N'PLN')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (13, N'Callaway Golf Company', N'Tonestus A. Nelson', CAST(N'2020-05-01T00:00:00.0000000'ASDateTime2), CAST(49247.97ASDecimal(18, 2)), N'LYD')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (14, N'National Grid Transco, PLC', N'Thinopyrum Á. Löve', CAST(N'2021-03-07T00:00:00.0000000'ASDateTime2), CAST(42188.61ASDecimal(18, 2)), N'PLN')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (15, N'Apollo Senior Floating Rate Fund Inc.', N'Potentilla glandulosa Lindl. ssp. hansenii (Greene) D.D. Keck', CAST(N'2021-05-31T00:00:00.0000000'ASDateTime2), CAST(30051.62ASDecimal(18, 2)), N'PKR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (16, N'First Trust Municipal CEF Income Opportunity ETF', N'Gardenia remyi H. Mann', CAST(N'2020-04-02T00:00:00.0000000'ASDateTime2), CAST(95945.38ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (17, N'Dave & Buster''s Entertainment, Inc.', N'Escobaria dasyacantha (Engelm.) Britton & Rose', CAST(N'2021-03-26T00:00:00.0000000'ASDateTime2), CAST(8909.88ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (18, N'Broadridge Financial Solutions, Inc.', N'Saxifraga tridactylites L.', CAST(N'2020-04-01T00:00:00.0000000'ASDateTime2), CAST(13704.48ASDecimal(18, 2)), N'RUB')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (19, N'Tempur Sealy International, Inc.', N'Hygrophila difformis (L. f.) Blume', CAST(N'2020-04-24T00:00:00.0000000'ASDateTime2), CAST(44972.28ASDecimal(18, 2)), N'PLN')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (20, N'Tesoro Logistics LP', N'Paspalum orbiculatum Poir.', CAST(N'2020-12-13T00:00:00.0000000'ASDateTime2), CAST(86323.36ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (21, N'Renesola Ltd.', N'Echinocereus chisoensis W.T. Marshall', CAST(N'2020-10-31T00:00:00.0000000'ASDateTime2), CAST(2709.78ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (22, N'Lydall, Inc.', N'Brickellia atractyloides A. Gray', CAST(N'2020-05-15T00:00:00.0000000'ASDateTime2), CAST(81475.84ASDecimal(18, 2)), N'TJS')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (23, N'Raymond James Financial, Inc.', N'Samolus L.', CAST(N'2021-06-10T00:00:00.0000000'ASDateTime2), CAST(72075.92ASDecimal(18, 2)), N'CRC')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (24, N'American Midstream Partners, LP', N'Rubus laudatus A. Berger', CAST(N'2020-12-13T00:00:00.0000000'ASDateTime2), CAST(62669.70ASDecimal(18, 2)), N'DOP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (25, N'NextEra Energy Partners, LP', N'Nymphaea mexicana Zucc.', CAST(N'2020-04-20T00:00:00.0000000'ASDateTime2), CAST(12188.33ASDecimal(18, 2)), N'PEN')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (26, N'First Capital, Inc.', N'Sorghum bicolor (L.) Moench ssp. drummondii (Nees ex Steud.) de Wet & Harlan', CAST(N'2020-12-20T00:00:00.0000000'ASDateTime2), CAST(83532.40ASDecimal(18, 2)), N'CZK')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (27, N'Cotiviti Holdings, Inc.', N'Swertia perennis L.', CAST(N'2021-02-19T00:00:00.0000000'ASDateTime2), CAST(28595.95ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (28, N'Delta Technology Holdings Limited', N'Solanum lycopersicum L.', CAST(N'2020-08-05T00:00:00.0000000'ASDateTime2), CAST(5380.18ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (29, N'Gladstone Commercial Corporation', N'Huperzia selago (L.) Bernh. ex Schrank & Mart.', CAST(N'2020-12-11T00:00:00.0000000'ASDateTime2), CAST(87917.81ASDecimal(18, 2)), N'EUR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (30, N'Neustar, Inc.', N'Hypogymnia mollis L. Pike & Hale', CAST(N'2020-08-05T00:00:00.0000000'ASDateTime2), CAST(13672.57ASDecimal(18, 2)), N'EUR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (31, N'American Water Works', N'Althaea L.', CAST(N'2021-06-09T00:00:00.0000000'ASDateTime2), CAST(47601.26ASDecimal(18, 2)), N'PHP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (32, N'Anadarko Petroleum Corporation', N'Betula L.', CAST(N'2020-05-14T00:00:00.0000000'ASDateTime2), CAST(37758.51ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (33, N'ZTO Express (Cayman) Inc.', N'Verbesina virginica L. var. virginica', CAST(N'2020-11-25T00:00:00.0000000'ASDateTime2), CAST(38585.14ASDecimal(18, 2)), N'MXN')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (34, N'Pioneer Municipal High Income Trust', N'Nothocalais cuspidata (Pursh) Greene', CAST(N'2020-04-06T00:00:00.0000000'ASDateTime2), CAST(93662.23ASDecimal(18, 2)), N'UAH')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (35, N'Torchmark Corporation', N'Gomphrena haageana Klotzsch', CAST(N'2020-11-08T00:00:00.0000000'ASDateTime2), CAST(24584.34ASDecimal(18, 2)), N'LKR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (36, N'Essex Property Trust, Inc.', N'Lupinus culbertsonii Greene ssp. hypolasius (Greene) Cox', CAST(N'2020-05-22T00:00:00.0000000'ASDateTime2), CAST(33399.28ASDecimal(18, 2)), N'PKR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (37, N'Xenon Pharmaceuticals Inc.', N'Viola wailenalenae (Rock) Skottsb.', CAST(N'2020-06-01T00:00:00.0000000'ASDateTime2), CAST(26112.18ASDecimal(18, 2)), N'THB')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (38, N'First Trust Specialty Finance and Financial Opportunities Fund', N'Rubus macvaughii L.H. Bailey', CAST(N'2020-08-04T00:00:00.0000000'ASDateTime2), CAST(44084.53ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (39, N'Precision Drilling Corporation', N'Celtis tenuifolia Nutt.', CAST(N'2020-09-09T00:00:00.0000000'ASDateTime2), CAST(97709.62ASDecimal(18, 2)), N'CZK')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (40, N'Nuveenn Intermediate Duration Quality Municipal Term Fund', N'Galactia erecta (Walter) Vail', CAST(N'2020-09-29T00:00:00.0000000'ASDateTime2), CAST(55850.51ASDecimal(18, 2)), N'USD')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (41, N'iShares Commodities Select Strategy ETF', N'Angelica genuflexa Nutt.', CAST(N'2021-03-18T00:00:00.0000000'ASDateTime2), CAST(6927.21ASDecimal(18, 2)), N'PEN')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (42, N'pdvWireless, Inc.', N'Morella cordifolia (L.) Killick', CAST(N'2020-11-03T00:00:00.0000000'ASDateTime2), CAST(3724.54ASDecimal(18, 2)), N'USD')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (43, N'Federated National Holding Company', N'Acer saccharum Marshall', CAST(N'2020-04-27T00:00:00.0000000'ASDateTime2), CAST(33849.69ASDecimal(18, 2)), N'BYR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (44, N'Alexander''s, Inc.', N'Bahia absinthifolia Benth. var. dealbata (A. Gray) A. Gray', CAST(N'2021-03-06T00:00:00.0000000'ASDateTime2), CAST(95900.74ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (45, N'Digital Realty Trust, Inc.', N'Penstemon deustus Douglas ex Lindl. var. variabilis (Suksd.) Cronquist', CAST(N'2020-07-03T00:00:00.0000000'ASDateTime2), CAST(32200.95ASDecimal(18, 2)), N'ILS')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (46, N'Evercore Partners Inc', N'Lithophragma affine A. Gray ssp. mixtum R.L. Taylor', CAST(N'2021-04-01T00:00:00.0000000'ASDateTime2), CAST(49032.42ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (47, N'First Trust Nasdaq Bank ETF', N'Celtis laevigata Willd.', CAST(N'2021-02-19T00:00:00.0000000'ASDateTime2), CAST(55473.12ASDecimal(18, 2)), N'EUR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (48, N'iPath US Treasury Long Bond Bull ETN', N'Botrychium dissectum Spreng.', CAST(N'2020-12-29T00:00:00.0000000'ASDateTime2), CAST(70445.07ASDecimal(18, 2)), N'UAH')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (49, N'Foamix Pharmaceuticals Ltd.', N'Micropsis dasycarpa (Griseb.) Beauverd', CAST(N'2020-11-10T00:00:00.0000000'ASDateTime2), CAST(42005.03ASDecimal(18, 2)), N'PHP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (50, N'Rayonier Advanced Materials Inc.', N'Asperugo procumbens L.', CAST(N'2020-11-04T00:00:00.0000000'ASDateTime2), CAST(34878.48ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (51, N'Teekay Offshore Partners L.P.', N'Litsea aestivalis (L.) Fernald', CAST(N'2021-01-04T00:00:00.0000000'ASDateTime2), CAST(22007.14ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (52, N'Laredo Petroleum, Inc.', N'Gaura neomexicana Wooton ssp. neomexicana', CAST(N'2021-03-29T00:00:00.0000000'ASDateTime2), CAST(3568.61ASDecimal(18, 2)), N'PKR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (53, N'Sanofi', N'Diphysa thurberi (A. Gray) Rydb.', CAST(N'2021-06-09T00:00:00.0000000'ASDateTime2), CAST(93305.71ASDecimal(18, 2)), N'USD')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (54, N'Merrimack Pharmaceuticals, Inc.', N'Nemacladus ramosissimus Nutt.', CAST(N'2021-01-08T00:00:00.0000000'ASDateTime2), CAST(81165.97ASDecimal(18, 2)), N'EUR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (55, N'Pentair plc.', N'Eriogonum longifolium Nutt. var. gnaphalifolium Gandog.', CAST(N'2020-04-05T00:00:00.0000000'ASDateTime2), CAST(77582.46ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (56, N'Frankly, Inc.', N'Mimulus moschatus Douglas ex Lindl. var. sessilifolius A. Gray', CAST(N'2020-06-10T00:00:00.0000000'ASDateTime2), CAST(57201.38ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (57, N'Royal Bancshares of Pennsylvania, Inc.', N'Phyllodoce breweri (A. Gray) A. Heller', CAST(N'2020-08-20T00:00:00.0000000'ASDateTime2), CAST(47658.02ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (58, N'Dynex Capital, Inc.', N'Anthracothecium staurosporum (Tuck. ex Willey) Zahlbr.', CAST(N'2020-08-09T00:00:00.0000000'ASDateTime2), CAST(16113.21ASDecimal(18, 2)), N'RUB')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (59, N'Danaos Corporation', N'Claytonia sibirica L.', CAST(N'2020-05-07T00:00:00.0000000'ASDateTime2), CAST(3833.45ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (60, N'iShares MSCI New Zealand Capped ETF', N'Iris spuria L. ssp. ochroleuca (L.) Dykes', CAST(N'2021-02-06T00:00:00.0000000'ASDateTime2), CAST(29326.63ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (61, N'Aehr Test Systems', N'Clermontia drepanomorpha Rock', CAST(N'2021-03-27T00:00:00.0000000'ASDateTime2), CAST(14492.73ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (62, N'Toronto Dominion Bank (The)', N'Oenothera nutans Atk. & Bartlett', CAST(N'2020-06-08T00:00:00.0000000'ASDateTime2), CAST(1419.62ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (63, N'Gabelli Multi-Media Trust Inc. (The)', N'Pseudopanax K. Koch', CAST(N'2020-05-30T00:00:00.0000000'ASDateTime2), CAST(23277.50ASDecimal(18, 2)), N'EGP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (64, N'Avid Technology, Inc.', N'Rinodina pyrina (Ach.) Arnold', CAST(N'2020-04-09T00:00:00.0000000'ASDateTime2), CAST(33535.28ASDecimal(18, 2)), N'MDL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (65, N'Alphabet Inc.', N'Schaefferia frutescens Jacq.', CAST(N'2020-06-27T00:00:00.0000000'ASDateTime2), CAST(27704.24ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (66, N'Fifth Street Finance Corp.', N'Equisetum pratense Ehrh.', CAST(N'2021-04-07T00:00:00.0000000'ASDateTime2), CAST(49900.33ASDecimal(18, 2)), N'CZK')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (67, N'Hartford Financial Services Group, Inc. (The)', N'Leymus ×multiflorus (Gould) Barkworth & Atkins', CAST(N'2020-11-10T00:00:00.0000000'ASDateTime2), CAST(55357.39ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (68, N'Pretium Resources, Inc.', N'Phlox subulata L. ssp. brittonii (Small) Wherry', CAST(N'2021-02-13T00:00:00.0000000'ASDateTime2), CAST(42184.29ASDecimal(18, 2)), N'VND')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (69, N'Kingold Jewelry Inc.', N'Melocactus intortus (Mill.) Urb.', CAST(N'2020-11-28T00:00:00.0000000'ASDateTime2), CAST(30297.28ASDecimal(18, 2)), N'MXN')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (70, N'Atlantic Capital Bancshares, Inc.', N'Abutilon theophrasti Medik.', CAST(N'2020-11-03T00:00:00.0000000'ASDateTime2), CAST(53860.16ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (71, N'Gaming Partners International Corporation', N'Rayjacksonia annua (Rydb.) R.L. Hartm. & M.A. Lane', CAST(N'2020-09-25T00:00:00.0000000'ASDateTime2), CAST(64874.28ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (72, N'Catalyst Pharmaceuticals, Inc.', N'Brotherella Loeske ex Fleisch.', CAST(N'2020-04-29T00:00:00.0000000'ASDateTime2), CAST(14301.73ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (73, N'RealPage, Inc.', N'Astragalus crassicarpus Nutt. var. crassicarpus', CAST(N'2020-05-02T00:00:00.0000000'ASDateTime2), CAST(24428.59ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (74, N'Anthem, Inc.', N'Sorbus aucuparia L.', CAST(N'2020-10-19T00:00:00.0000000'ASDateTime2), CAST(8597.15ASDecimal(18, 2)), N'PHP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (75, N'Albemarle Corporation', N'Jatropha dioica Cerv.', CAST(N'2020-04-13T00:00:00.0000000'ASDateTime2), CAST(52523.77ASDecimal(18, 2)), N'EUR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (76, N'The Ultimate Software Group, Inc.', N'Stephanomeria exigua Nutt. ssp. macrocarpa Gottlieb', CAST(N'2020-09-08T00:00:00.0000000'ASDateTime2), CAST(2274.97ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (77, N'CDK Global, Inc.', N'Carex ×subsalina Lepage', CAST(N'2020-08-12T00:00:00.0000000'ASDateTime2), CAST(38661.69ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (78, N'Akamai Technologies, Inc.', N'Xanthoria hasseana Rasanen', CAST(N'2020-06-20T00:00:00.0000000'ASDateTime2), CAST(18974.71ASDecimal(18, 2)), N'SOS')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (79, N'VictoryShares Emerging Market Volatility Wtd ETF', N'Thalictrum clavatum DC.', CAST(N'2021-02-22T00:00:00.0000000'ASDateTime2), CAST(15334.36ASDecimal(18, 2)), N'HNL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (80, N'CPS Technologies Corp.', N'Charpentiera elliptica (Hillebr.) A. Heller', CAST(N'2021-04-18T00:00:00.0000000'ASDateTime2), CAST(98342.02ASDecimal(18, 2)), N'KRW')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (81, N'Fauquier Bankshares, Inc.', N'Oxytropis maydelliana Trautv.', CAST(N'2020-05-29T00:00:00.0000000'ASDateTime2), CAST(70692.03ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (82, N'Enbridge Inc', N'Pieris floribunda (Pursh) Benth. & Hook. f.', CAST(N'2020-10-23T00:00:00.0000000'ASDateTime2), CAST(9607.81ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (83, N'Sundance Energy Australia Limited', N'Nassella manicata (Desv.) Barkworth', CAST(N'2021-05-15T00:00:00.0000000'ASDateTime2), CAST(97021.12ASDecimal(18, 2)), N'BRL')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (84, N'Illinois Tool Works Inc.', N'Calochortus clavatus S. Watson var. clavatus', CAST(N'2020-08-15T00:00:00.0000000'ASDateTime2), CAST(30217.14ASDecimal(18, 2)), N'CZK')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (85, N'WisdomTree Negative Duration High Yield Bond Fund', N'Iris tridentata Pursh', CAST(N'2021-01-30T00:00:00.0000000'ASDateTime2), CAST(88467.90ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (86, N'Duke Realty Corporation', N'Crocus tommasinianus Herb.', CAST(N'2020-08-13T00:00:00.0000000'ASDateTime2), CAST(59139.95ASDecimal(18, 2)), N'SEK')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (87, N'Prudential Bancorp, Inc.', N'Cyperus dentatus Torr.', CAST(N'2021-05-09T00:00:00.0000000'ASDateTime2), CAST(48448.54ASDecimal(18, 2)), N'SEK')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (88, N'Pennsylvania Real Estate Investment Trust', N'Calystegia silvatica (Kit.) Griseb. ssp. fraterniflora (Mack. & Bush) Brummitt', CAST(N'2021-06-05T00:00:00.0000000'ASDateTime2), CAST(12471.82ASDecimal(18, 2)), N'RUB')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (89, N'Principal Healthcare Innovators Index ETF', N'Cheiroglossa C. Presl', CAST(N'2020-09-15T00:00:00.0000000'ASDateTime2), CAST(75826.41ASDecimal(18, 2)), N'GBP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (90, N'CECO Environmental Corp.', N'Pogogyne floribunda Jokerst', CAST(N'2020-04-24T00:00:00.0000000'ASDateTime2), CAST(68002.19ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (91, N'Intrepid Potash, Inc', N'Melaleuca lanceolata Otto', CAST(N'2020-09-13T00:00:00.0000000'ASDateTime2), CAST(53937.18ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (92, N'NewMarket Corporation', N'Liatris microcephala (Small) K. Schum.', CAST(N'2020-10-04T00:00:00.0000000'ASDateTime2), CAST(1896.38ASDecimal(18, 2)), N'RUB')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (93, N'Apollo Investment Corporation', N'Cyanea glabra (E. Wimm.) H. St. John', CAST(N'2021-04-01T00:00:00.0000000'ASDateTime2), CAST(31484.89ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (94, N'Calamos Dynamic Convertible & Income Fund', N'Eurhynchium pulchellum (Hedw.) Jenn. var. barnesii (Renauld & Cardot) Grout', CAST(N'2020-11-02T00:00:00.0000000'ASDateTime2), CAST(46226.98ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (95, N'Old Dominion Freight Line, Inc.', N'Cynodon bradleyi Stent', CAST(N'2021-05-10T00:00:00.0000000'ASDateTime2), CAST(70241.24ASDecimal(18, 2)), N'PHP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (96, N'Repros Therapeutics Inc.', N'Schismatomma Flotow & Körb. ex A. Massal.', CAST(N'2020-05-01T00:00:00.0000000'ASDateTime2), CAST(33671.04ASDecimal(18, 2)), N'EUR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (97, N'CyberOptics Corporation', N'Thelypodium sagittatum (Nutt. ex Torr. & A. Gray) Endl. ex Walp.', CAST(N'2021-03-24T00:00:00.0000000'ASDateTime2), CAST(17060.49ASDecimal(18, 2)), N'SYP')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (98, N'Terreno Realty Corporation', N'Ludwigia longifolia (DC.) H. Hara', CAST(N'2021-01-22T00:00:00.0000000'ASDateTime2), CAST(49111.23ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (99, N'Verso Corporation', N'Toninia ruginosa (Tuck.) Herre', CAST(N'2020-10-04T00:00:00.0000000'ASDateTime2), CAST(25306.83ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (100, N'Summit Therapeutics plc', N'Abutilon eremitopetalum Caum', CAST(N'2020-12-14T00:00:00.0000000'ASDateTime2), CAST(47604.56ASDecimal(18, 2)), N'IDR')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (101, N'Diamond Offshore Drilling, Inc.', N'Helianthus petiolaris Nutt. ssp. fallax Heiser', CAST(N'2020-06-08T00:00:00.0000000'ASDateTime2), CAST(57674.41ASDecimal(18, 2)), N'UAH')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (102, N'Citigroup Inc.', N'Villadia squamulosa (S. Watson) Rose', CAST(N'2020-08-30T00:00:00.0000000'ASDateTime2), CAST(55198.06ASDecimal(18, 2)), N'JPY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (103, N'Novartis AG', N'Eriastrum abramsii (Elmer) H. Mason', CAST(N'2020-08-15T00:00:00.0000000'ASDateTime2), CAST(81992.15ASDecimal(18, 2)), N'CNY')
GO
INSERT [Agreement].[agreement] ([Id], [Name], [Description], [CreationDate], [Amount_Value], [Amount_Currency]) VALUES (104, N'Monmouth Real Estate Investment Corporation', N'Pertusaria hakkodensis Yasuda ex Rasanen', CAST(N'2020-08-19T00:00:00.0000000'ASDateTime2), CAST(77690.68ASDecimal(18, 2)), N'DZD')
GO
SET IDENTITY_INSERT [Agreement].[agreement] OFF
GO
INSERT [dbo].[__EFMigrationsHistory] ([MigrationId], [ProductVersion]) VALUES (N'20210614230718_InitialSchema', N'3.1.16')
GO
INSERT [dbo].[__EFMigrationsHistory] ([MigrationId], [ProductVersion]) VALUES (N'20210614230847_AddAgreementSchema', N'3.1.16')
GO
USE [master]
GO
ALTERDATABASE [DeveloperTestDB] SETREAD_WRITE
GO