home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / internet / wwwquote / quotes.sql < prev    next >
Encoding:
Text File  |  1998-03-27  |  37.6 KB  |  819 lines

  1. /* Database: Stocks */
  2.  
  3. /****** Object:  Table dbo.Issues ******/
  4. if exists (select * from sysobjects where id = object_id('Issues') and sysstat & 0xf = 3)
  5.     drop table Issues
  6. GO
  7.  
  8. CREATE TABLE Issues
  9. (
  10.     CUSIP varchar (8) NULL ,
  11.     Ticker varchar (7) NULL ,
  12.     Name varchar (50) NULL
  13. )
  14. GO
  15.  
  16. INSERT INTO Issues (CUSIP, Ticker, Name)
  17. VALUES ("09984310", "BORL", "BORLAND INTL INC/COM")
  18. GO
  19. INSERT INTO Issues (CUSIP, Ticker, Name)
  20. VALUES ("59491810", "MSFT", "MICROSOFT CORP/COM")
  21. GO
  22. INSERT INTO Issues (CUSIP, Ticker, Name)
  23. VALUES ("54570010", "LOTS", "LOTUS DEV CORP/COM")
  24. GO
  25. INSERT INTO Issues (CUSIP, Ticker, Name)
  26. VALUES ("67000610", "NOVL", "NOVELL INC/COM")
  27. GO
  28.  
  29.  
  30. /****** Object:  Table dbo.Quotes ******/
  31. if exists (select * from sysobjects where id = object_id('Quotes') and sysstat & 0xf = 3)
  32.     drop table Quotes
  33. GO                                    
  34.  
  35. CREATE TABLE Quotes
  36. (
  37.     Ticker varchar (50) NULL ,
  38.     Date datetime NULL ,
  39.     Volume int NULL ,
  40.     HighAsk varchar (50) NULL ,
  41.     LowBid varchar (50) NULL ,
  42.     CloseAvg varchar (50) NULL
  43. )
  44. GO
  45.  
  46. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  47. VALUES ("BORL", "19941201  0:00",  1115500, "9 5/8", "8 5/8", "8 5/8")
  48. GO
  49. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  50. VALUES ("BORL", "19941202  0:00", 1062600, "8 7/8", "8 1/4", "8 5/8")
  51. GO
  52. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  53. VALUES ("BORL", "19941205  0:00", 298200, "8 5/8", "8 3/8", "8 7/16")
  54. GO
  55. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  56. VALUES ("BORL", "19941206  0:00", 355600, "8 1/2", "8 1/4", "8 1/2")
  57. GO
  58. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  59. VALUES ("BORL", "19941207  0:00", 150300, "8 1/2", "8 1/4", "8 1/2")
  60. GO
  61. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  62. VALUES ("BORL", "19941208  0:00", 239100, "8 1/2", "8 1/4", "8 1/4")
  63. GO
  64. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  65. VALUES ("BORL", "19941209  0:00", 584600, "9", "8 1/8", "8 3/4")
  66. GO
  67. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  68. VALUES ("BORL", "19941212  0:00", 458900, "8 7/8", "8 1/4", "8 3/8")
  69. GO
  70. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  71. VALUES ("BORL", "19941213  0:00", 229000, "8 5/8", "8 1/4", "8 1/4")
  72. GO
  73. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  74. VALUES ("BORL", "19941214  0:00", 207300, "8 3/8", "8 1/8", "8 1/8")
  75. GO
  76. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  77. VALUES ("BORL", "19941215  0:00", 187100, "8 3/8", "8 1/8", "8 1/4")
  78. GO
  79. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  80. VALUES ("BORL", "19941216  0:00", 296000, "8 1/2", "8 1/8", "8 3/8")
  81. GO
  82. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  83. VALUES ("BORL", "19941219  0:00", 680200, "8 1/4", "7 1/4", "7 9/16")
  84. GO
  85. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  86. VALUES ("BORL", "19941220  0:00", 794900, "7 5/8", "6 3/4", "7 1/8")
  87. GO
  88. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  89. VALUES ("BORL", "19941221  0:00", 527400, "8", "7 1/8", "7 1/2")
  90. GO
  91. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  92. VALUES ("BORL", "19941222  0:00", 1403300, "7 1/4", "6 1/2", "6 5/8")
  93. GO
  94. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  95. VALUES ("BORL", "19941223  0:00", 713400, "6 3/4", "6 3/8", "6 1/2")
  96. GO
  97. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  98. VALUES ("BORL", "19941226  0:00", -1, NULL, NULL, NULL)
  99. GO
  100. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  101. VALUES ("BORL", "19941227  0:00", 498000, "6 5/8", "6 1/4", "6 1/4")
  102. GO
  103. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  104. VALUES ("BORL", "19941228  0:00", 708000, "6 1/2", "6", "6 1/8")
  105. GO
  106. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  107. VALUES ("BORL", "19941229  0:00", 895400, "6 1/4", "6", "6 1/8")
  108. GO
  109. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  110. VALUES ("BORL", "19941230  0:00", 1077900, "6 1/4", "6", "6 1/8")
  111. GO
  112. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  113. VALUES ("BORL", "19950102  0:00", -1, NULL, NULL, NULL)
  114. GO
  115. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  116. VALUES ("BORL", "19950103  0:00", 713500, "7 1/4", "6 1/8", "7 1/8")
  117. GO
  118. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  119. VALUES ("BORL", "19950104  0:00", 371900, "7", "6 1/2", "6 7/8")
  120. GO
  121. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  122. VALUES ("BORL", "19950105  0:00", 254600, "6 7/8", "6 3/8", "6 5/8")
  123. GO
  124. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  125. VALUES ("BORL", "19950106  0:00", 171400, "6 7/8", "6 1/2", "6 7/8")
  126. GO
  127. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  128. VALUES ("BORL", "19950109  0:00", 316000, "7", "6 5/8", "6 3/4")
  129. GO
  130. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  131. VALUES ("BORL", "19950110  0:00", 185000, "7 1/16", "6 5/8", "6 3/4")
  132. GO
  133. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  134. VALUES ("BORL", "19950111  0:00", 515000, "7 1/4", "6 3/4", "7")
  135. GO
  136. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  137. VALUES ("BORL", "19950112  0:00", 962000, "7 1/2", "7", "7")
  138. GO
  139. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  140. VALUES ("BORL", "19950113  0:00", 3093000, "8 1/8", "7", "7 3/4")
  141. GO
  142. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  143. VALUES ("BORL", "19950116  0:00", 1597500, "8 5/8", "8 1/8", "8 1/4")
  144. GO
  145. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  146. VALUES ("BORL", "19950117  0:00", 633900, "8 1/2", "8", "8")
  147. GO
  148. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  149. VALUES ("BORL", "19950118  0:00", 448500, "8 1/8", "7 3/4", "7 3/4")
  150. GO
  151. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  152. VALUES ("BORL", "19950119  0:00", 240600, "8", "7 3/4", "8")
  153. GO
  154. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  155. VALUES ("BORL", "19950120  0:00", 245600, "8", "7 5/8", "7 7/8")
  156. GO
  157. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  158. VALUES ("BORL", "19950123  0:00", 485000, "7 7/8", "7 1/8", "7 7/8")
  159. GO
  160. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  161. VALUES ("BORL", "19950124  0:00", 318600, "7 7/8", "7 1/4", "7 3/8")
  162. GO
  163. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  164. VALUES ("BORL", "19950125  0:00", 657700, "7 1/4", "6 1/2", "7")
  165. GO
  166. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  167. VALUES ("BORL", "19950126  0:00", 234600, "7 1/4", "7", "7")
  168. GO
  169. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  170. VALUES ("BORL", "19950127  0:00", 406800, "7 1/2", "6 7/8", "6 7/8")
  171. GO
  172. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  173. VALUES ("BORL", "19950130  0:00", 226500, "7", "6 5/8", "6 11/16")
  174. GO
  175. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  176. VALUES ("BORL", "19950131  0:00", 158400, "7 1/16", "6 5/8", "7")
  177. GO
  178. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  179. VALUES ("BORL", "19950201  0:00", 116100, "7 1/4", "7", "7 1/16")
  180. GO
  181. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  182. VALUES ("BORL", "19950202  0:00", 255000, "7 3/8", "7", "7 3/8")
  183. GO
  184. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  185. VALUES ("BORL", "19950203  0:00", 364400, "7 5/8", "7 1/4", "7 5/8")
  186. GO
  187. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  188. VALUES ("BORL", "19950206  0:00", 160600, "7 5/8", "7 3/8", "7 9/16")
  189. GO
  190. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  191. VALUES ("BORL", "19950207  0:00", 74600, "7 5/8", "7 3/8", "7 5/8")
  192. GO
  193. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  194. VALUES ("BORL", "19950208  0:00", 219900, "7 3/4", "7 7/16", "7 3/4")
  195. GO
  196. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  197. VALUES ("BORL", "19950209  0:00", 450600, "8", "7 1/2", "7 13/16")
  198. GO
  199. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  200. VALUES ("BORL", "19950210  0:00", 209700, "8", "7 3/4", "8")
  201. GO
  202. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  203. VALUES ("BORL", "19950213  0:00", 301500, "8", "7 3/4", "7 15/16")
  204. GO
  205. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  206. VALUES ("BORL", "19950214  0:00", 151600, "8", "7 3/4", "7 7/8")
  207. GO
  208. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  209. VALUES ("BORL", "19950215  0:00", 294300, "8 1/8", "7 3/4", "7 7/8")
  210. GO
  211. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  212. VALUES ("BORL", "19950216  0:00", 155900, "8", "7 5/8", "7 5/8")
  213. GO
  214. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  215. VALUES ("BORL", "19950217  0:00", 195700, "7 3/4", "7 1/2", "7 11/16")
  216. GO
  217. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  218. VALUES ("BORL", "19950220  0:00", -1, NULL, NULL, NULL)
  219. GO
  220. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  221. VALUES ("BORL", "19950221  0:00", 192000, "7 7/8", "7 5/8", "7 5/8")
  222. GO
  223. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  224. VALUES ("BORL", "19950222  0:00", 236000, "8", "7 5/8", "7 7/8")
  225. GO
  226. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  227. VALUES ("BORL", "19950223  0:00", 549000, "8 1/8", "7 3/4", "8 1/8")
  228. GO
  229. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  230. VALUES ("BORL", "19950224  0:00", 2403000, "9 1/2", "8", "8 3/4")
  231. GO
  232. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  233. VALUES ("BORL", "19950227  0:00", 1160600, "8 1/8", "7 5/8", "7 13/16")
  234. GO
  235. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  236. VALUES ("BORL", "19950228  0:00", 372300, "8", "7 3/4", "8")
  237. GO
  238. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  239. VALUES ("MSFT", "19940121  0:00", 2694000, "63 13/32", "62  1/2", "62  9/16")
  240. GO
  241. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  242. VALUES ("MSFT", "19940122  0:00", 2357000, "63  1/4", "62", "63  1/4")
  243. GO
  244. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  245. VALUES ("MSFT", "19940125  0:00", 2385000, "64  1/4", "63  1/8", "63  5/16")
  246. GO             
  247. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  248. VALUES ("MSFT", "19940126  0:00", 2427000, "64  1/8", "63", "63  3/8")
  249. GO
  250. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  251. VALUES ("MSFT", "19940127  0:00", 2297000, "63  7/8", "63", "63")
  252. GO
  253. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  254. VALUES ("MSFT", "19940128  0:00", 2621000, "63  3/4", "62  1/4", "62  1/2")
  255. GO
  256. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  257. VALUES ("MSFT", "19940129  0:00", 4997000, "63  1/4", "62  1/4", "63  1/8")
  258. GO
  259. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  260. VALUES ("MSFT", "19941212  0:00", 4082000, "63  1/2", "61  5/8", "63  1/8")
  261. GO
  262. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  263. VALUES ("MSFT", "19941213  0:00", 1889000, "63  1/2", "62  1/4", "62  3/4")
  264. GO
  265. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  266. VALUES ("MSFT", "19941214  0:00", 2103000, "63  5/8", "62  1/2", "63  1/4")
  267. GO
  268. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  269. VALUES ("MSFT", "19941215  0:00", 1803000, "64  1/8", "63", "63  1/2")
  270. GO
  271. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  272. VALUES ("MSFT", "19941216  0:00", 3376000, "64  1/4", "63 13/64", "63  3/8")
  273. GO
  274. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  275. VALUES ("MSFT", "19941219  0:00", 1969000, "63  5/8", "62  1/2", "62  5/8")
  276. GO
  277. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  278. VALUES ("MSFT", "19941220  0:00", 15846000, "62  3/4", "58  3/4", "59  7/8")
  279. GO
  280. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  281. VALUES ("MSFT", "19941221  0:00", 4337000, "61  5/8", "60  1/8", "61  1/2")
  282. GO
  283. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  284. VALUES ("MSFT", "19941222  0:00", 3585000, "62", "60  1/4", "60  5/8")
  285. GO
  286. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  287. VALUES ("MSFT", "19941223  0:00", 1218000, "61  3/8", "60  3/8", "60  7/8")
  288. GO
  289. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  290. VALUES ("MSFT", "19941226  0:00", -1, NULL, NULL, NULL)
  291. GO
  292. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  293. VALUES ("MSFT", "19941227  0:00", 1285000, "61  5/8", "60  5/8", "60  3/4")
  294. GO
  295. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  296. VALUES ("MSFT", "19941228  0:00", 2185000, "61", "60", "61")
  297. GO
  298. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  299. VALUES ("MSFT", "19941229  0:00", 1465000, "61  7/8", "60  5/8", "61 13/16")
  300. GO
  301. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  302. VALUES ("MSFT", "19941230  0:00", 1293000, "61  7/8", "61  1/8", "61  1/8")
  303. GO
  304. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  305. VALUES ("MSFT", "19950102  0:00", -1, NULL, NULL, NULL)
  306. GO
  307. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  308. VALUES ("MSFT", "19950103  0:00", 2472000, "61  1/2", "60  1/8", "60  3/16")
  309. GO
  310. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  311. VALUES ("MSFT", "19950104  0:00", 3226000, "60  3/4", "59  1/2", "60  5/8")
  312. GO
  313. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  314. VALUES ("MSFT", "19950105  0:00", 2489000, "61", "59  3/8", "59  5/8")
  315. GO
  316. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  317. VALUES ("MSFT", "19950106  0:00", 2918000, "61  1/4", "59  3/4", "60  5/8")
  318. GO
  319. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  320. VALUES ("MSFT", "19950109  0:00", 2875000, "61", "59  3/4", "60  1/4")
  321. GO
  322. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  323. VALUES ("MSFT", "19950110  0:00", 2637000, "61  1/2", "60", "61")
  324. GO
  325. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  326. VALUES ("MSFT", "19950111  0:00", 1970000, "61  3/4", "60  3/4", "61 19/64")
  327. GO
  328. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  329. VALUES ("MSFT", "19950112  0:00", 1687000, "62  1/8", "61", "61  1/4")
  330. GO
  331. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  332. VALUES ("MSFT", "19950113  0:00", 2582000, "63", "61  7/8", "62  3/4")
  333. GO
  334. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  335. VALUES ("MSFT", "19950116  0:00", 4666000, "64  1/2", "63", "64  1/8")
  336. GO
  337. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  338. VALUES ("MSFT", "19950117  0:00", 4621000, "65  1/8", "64  3/8", "64  5/8")
  339. GO
  340. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  341. VALUES ("MSFT", "19950118  0:00", 3157000, "65  1/4", "64  1/4", "65  1/16")
  342. GO
  343. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  344. VALUES ("MSFT", "19950119  0:00", 4194000, "65", "63  7/16", "63  1/2")
  345. GO
  346. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  347. VALUES ("MSFT", "19950120  0:00", 5150000, "63  1/2", "61  1/4", "61  5/8")
  348. GO
  349. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  350. VALUES ("MSFT", "19950123  0:00", 3364000, "63", "60  1/2", "62 13/16")
  351. GO
  352. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  353. VALUES ("MSFT", "19950124  0:00", 2296000, "63  1/8", "62", "62  1/64")
  354. GO
  355. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  356. VALUES ("MSFT", "19950125  0:00", 3279000, "62  1/4", "61", "61  3/4")
  357. GO
  358. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  359. VALUES ("MSFT", "19950126  0:00", 5052000, "61", "59  3/4", "59  7/8")
  360. GO
  361. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  362. VALUES ("MSFT", "19950127  0:00", 3649000, "60  1/4", "59  3/4", "59  7/8")
  363. GO
  364. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  365. VALUES ("MSFT", "19950130  0:00", 3448000, "60  1/8", "58  7/8", "59")
  366. GO
  367. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  368. VALUES ("MSFT", "19950131  0:00", 3747000, "59  3/4", "58  1/4", "59  3/8")
  369. GO
  370. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  371. VALUES ("MSFT", "19950201  0:00", 4169000, "60  3/4", "58 63/64", "59  1/8")
  372. GO
  373. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  374. VALUES ("MSFT", "19950202  0:00", 2895000, "59  3/8", "58  3/8", "59")
  375. GO
  376. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  377. VALUES ("MSFT", "19950203  0:00", 3771000, "60  1/2", "59  1/4", "60  1/8")
  378. GO
  379. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  380. VALUES ("MSFT", "19950206  0:00", 3022000, "61  1/8", "60  1/8", "60  7/8")
  381. GO
  382. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  383. VALUES ("MSFT", "19950207  0:00", 2072000, "61  1/8", "60  5/8", "61")
  384. GO
  385. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  386. VALUES ("MSFT", "19950208  0:00", 3072000, "62", "61", "61  7/8")
  387. GO
  388. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  389. VALUES ("MSFT", "19950209  0:00", 2650000, "62  1/2", "61  3/4", "61  7/8")
  390. GO
  391. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  392. VALUES ("MSFT", "19950210  0:00", 3116000, "62  5/8", "61  1/2", "62")
  393. GO
  394. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  395. VALUES ("MSFT", "19950213  0:00", 2385000, "62  3/4", "61  5/8", "62")
  396. GO
  397. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  398. VALUES ("MSFT", "19950214  0:00", 1945000, "62  1/4", "61  1/2", "61  7/8")
  399. GO
  400. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  401. VALUES ("MSFT", "19950215  0:00", 9186000, "61  3/8", "59  5/8", "60  3/4")
  402. GO
  403. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  404. VALUES ("MSFT", "19950216  0:00", 3547000, "61  1/8", "60  1/4", "60  7/8")
  405. GO
  406. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  407. VALUES ("MSFT", "19950217  0:00", 2364000, "60  7/8", "60  1/4", "60  3/8")
  408. GO
  409. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  410. VALUES ("MSFT", "19950220  0:00", -1, NULL, NULL, NULL)
  411. GO
  412. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  413. VALUES ("MSFT", "19950221  0:00", 3462000, "60  3/4", "59  1/2", "59  3/4")
  414. GO
  415. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  416. VALUES ("MSFT", "19950222  0:00", 3806000, "62", "59  5/8", "61  1/2")
  417. GO
  418. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  419. VALUES ("MSFT", "19950223  0:00", 3746000, "62  1/8", "60  1/2", "61  5/8")
  420. GO
  421. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  422. VALUES ("MSFT", "19950224  0:00", 2136000, "61  7/8", "61  1/4", "61  1/4")
  423. GO
  424. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  425. VALUES ("MSFT", "19950227  0:00", 1787000, "62", "61  1/8", "61  3/4")
  426. GO
  427. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  428. VALUES ("MSFT", "19950228  0:00", 3284000, "63  1/4", "61  3/4", "63")
  429. GO
  430. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  431. VALUES ("NOVL", "19941201  0:00", 3060000, "20", "19", "19  3/8")
  432. GO
  433. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  434. VALUES ("NOVL", "19941202  0:00", 2909000, "19  3/4", "18  7/8", "19  1/2")
  435. GO
  436. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  437. VALUES ("NOVL", "19941205  0:00", 874000, "19  5/8", "19  1/8", "19  1/4")
  438. GO
  439. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  440. VALUES ("NOVL", "19941206  0:00", 2058000, "19  1/4", "18  3/4", "19")
  441. GO
  442. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  443. VALUES ("NOVL", "19941207  0:00", 1460000, "19  1/8", "18  5/8", "18  5/8")
  444. GO
  445. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  446. VALUES ("NOVL", "19941208  0:00", 2174000, "18  7/8", "18  3/8", "18  7/16")
  447. GO
  448. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  449. VALUES ("NOVL", "19941209  0:00", 3768000, "18  5/8", "17  5/8", "18")
  450. GO
  451. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  452. VALUES ("NOVL", "19941212  0:00", 2374000, "18  1/8", "17  1/2", "17 11/16")
  453. GO
  454. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  455. VALUES ("NOVL", "19941213  0:00", 3144000, "17  3/4", "16  7/8", "17  1/4")
  456. GO
  457. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  458. VALUES ("NOVL", "19941214  0:00", 15446000, "17", "15  3/4", "15  7/8")
  459. GO
  460. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  461. VALUES ("NOVL", "19941215  0:00", 4023000, "16  1/4", "15  3/4", "16")
  462. GO
  463. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  464. VALUES ("NOVL", "19941216  0:00", 4262000, "16  1/4", "15 27/32", "16  1/8")
  465. GO
  466. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  467. VALUES ("NOVL", "19941219  0:00", 3500000, "16  3/8", "15  7/8", "16  1/8")
  468. GO
  469. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  470. VALUES ("NOVL", "19941220  0:00", 3414000, "16  5/8", "16  1/8", "16  5/8")
  471. GO
  472. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  473. VALUES ("NOVL", "19941221  0:00", 3966000, "17  5/8", "16  3/4", "17  1/2")
  474. GO
  475. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  476. VALUES ("NOVL", "19941222  0:00", 3706000, "18  1/8", "17  1/2", "17 15/16")
  477. GO
  478. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  479. VALUES ("NOVL", "19941223  0:00", 1298000, "18", "17  3/8", "17  1/2")
  480. GO
  481. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  482. VALUES ("NOVL", "19941226  0:00", -1, NULL, NULL, NULL)
  483. GO
  484. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  485. VALUES ("NOVL", "19941227  0:00", 1099000, "17  3/4", "17  1/4", "17  5/16")
  486. GO
  487. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  488. VALUES ("NOVL", "19941228  0:00", 1646000, "17  1/2", "17", "17  1/8")
  489. GO
  490. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  491. VALUES ("NOVL", "19941229  0:00", 2132000, "17  5/8", "17  1/8", "17  1/4")
  492. GO
  493. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  494. VALUES ("NOVL", "19941230  0:00", 2068000, "17  3/8", "16  3/4", "17  1/8")
  495. GO
  496. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  497. VALUES ("NOVL", "19950102  0:00", -1, NULL, NULL, NULL)
  498. GO
  499. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  500. VALUES ("NOVL", "19950103  0:00", 2220000, "17  1/2", "16  7/8", "17  1/4")
  501. GO
  502. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  503. VALUES ("NOVL", "19950104  0:00", 2419000, "17  1/2", "16  7/8", "17")
  504. GO
  505. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  506. VALUES ("NOVL", "19950105  0:00", 1910000, "17  1/4", "16  7/8", "17  1/8")
  507. GO
  508. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  509. VALUES ("NOVL", "19950106  0:00", 1720000, "17  3/8", "17", "17  3/8")
  510. GO
  511. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  512. VALUES ("NOVL", "19950109  0:00", 1432000, "17  5/8", "17  1/8", "17  3/8")
  513. GO
  514. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  515. VALUES ("NOVL", "19950110  0:00", 3523000, "18", "17  3/8", "17  5/8")
  516. GO
  517. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  518. VALUES ("NOVL", "19950111  0:00", 2976000, "18", "17  5/8", "17 15/16")
  519. GO
  520. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  521. VALUES ("NOVL", "19950112  0:00", 3202000, "18  3/8", "17  7/8", "18  5/16")
  522. GO
  523. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  524. VALUES ("NOVL", "19950113  0:00", 9306000, "18  5/8", "17  7/8", "18  1/8")
  525. GO
  526. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  527. VALUES ("NOVL", "19950116  0:00", 3623000, "18  5/8", "17  7/8", "18  1/4")
  528. GO
  529. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  530. VALUES ("NOVL", "19950117  0:00", 2540000, "18  3/8", "17  3/4", "18")
  531. GO
  532. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  533. VALUES ("NOVL", "19950118  0:00", 3140000, "18", "17  1/2", "17  7/8")
  534. GO
  535. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  536. VALUES ("NOVL", "19950119  0:00", 3087000, "18  1/8", "17  3/4", "18")
  537. GO
  538. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  539. VALUES ("NOVL", "19950120  0:00", 3685000, "18  3/8", "18", "18  1/4")
  540. GO
  541. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  542. VALUES ("NOVL", "19950123  0:00", 2848000, "18  1/2", "17  3/4", "18  1/2")
  543. GO
  544. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  545. VALUES ("NOVL", "19950124  0:00", 2704000, "18  5/8", "18  1/8", "18  1/2")
  546. GO
  547. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  548. VALUES ("NOVL", "19950125  0:00", 3503000, "18  7/8", "18", "18  3/8")
  549. GO
  550. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  551. VALUES ("NOVL", "19950126  0:00", 2290000, "18  1/2", "17  7/8", "18")
  552. GO
  553. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  554. VALUES ("NOVL", "19950127  0:00", 1983000, "18  1/4", "17  7/8", "18")
  555. GO
  556. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  557. VALUES ("NOVL", "19950130  0:00", 3667000, "18  1/8", "17  5/8", "17 11/16")
  558. GO      
  559. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  560. VALUES ("NOVL", "19950131  0:00", 2188000, "18", "17  1/2", "17  3/4")
  561. GO
  562. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  563. VALUES ("NOVL", "19950201  0:00", 1932000, "18  1/8", "17  5/8", "18")
  564. GO
  565. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  566. VALUES ("NOVL", "19950202  0:00", 2302000, "18  1/4", "17  7/8", "18  1/16")
  567. GO
  568. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  569. VALUES ("NOVL", "19950203  0:00", 2632000, "18  3/8", "17  7/8", "18")
  570. GO
  571. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  572. VALUES ("NOVL", "19950206  0:00", 2417000, "18  1/2", "18", "18  3/8")
  573. GO
  574. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  575. VALUES ("NOVL", "19950207  0:00", 6101000, "19  1/2", "18  3/8", "19  3/8")
  576. GO
  577. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  578. VALUES ("NOVL", "19950208  0:00", 9189000, "20  3/8", "20", "20  1/4")
  579. GO
  580. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  581. VALUES ("NOVL", "19950209  0:00", 5485000, "20  1/4", "19 61/64", "20")
  582. GO
  583. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  584. VALUES ("NOVL", "19950210  0:00", 7452000, "20  7/8", "20", "20  7/8")
  585. GO
  586. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  587. VALUES ("NOVL", "19950213  0:00", 5114000, "21  1/2", "20  5/8", "21")
  588. GO
  589. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  590. VALUES ("NOVL", "19950214  0:00", 5016000, "21  1/8", "19  7/8", "20  1/8")
  591. GO
  592. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  593. VALUES ("NOVL", "19950215  0:00", 5184000, "21", "20", "20  1/2")
  594. GO
  595. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  596. VALUES ("NOVL", "19950216  0:00", 2861000, "20  1/2", "20", "20  1/16")
  597. GO
  598. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  599. VALUES ("NOVL", "19950217  0:00", 2376000, "20  1/2", "19  7/8", "20")
  600. GO
  601. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  602. VALUES ("NOVL", "19950220  0:00", -1, NULL, NULL, NULL)
  603. GO
  604. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  605. VALUES ("NOVL", "19950221  0:00", 1834000, "20  1/8", "19  3/4", "20")
  606. GO
  607. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  608. VALUES ("NOVL", "19950222  0:00", 4498000, "20  3/4", "19  7/8", "20  5/8")
  609. GO
  610. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  611. VALUES ("NOVL", "19950223  0:00", 7067000, "21  3/8", "20  5/8", "20  5/8")
  612. GO
  613. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  614. VALUES ("NOVL", "19950224  0:00", 3372000, "20  5/8", "19  7/8", "20  1/4")
  615. GO
  616. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  617. VALUES ("NOVL", "19950227  0:00", 2819000, "20  1/4", "19  3/4", "20  1/4")
  618. GO
  619. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  620. VALUES ("NOVL", "19950228  0:00", 9695000, "21", "20  1/4", "21")
  621. GO
  622. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  623. VALUES ("LOTS", "19941201  0:00", 3318000, "44  3/4", "41  3/4", "44  1/4")
  624. GO
  625. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  626. VALUES ("LOTS", "19941202  0:00", 2270000, "45  3/4", "43  5/16", "45  1/4")
  627. GO
  628. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  629. VALUES ("LOTS", "19941205  0:00", 1980000, "46  1/4", "44  1/4", "44  3/4")
  630. GO
  631. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  632. VALUES ("LOTS", "19941206  0:00", 2416000, "44  3/4", "41", "41  3/4")
  633. GO
  634. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  635. VALUES ("LOTS", "19941207  0:00", 2350000, "43  1/4", "40  1/2", "42  1/4")
  636. GO
  637. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  638. VALUES ("LOTS", "19941208  0:00", 1478000, "41  3/4", "40  1/4", "40  3/4")
  639. GO
  640. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  641. VALUES ("LOTS", "19941209  0:00", 1812000, "40  3/4", "38  1/4", "40")
  642. GO
  643. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  644. VALUES ("LOTS", "19941212  0:00", 874100, "41  1/2", "39  3/4", "41  1/4")
  645. GO
  646. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  647. VALUES ("LOTS", "19941213  0:00", 1085200, "42  1/2", "40", "40  3/8")
  648. GO
  649. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  650. VALUES ("LOTS", "19941214  0:00", 848100, "41", "39  3/4", "40  3/4")
  651. GO
  652. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  653. VALUES ("LOTS", "19941215  0:00", 777200, "42", "40 31/64", "40  5/8")
  654. GO
  655. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  656. VALUES ("LOTS", "19941216  0:00", 534800, "41", "39  3/4", "39  3/4")
  657. GO
  658. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  659. VALUES ("LOTS", "19941219  0:00", 790000, "40  1/2", "39  1/2", "39  1/2")
  660. GO
  661. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  662. VALUES ("LOTS", "19941220  0:00", 818000, "40", "38  3/4", "39  5/8")
  663. GO
  664. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  665. VALUES ("LOTS", "19941221  0:00", 514000, "40  3/4", "39  3/4", "40  5/8")
  666. GO
  667. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  668. VALUES ("LOTS", "19941222  0:00", 566000, "41  1/2", "40  1/2", "41")
  669. GO
  670. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  671. VALUES ("LOTS", "19941223  0:00", 362800, "42", "40  3/4", "41  1/4")
  672. GO
  673. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  674. VALUES ("LOTS", "19941226  0:00", -1, NULL, NULL, NULL)
  675. GO
  676. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  677. VALUES ("LOTS", "19941227  0:00", 742000, "42  1/4", "39  5/8", "40")
  678. GO
  679. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  680. VALUES ("LOTS", "19941228  0:00", 401000, "40", "39", "39  1/2")
  681. GO
  682. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  683. VALUES ("LOTS", "19941229  0:00", 602000, "41  1/4", "39  5/8", "41  1/4")
  684. GO
  685. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  686. VALUES ("LOTS", "19941230  0:00", 937100, "42  3/16", "40  1/4", "41")
  687. GO
  688. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  689. VALUES ("LOTS", "19950102  0:00", -1, NULL, NULL, NULL)
  690. GO
  691. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  692. VALUES ("LOTS", "19950103  0:00", 637000, "41  1/2", "39  1/2", "39  7/8")
  693. GO
  694. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  695. VALUES ("LOTS", "19950104  0:00", 432000, "40  1/4", "39  1/2", "40")
  696. GO
  697. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  698. VALUES ("LOTS", "19950105  0:00", 307000, "40  3/4", "39  3/4", "39  3/4")
  699. GO
  700. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  701. VALUES ("LOTS", "19950106  0:00", 398000, "40  1/2", "39  1/2", "40")
  702. GO
  703. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  704. VALUES ("LOTS", "19950109  0:00", 2658000, "43", "40  3/4", "42")
  705. GO
  706. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  707. VALUES ("LOTS", "19950110  0:00", 1612000, "43", "41  7/8", "42  9/16")
  708. GO
  709. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  710. VALUES ("LOTS", "19950111  0:00", 1177000, "44", "41  3/4", "43  7/8")
  711. GO
  712. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  713. VALUES ("LOTS", "19950112  0:00", 952000, "44  1/2", "43  1/2", "44  1/4")
  714. GO
  715. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  716. VALUES ("LOTS", "19950113  0:00", 546000, "44  1/4", "42  1/2", "43")
  717. GO
  718. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  719. VALUES ("LOTS", "19950116  0:00", 639400, "42  3/4", "41  3/4", "42  1/4")
  720. GO
  721. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  722. VALUES ("LOTS", "19950117  0:00", 852400, "43  1/4", "42", "43  1/4")
  723. GO
  724. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  725. VALUES ("LOTS", "19950118  0:00", 376400, "43  1/4", "42  1/4", "43")
  726. GO
  727. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  728. VALUES ("LOTS", "19950119  0:00", 1166400, "43", "41", "41  3/4")
  729. GO
  730. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  731. VALUES ("LOTS", "19950120  0:00", 636900, "41  3/4", "40  1/4", "40 15/16")
  732. GO
  733. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  734. VALUES ("LOTS", "19950123  0:00", 811000, "41  1/2", "39  3/4", "41  1/2")
  735. GO
  736. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  737. VALUES ("LOTS", "19950124  0:00", 1203000, "41  1/2", "40  1/2", "40  5/8")
  738. GO
  739. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  740. VALUES ("LOTS", "19950125  0:00", 5718000, "45  1/4", "38  1/2", "43  9/16")
  741. GO
  742. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  743. VALUES ("LOTS", "19950126  0:00", 2012000, "45  3/4", "43  3/4", "44  3/4")
  744. GO
  745. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  746. VALUES ("LOTS", "19950127  0:00", 871000, "45  1/4", "44", "44  3/4")
  747. GO
  748. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  749. VALUES ("LOTS", "19950130  0:00", 666000, "45  3/4", "44  3/8", "44  3/4")
  750. GO
  751. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  752. VALUES ("LOTS", "19950131  0:00", 1092000, "45  1/4", "44  1/8", "44  5/8")
  753. GO
  754. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  755. VALUES ("LOTS", "19950201  0:00", 771000, "45  1/2", "44  3/4", "45  1/8")
  756. GO
  757. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  758. VALUES ("LOTS", "19950202  0:00", 1168000, "45  1/4", "43  1/2", "44")
  759. GO
  760. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  761. VALUES ("LOTS", "19950203  0:00", 1839000, "45  3/4", "44  1/4", "44  1/4")
  762. GO
  763. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  764. VALUES ("LOTS", "19950206  0:00", 1312000, "47  1/4", "44  1/2", "47  1/4")
  765. GO
  766. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  767. VALUES ("LOTS", "19950207  0:00", 582000, "47  1/8", "45  3/4", "46 23/64")
  768. GO
  769. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  770. VALUES ("LOTS", "19950208  0:00", 608000, "47", "45  1/2", "45  3/4")
  771. GO
  772. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  773. VALUES ("LOTS", "19950209  0:00", 729000, "47", "45  1/2", "46  1/8")
  774. GO
  775. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  776. VALUES ("LOTS", "19950210  0:00", 1022400, "47  1/2", "46", "47  1/8")
  777. GO
  778. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  779. VALUES ("LOTS", "19950213  0:00", 601000, "48  1/4", "46  3/4", "47  1/2")
  780. GO
  781. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  782. VALUES ("LOTS", "19950214  0:00", 612000, "48  1/4", "46  3/4", "46  3/4")
  783. GO
  784. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  785. VALUES ("LOTS", "19950215  0:00", 879000, "48", "46", "46  3/4")
  786. GO
  787. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  788. VALUES ("LOTS", "19950216  0:00", 407000, "47  1/4", "46  1/4", "46  3/4")
  789. GO
  790. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  791. VALUES ("LOTS", "19950217  0:00", 498900, "46  1/2", "45  1/2", "45  1/2")
  792. GO
  793. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  794. VALUES ("LOTS", "19950220  0:00", -1, NULL, NULL, NULL)
  795. GO
  796. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  797. VALUES ("LOTS", "19950221  0:00", 423700, "45  3/4", "44  3/4", "45  3/16")
  798. GO
  799. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  800. VALUES ("LOTS", "19950222  0:00", 472300, "45", "44", "44  3/4")
  801. GO
  802. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  803. VALUES ("LOTS", "19950223  0:00", 1259300, "44  3/4", "43  1/4", "43  1/2")
  804. GO
  805. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  806. VALUES ("LOTS", "19950224  0:00", 1066700, "43  1/2", "42  1/2", "42  1/2")
  807. GO
  808. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  809. VALUES ("LOTS", "19950227  0:00", 1144000, "43", "41  1/2", "41  5/8")
  810. GO
  811. INSERT INTO Quotes (Ticker, Date, Volume, HighAsk, LowBid, CloseAvg)
  812. VALUES ("LOTS", "19950228  0:00", 1928000, "42", "40", "41  3/4")
  813. GO
  814.  
  815. SELECT "=== FINISHED! ==="
  816. GO
  817.  
  818.  
  819.