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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654
|
@Book{Schroeder:2003:VTK,
author = {Will Schroeder and Ken Martin and Bill Lorensen},
title = {The Visualization Toolkit An Object-Oriented Approach To 3D Graphics},
publisher = {Kitware},
year = 2003
}
@Article{lee@ieee1995,
author = {Edward A. Lee and Thomas M. Parks},
title = {{Dataflow Process Networks}},
journal = {Proceedings of the IEEE},
year = {1995},
volume = {83},
number = {5},
pages = {773-801},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@string{sigmod = "Proc. of ACM SIGMOD"}
@string{pods = "Proc. of ACM PODS"}
@string{vldb = "Proc. of VLDB"}
@string{www = "Proc. of WWW"}
@string{sigmod-record = "SIGMOD Record"}
@string{aaai = "Proc. of AAAI"}
@string{dood = "Proc. of DOOD"}
@string{icde = "Proc. of ICDE"}
% @string{webdb = "Proc. of the Workshop on Web and Databases"}
@string{webdb = "Proc. of WebDB"}
@string{tods = "ACM TODS"}
@string{jiis = "Journal of Intelligent Information Systems"}
@string{icdt = "Proc. of ICDT"}
@string{dexa = "Proc. of DEXA"}
@string{dexaws = "Proc. of DEXA Workshop"}
@string{ssdbm = "Proc. of the Conference on Scientific and Statistical Database Management"}
@string{jep = "Journal of Electronic Publishing"}
@string{vis = "Prof. of IEEE Visualization"}
@string{supercomputing = "Prof. of Supercomputing"}
@string{spie = "Proc. of SPIE"}
@string{siggraph = "Proc. of SIGGRAPH"}
@string{lpnmr = "Proc. of the International Conference on
Logic Programming and Non-Monotonic Reasoning"}
@string{infovis = "Proc. of IEEE Information Visualization Symposium"}
@string{volvis = "Proc. IEEE Symposium on Volume
Visualization and Graphics"}
@string{sigmod = "ACM SIGMOD"}
@string{pods = " ACM PODS"}
@string{vldb = " VLDB"}
@string{www = " WWW"}
@string{sigmod-record = "SIGMOD Record"}
@string{aaai = " AAAI"}
@string{dood = " DOOD"}
@string{icde = " ICDE"}
@string{webdb = "WebDB"}
@string{tods = "ACM TODS"}
@string{jiis = "Journal of Intelligent Information Systems"}
@string{icdt = "ICDT"}
@string{dexa = " DEXA"}
@string{dexaws = "DEXA Workshop"}
@string{ssdbm = "SSDBM"}
@string{jep = "Journal of Electronic Publishing"}
@string{vis = "IEEE Visualization"}
@string{supercomputing = "Supercomputing"}
@string{spie = "SPIE"}
@string{siggraph = "SIGGRAPH"}
@string{lpnmr = "LPNMR"}
@string{infovis = "IEEE Information Visualization Symposium"}
@string{volvis = "IEEE VolVis"}
@string{plilp = "PLILP"}
@string{cganda = "IEEE Computer Graphics and Applications"}
%% {Conference on Innovative Data Systems Research (CIDR)},
@string{cidr = "CIDR"}
@string{vis = "Proceedings of IEEE Visualization"}
@string{infovis = "Proceedings of IEEE Information Visualization Symposium"}
@string{volvis = "Proceedings of IEEE VolVis"}
@string{spie = "Proceedings of SPIE"}
@string{cidr = "Proceedings of CIDR"}
@string{eextt = "Proceedings of EEXTT"}
@string{cikm = "Proceedings of CIKM"}
@string{xsym = "Proceedings of XML Database Symposium (XSym)"}
@string{mobilesearch = "Proceedings of the WWW Workshop on Mobile Search"}
@string{edbt = "Proceedings of EDBT"}
@string{sbbd = "Proceedings of SBBD"}
@string{widm = "Proceedings of WIDM"}
@string{fsttcs= "Proceedings of FSTTCS"}
@string{sigmod = "Proceedings of ACM SIGMOD"}
@string{pods = "Proceedings of PODS"}
@string{vldb = "Proceedings of VLDB"}
@string{www = "Proceedings of WWW"}
@string{wwwposter = "Poster Proceedings of WWW"}
@string{sigmod-record = "SIGMOD Record"}
@string{aaai = "Proceedings of AAAI"}
@string{dood = "Proceedings of DOOD"}
@string{icde = "Proceedings of ICDE"}
% @string{webdb = "Proceedings of the Workshop on Web and Databases"}
@string{webdb = "Proceedings of WebDB"}
@string{tods = "ACM TODS"}
@string{jiis = "Journal of Intelligent Information Systems"}
@string{icdt = "Proceedings of ICDT"}
@string{dexa = "Proceedings of DEXA"}
@string{scishort = "SCI Institute--Univ. of Utah"}
@Article{analogy@tvcg2007,
author = {C. Scheidegger and H. Vo and D. Koop and J. Freire
and C. Silva},
title = {Scalable Manipulation Primitives for
Visualization Systems},
journal = {IEEE Transactions on Visualization and Computer Graphics},
year = {2007},
OPTvolume = {7},
OPTnumber = {3},
OPTpages = {275-287},
OPTmonth = {July-September},
note = {Accepted with minor revisions},
OPTannote = {},
OPTURL = {http://www.cs.ucdavis.edu/~ma/papers/TVCG2001.pdf}
}
@Book{norman@book1994,
author = {Donald A. Norman },
title = {Things That Make Us Smart: Defending Human Attributes in the Age of the Machine},
publisher = {Addison Wesley},
year = {1994},
}
@Misc{sdm@web,
key = {SDM},
title = {{Scientific Data Management Center}},
note = {\url{http://sdm.lbl.gov/sdmcenter}},
}
@Misc{sdm-report-july-sept-2005,
key = {SDM},
OPTauthor = {},
title = {{SDM-Center Quarterly Report}},
note = {http://sdmcenter.lbl.gov/quarterly.reports/SDM.quarterly.July-Sept.2005.doc},
}
@inproceedings{brodlie@vis1993,
author = {Ken Brodlie and Andrew Poon and Helen Wright and Lesley Brankin and Greg Banecki and Alan Gay},
title = {{GRASPARC}: a problem solving environment integrating computation and visualization},
booktitle = {IEEE Visualization '93},
year = {1993},
pages = {102--109},
}
@TechReport{vt-exp,
author = {S. Callahan and J. Freire and E. Santos and C. Scheidegger and C. Silva and H. Vo},
title = {Using Provenance to Streamline Data Exploration through Visualization},
institution = scishort,
year = {2006},
OPTkey = {},
OPTtype = {},
number = {UUSCI-2006-016},
OPTaddress = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@article{simmhan@sigrec2005,
author = {Yogesh L. Simmhan and Beth Plale and Dennis Gannon},
title = {A survey of data provenance in e-science},
OPTjournal = {SIGMOD Rec.},
journal = sigmod-record,
volume = {34},
number = {3},
year = {2005},
OPTissn = {0163-5808},
pages = {31--36},
OPTdoi = {http://doi.acm.org/10.1145/1084805.1084812},
OPTpublisher = {ACM Press},
OPTaddress = {New York, NY, USA},
}
@Book{vis-challenges2006,
author = {Chris Johnson and Robert Moorhead and Tamara Munzner and Hanspeter Pfister and Penny Rheingans and Terry S. Yoo},
ALTeditor = {},
title = {NIH/NSF Visualization Research Challenges Report},
publisher = {IEEE},
year = {2006},
OPTkey = {},
OPTvolume = {},
OPTnumber = {},
OPTseries = {},
OPTaddress = {},
OPTedition = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@Misc{emulab,
key = {emulab},
OPTauthor = {},
title = {{The Emulab Network Emulation Testbed}},
OPThowpublished = {},
OPTmonth = {},
OPTyear = {},
note = {\\\url{http://www.emulab.net}},
OPTannote = {}
}
@InProceedings{eide@usenix2006,
author = "Eric Eide and Tim Stack and Leigh Stoller and \freiremarkref{\meabbrev} and Jay Lepreau",
title = "Integrated scientific workflow management for the Emulab network testbed",
pages = "363--368",
year = 2006,
booktitle = {Proceedings of USENIX},
OPTnote = "To appear"
}
@InProceedings{Baptista:2003:EOF,
author = {A. Baptista and T. Leen and Y. Zhang and A. Chawla
and D. Maier and W.-Chi Feng and W.-Chang Feng and
J. Walpole and C. Silva and \freiremarkref{\meabbrev}},
title = {Environmental Observation and Forecasting Systems:
Vision, Challenges and Successes of a Prototype},
booktitle = {Conference on Systems Science and Information
Technology for Environmental Applications
(ISEIS)},
year = 2003
}
@inproceedings{roberts@vdea2000,
author = {Jonathan C. Roberts},
title = {{Multiple-View and Multiform Visualization}},
OPTmonth = {January},
year = {2000},
pages = {176-185},
keywords = {Visualization, Multiple views, Multiform, Abstraction},
note = {},
url = {http://www.cs.ukc.ac.uk/pubs/2000/963},
OPTbooktitle = {Visual Data Exploration and Analysis VII, Proceedings of SPIE},
booktitle = spie,
OPTeditor = {Robert Erbacher and Alex Pang and Craig Wittenbrink and Jonathan Roberts},
OPTorganization = {IS\&T and SPIE},
OPTpublication_type = {inproceedings},
OPTsubmission_id = {26938_949431288},
OPTvolume = {3960},
}
@inproceedings{roberts@iv98,
author = {Jonathan C. Roberts},
title = {{On Encouraging Multiple Views for Visualization}},
month = {July},
year = {1998},
pages = {8-14},
keywords = {visualization, multiple views, multiform, visualization system},
note = {},
url = {http://www.cs.ukc.ac.uk/pubs/1998/600},
ISBN = {0-8186-8509-3},
ISSN = {1093-9547},
booktitle = {IV'98 - Proceedings International Conference on Information Visualization },
editor = {Ebad Banissi and Farzad Khosrowshahi and Muhammad Sarfraz},
publisher = {IEEE Computer Society},
}
@InProceedings{roberts@waltz98,
author = {Jonathan C. Roberts},
title = {Waltz - Exploratory Visualization Tool For Volume
Data, Using Multiform Abstract Displays},
OPTbooktitle = {Proceedings of SPIE},
booktitle = spie,
pages = {112-122},
year = 1998,
volume = 3298
}
@InProceedings{pattison-and-phillips,
author = {Tim Pattison and Matthew Phillips},
title = {View Coordination Architecture for Information
Visualization},
booktitle = {Proceedings of Australian Symposium on Information
Visualization, Sydney, Australia},
pages = {165-171},
year = 2001
}
@inproceedings{ma@vis1999,
title = {Image Graps- A Novel Interface for Visual Data Exploration},
booktitle = vis,
author = {Kwan-Liu Ma },
year = {1999},
OPTkeywords = {collaborative visualization, scientific visualization, user interface design, volume rendering.},
pages = {81-88},
OPTorganization = {IEEE},
OPTpublisher = {IEEE},
OPTeventtime = {October 1999},
OPTabstract = {For types of data visualization where the cost of producing images is high, and the relationship between the rendering parameters and the image produced is less than clear, a visual representation of the exploration process can make the process more eficient and effective. Image graphs represent not only the results but also the process of data visualization. Each node in an image graph consists of an image and the corresponding visualization parameters used to produce it. Each edge in a graph shows the change in rendering parameters between the two nodes it connects. Image graphs are not just static representations: users can interact with a graph to review a previous visualization session or to perform new rendering. Operations which cause changes in rendering parameters can propagate through the graph. The user can take advantage of the information in image graphs to understand how certain rendering parameter changes affect visualization results. Users can share the image graphs they create to streamline the process of collaborative visualization. We have implemented a volume visualization system using the image graph interface. While our examples in the paper come from this implementation, we also discuss the applicability of image graphs to other problem domains. },
}
@Article{brodlie@cvcgf,
author = {K.W. Brodlie and D.A. Duce and J.R. Gallop and J.P.R.B. Walton and J.D. Wood},
title = {Distributed and Collaborative Visualization},
journal = {Computer Graphics Forum},
year = {2004},
volume = {23},
number = {2},
pages = {223-251},
OPTannote = {}
}
@InProceedings{brodlie@vis2004,
author = {Ken Brodlie and David Duce and Julian Gallop and Musbah Sagar and Jeremy Walton and Jason Wood},
title = { Visualization in Grid Computing Environments},
booktitle = vis,
pages = {155-162},
year = {2004},
OPTnote = {http://www.comp.leeds.ac.uk/vis/gviz/publications/gVizIEEE04.pdf},
}
@InProceedings{brodlie@vis1997,
author = {Jason Wood and Helen Wright and Ken Brodlie},
title = {Collaborative Visualization},
booktitle = vis,
pages = {253-260},
year = {1997},
OPTnote = {},
}
@Misc{xquery@w3c,
author = {S. Boag and D. Chamberlin and M. Fernandez and D. Florescu and J. Robie and J. Sim\'eon and M. Stefanescu},
title = {{XQuery} 1.0: An {XML} Query Language},
howpublished = {{W3C} Working Draft},
month = jun,
year = 2001
}
@inproceedings(webvcr@www9,
author = "V. Anupam and \freiremarkref{\meabbrev} and B. Kumar and D. Lieuwen",
title = "Automating {Web} Navigation with the {WebVCR}",
pages = "503-517",
booktitle = www,
year={2000},
optnote={To appear}
)
@InProceedings{li@vldb2004,
author = {Yunyao Li and Cong Yu and H. V. Jagadish},
title = {Schema-Free {XQuery}},
booktitle = vldb,
year = {2004},
pages = {72-83},
}
@InProceedings{papak@sigmod2005,
author = {Yu Xu and Yannis Papakonstantinou},
title = {Efficient Keyword Search for Smallest {LCAs} in {XML} Databases},
booktitle = sigmod,
year = {2005},
pages = {527-538},
}
@InProceedings{freire@sigmod99,
author = {H. Davulcu and \freiremarkref{\meabbrev} and M. Kifer and I.V. Ramakrishnan},
title = {A Layered Architecture for Querying Dynamic Web Content},
booktitle = sigmod,
year = {1999},
pages = {491-502},
OPTnote = {},
OPTannote = {}
}
@inproceedings{ives@sigmod99,
author = {Zachary G. Ives and
Daniela Florescu and
Marc Friedman and
Alon Y. Levy and
Daniel S. Weld},
OPTeditor = {Alex Delis and
Christos Faloutsos and
Shahram Ghandeharizadeh},
title = {An Adaptive Query Execution System for Data Integration},
OPTbooktitle = {SIGMOD 1999, Proceedings ACM SIGMOD International Conference
on Management of Data, June 1-3, 1999, Philadelphia, Pennsylvania,
USA},
booktitle = sigmod,
optpublisher = {ACM Press},
year = {1999},
isbn = {1-58113-084-8},
pages = {299-310},
}
@inproceedings{florescu@sigmod99,
author = {Daniela Florescu and
Alon Y. Levy and
Ioana Manolescu and
Dan Suciu},
OPTeditor = {Alex Delis and
Christos Faloutsos and
Shahram Ghandeharizadeh},
title = {Query Optimization in the Presence of Limited Access Patterns},
booktitle = sigmod,
OPTbooktitle = {SIGMOD 1999, Proceedings ACM SIGMOD International Conference
on Management of Data, June 1-3, 1999, Philadelphia, Pennsylvania,
USA},
OPTpublisher = {ACM Press},
year = {1999},
isbn = {1-58113-084-8},
pages = {311-322},
}
@inproceedings{urhan@sigmod98,
author = {Tolga Urhan and
Michael J. Franklin and
Laurent Amsaleg},
OPTeditor = {Laura M. Haas and
Ashutosh Tiwary},
title = {Cost-Based Query Scrambling for Initial Delays},
booktitle = sigmod,
OPTbooktitle = {SIGMOD 1998, Proceedings ACM SIGMOD International Conference
on Management of Data, June 2-4, 1998, Seattle, Washington, USA},
OPTpublisher = {ACM Press},
year = {1998},
isbn = {0-89791-995-5},
pages = {130-141},
}
@article{ louiqa@vldbj2000,
author = "Jean-Robert Gruser and Louiqa Raschid and Vladimir Zadorozhny and Tao Zhan",
title = "Learning response time for {WebSources} using query feedback and application in query optimization",
journal = "VLDB Journal",
volume = "9",
number = "1",
OPTmonth = "????",
pages = "18-37",
year = "2000",
url = "citeseer.nj.nec.com/gruser99learning.html" }
@article{ mohan@dataeng95,
author = "C. Mohan and Gustavo Alonso and Roger Gunthor and Mohan Kamath",
title = "Exotica: A Research Perspective on Workflow Management Systems",
journal = "Data Engineering Bulletin",
volume = "18",
number = "1",
pages = "19-26",
year = "1995",
url = "citeseer.nj.nec.com/mohan95exotica.html" }
@InProceedings{foster@ssdbm2002,
author = { I. Foster and J. Voeckler and M. Wilde and Y. Zhao},
title = {Chimera: A Virtual Data System for Representing, Querying and
Automating Data Derivation},
booktitle = ssdbm,
pages = {37-46},
year = {2002},
}
@inproceedings{levy@vldb96,
author = {Alon Y. Levy and
Anand Rajaraman and
Joann J. Ordille},
OPTeditor = {T. M. Vijayaraman and
Alejandro P. Buchmann and
C. Mohan and
Nandlal L. Sarda},
title = {Querying Heterogeneous Information Sources Using Source Descriptions},
booktitle = vldb,
optbooktitle = {VLDB'96, Proceedings of 22th International Conference on Very
Large Data Bases, September 3-6, 1996, Mumbai (Bombay), India},
publisher = {Morgan Kaufmann},
year = {1996},
isbn = {1-55860-382-4},
pages = {251-262},
}
@InProceedings{frew@ssdbm2001,
author = {James Frew and Rajendra Bose},
title = {Earth System Science Workbench: A Data Management Infrastructure for Earth Science Products},
booktitle = ssdbm,
pages = {180-189},
year = {2001},
}
@InProceedings{Freire:2000:WSA,
author = {Juliana Freire and Bharat Kumar},
title = {Web Services and Information Delivery for Diverse
Environments},
booktitle = {VLDB Workshop on Technologies for E-Services},
year = 2000
}
@inproceedings{ webviews@www2001,
author = "Juliana Freire and Bharat Kumar and Daniel
F. Lieuwen",
title = "WebViews: accessing personalized web content and
services",
booktitle = www,
pages = "576-586",
year = 2001,
}
@Book{Larson:1996:Syntactica,
author = {Richard Larson and David S. Warren and Juliana
Freire and Kostis Sagonas},
title = {Syntactica},
publisher = {MIT Press},
year = 1996
}
@Book{Larson:1997:Semantica,
author = {Richard Larson and David S. Warren and Juliana
Freire and Patricia Gomez and Kostis Sagonas},
title = {Semantica},
publisher = {MIT Press},
year = 1997
}
@Misc{ogsi,
key = {OGSI},
OPTauthor = {},
title = {OGSI Primer},
howpublished = {\url{http://www-unix.globus.org/toolkit}},
month = {June},
year = {2003},
OPTnote = {},
OPTannote = {}
}
@Misc{gsfl,
key = {GSFL},
author = {Sriram Krishnan and Patrick Wagstrom and Gregor von Laszewski},
title = {{GSFL}: A Workflow Framework for Grid Services},
howpublished = {Argonne National Laboratory, Preprint ANL/MCS-P980-0802},
}
@Misc{webservices,
key = {Web Services},
author = {W3C},
title = {Web Services Activity},
howpublished = {\url{http://www.w3.org/2002/ws}},
}
@InProceedings{hull@pods2003,
author = {Richard Hull and Michael Benedikt and Vassilis Christophides and Jianwen Su},
title = {E-services: a look behind the curtain},
OPTcrossref = {},
OPTkey = {},
booktitle = pods,
pages = {2003},
year = {1-14},
OPTnote = {},
OPTannote = {}
}
@Misc{oldxquery@w3c,
author = {D. Chamberlin and J. Clark and D. Florescu and J. Robie and J. Sim\'eon and M. Stefanescu},
title = {{XQuery} 1.0: An {XML} Query Language},
howpublished = {{W3C} Working Draft},
month = jun,
year = 2001
}
@Misc{xerces,
key = {Xerces},
title = {Xerces Java Parser 1.4.3 },
note = {\oneurl{http://xml.apache.org/xerces-j}}
}
@Misc{xercesold,
key = {Xerces},
title = {Xerces {Java} Parser 1.4.3},
howpublished = {\url{http://xml.apache.org/xerces-j}},
OPTmonth = {},
OPTyear = {},
OPTnote = {},
OPTannote = {}
}
@Misc{xpath@w3c,
key = {XPath},
OPTauthor = {W3C},
title = {{XML} Path Language ({XPath}) 2.0},
howpublished = {\\\url{http://www.w3.org/TR/xpath20}}
}
@Misc{xslt@w3c,
key = {XSLT},
OPTauthor = {W3C},
title = {{XSL} Transformations ({XSLT})},
howpublished = {\url{http://www.w3.org/TR/xslt}}
}
@Misc{xhtml@w3c,
key = {XHTML},
OPTauthor = {W3C},
title = {{XHTML}},
howpublished = {\url{http://www.w3.org/MarkUp}}
}
@Misc{wsdl@w3c,
key = {WSDL},
OPTauthor = {W3C},
title = {Web Service Definition Language (WSDL)},
howpublished = {\url{http://www.w3.org/TR/wsdl.html}}
}
@Misc{wml,
key = {WML},
OPTauthor = {W3C},
title = {Wireless Markup Language (WML)},
howpublished = {\url{http://www1.wapforum.org/tech/terms.asp?doc=WAP-238-WML-20010911-a.pdf}}
}
@Article{xl@deb2001,
author = {Daniela Florescu and Donald Kossmann},
title = {An {XML} Programming Language for {Web} Service Specification and Composition},
journal = {IEEE Data Engineering Bulletin},
year = {2001},
volume = {24},
number = {2},
pages = {48-56}
}
@InProceedings{xl@cidr2003,
author = {Daniela Florescu and Andreas Grnhagen and Donald Kossmann},
title = {{XL}: A Platform for {Web} Services},
OPTcrossref = {},
OPTkey = {},
booktitle = cidr,
OPTpages = {},
year = {2003},
OPTeditor = {},
OPTvolume = {},
OPTnumber = {},
OPTseries = {},
OPTaddress = {},
OPTmonth = {},
OPTorganization = {},
OPTpublisher = {},
OPTnote = {},
OPTannote = {}
}
@inproceedings{legodb@icde2002,
author = {P. Bohannon and \freiremarkref{\meabbrev} and P. Roy and J. Sim\'eon},
title = {From {XML} Schema to Relations: A Cost-Based Approach to {XML} Storage},
booktitle = icde,
OPTpublisher = {IEEE Computer Society},
year = {2002},
pages = {64-75},
}
@Misc{vtk,
author = {Kitware},
title = {{The Visualization Toolkit}},
howpublished = {\url{http://www.vtk.org}}
}
@Misc{Darcs,
key = {DARCS},
author = {David Roundy},
title = {Darcs},
howpublished = {\url{http://abridgegame.org/darcs}}
}
@Misc{kitware,
author = {Kitware},
title = {{The Visualization Toolkit (VTK) and Paraview}},
howpublished = {\url{http://www.kitware.com}}
}
@Misc{tcl,
author = {John Ousterhout},
title = {Tcl/Tk},
howpublished = {\url{http://www.tcl.tk}}
}
@Misc{python,
author = {Guido van Rossum},
title = {Python},
howpublished = {\url{http://www.python.org}},
}
@Misc{dx,
author = {IBM},
title = {{OpenDX}},
howpublished = {\url{http://www.research.ibm.com/dx}},
}
@Misc{gtb,
author = {Wagner Correa and Louis Bavoil and Shachar Fleishman
and Walter Jimenez and James T. Klosowski and
Gilberto C. A. G. Martins and Dirce Uesu and Sinesio
Pesco and Lourena Rocha and Carlos Eduardo
Scheidegger and Claudio T. Silva},
title = {Graphics Tool Box (GTB)},
howpublished = {\url{http://gtb.sourceforge.net}},
}
@Misc{activizcom,
author = {Kitware},
title = {ActiViz/COM},
howpublished = {\url{http://www.kitware.com/products/activiz/activizCOM.html}},
}
@Misc{paraview,
author = {Kitware},
title = {Paraview},
howpublished = {\url{http://www.paraview.org}},
}
@Article{boukhelifa-and-rodgers,
author = {Nadia Boukhelifa and Peter J. Rodgers},
title = {A Model and Software System for Coordinated and
Multiple Views in Exploratory Visualization},
journal = {Information Visualization},
year = 2003,
volume = 2,
number = 4,
pages = {258-269}
}
@Article{north-and-shneiderman,
author = {Chris North and Ben Shneiderman},
title = {Snap-Together Visualization: Can Users Construct and
Operate Coordinated Visualizations?},
journal = {Int. J. Human-Computer Studies},
year = 2000,
volume = 53,
number = {715-739}
}
@Article{herman-melancon-marshall,
author = {Ivan Herman and Guy Melanon and M. Scott Marshall},
title = {Graph Visualization and Navigation in Information
Visualization: A Survey},
journal = {IEEE Transactions on Visualization and Computer
Graphics},
year = 2000,
volume = 6,
number = 1,
pages = {24-43}
}
@InProceedings{design-gallery,
author = {J. Marks and B. Andalman and P.A. Beardsley and
W. Freeman and S. Gibson and J. Hodgins and T. Kang
and B. Mirtich and H. Pfister and W. Ruml and
K. Ryall and J. Seims and S. Shieber},
title = {Design Galleries: A General Approach to Setting
Parameters for Computer Graphics and Animation},
booktitle = siggraph,
pages = {389-400},
year = 1997
}
@InProceedings{roberts,
author = {Jonathan C. Roberts},
title = {Waltz -- Exploratory Visualization Tool For Volume
Data, Using Multiform Abstract Displays},
booktitle = spie,
pages = {112-122},
year = 1998,
volume = 3298
}
@inproceedings{scirun,
author = {Steven G. Parker and Christopher R. Johnson},
title = {{SCIRun: a scientific programming environment for
computational steering}},
booktitle = supercomputing,
year = {1995},
pages = {52},
OPTlocation = {San Diego, California, United States},
OPTpublisher = {ACM Press},
}
@article{avs,
OPTauthor = {Craig Upson and Thomas Faulhaber, Jr. and David
Kamins and David H. Laidlaw and David Schlegel and
Jefrey Vroom and Robert Gurwitz and Andries van Dam},
author = {Craig {Upson et al}},
title = {The Application Visualization System: A
Computational Environment for Scientific
Visualization},
journal = cganda,
volume = 9,
number = 4,
year = 1989,
OPTissn = {0272-1716},
pages = {30-42},
OPTpublisher = {IEEE Computer Society Press},
}
@Unpublished{stc,
author = {Antonio Baptista},
title = {Science and Technology Center ({STC}) for Coastal
Margin Observation and Prediction},
note = {Proposal submitted to National Science Foundation}
}
@Unpublished{corie-itr,
author = {Antonio Baptista},
title = {ITR/IM+AP: Quality-Scalable Information Flow Systems for Environmental
Observation and Forecasting},
note = {NSF ITR/IM+AP-0121475}
}
@Unpublished{uncertainty_vis,
author = {Robert B. Gilbert and Fulvio Tonon and \freiremarkref{\meabbrev} and Claudio T. Silva and David R. Maidment},
title = {Visualizing Uncertainty with Uncertainty Multiples},
note = {To appear in GeoCongress 2006}
}
@Misc{GraphViz:2005:GV,
author = "David Dobkin and John Ellson and Emden Gansner and Eleftherios Koutsofios
Stephen North and Kiem-Phong Vo and Gordon Woodhull",
title = "Graphviz 2.2",
URL = "http://www.graphviz.org",
year = "2005"
}
@InProceedings{Ellson:2001:GraphViz,
author = {J. Ellson and E. R. Gansner and L. Koutsofios and
S.C. North and G. Woodhull},
title = {Graphviz - Open Source Graph Drawing Tools},
booktitle = {Graph Drawing},
year = 2001,
pages = {483--485}
}
@Article{ludascher@pe2005,
author = {B. Lud\"{a}scher and I. Altintas and C. Berkley and D. Higgins and E. Jaeger-Frank and M. Jones and E. Lee and J. Tao and Y. Zhao},
title = {{Scientific Workflow Management and the Kepler System}},
OPTjournal = {Concurrency and Computation: Practice \& Experience, Special Issue on Scientific Workflows},
journal = {Concurrency and Computation: Practice \& Experience},
year = {2005},
OPTvolume = {},
OPTnumber = {},
OPTpages = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@inproceedings{stolte@sigmod2003,
author = {Etzard Stolte and
Christoph von Praun and
Gustavo Alonso and
Thomas R. Gross},
title = {Scientific Data Repositories: Designing for a Moving Target.},
booktitle = sigmod,
year = {2003},
pages = {349-360},
ee = {http://www.acm.org/sigmod/sigmod03/eproceedings/papers/r13p03.pdf},
OPTcrossref = {DBLP:conf/sigmod/2003},
OPTbibsource = {DBLP, http://dblp.uni-trier.de}
}
@InProceedings{kreuseler@infovis2004,
author = {Matthias Kreuseler and Thomas Nocke and Heidrun
Schumann},
title = {A History Mechanism for Visual Data Mining},
booktitle = infovis,
pages = {49-56},
year = 2004
}
@Book{Davis:1994:CCL,
author = {Martin D. Davis and Ron Sigal and Elaine Weyuker},
title = {Computability, Complexity, and Languages},
publisher = {Academic Press},
year = 1994
}
@Book{Maier:1988:CWL,
author = {David Maier and David S. Warren},
title = {Computing With Logic: Logic Programming With Prolog},
publisher = {Addison-Wesley},
year = 1988
}
@InProceedings{Rao:1997:XSB,
author = {Prasad Rao and Konstantinos Sagonas and Terrance
Swift and David Warren and Juliana Freire},
title = {{XSB - A System for Efficiently Computing Well
Founded Semantics}},
booktitle = lpnmr,
year = 1997
}
@Article{jankun-kelly@tvcg2001,
author = {{T.J.} {Jankun-Kelly} and {Kwan-Liu} Ma},
title = {Visualization Exploration and Encapsulation via a Spreadsheet-Like Interface},
journal = {IEEE Transactions on Visualization and Computer Graphics},
year = {2001},
volume = {7},
number = {3},
pages = {275-287},
OPTmonth = {July-September},
OPTnote = {},
OPTannote = {},
OPTURL = {http://www.cs.ucdavis.edu/~ma/papers/TVCG2001.pdf}
}
@InProceedings{jankun-kelly@vis2002,
author = {{T.J.} {Jankun-Kelly} and {Kwan-Liu} Ma and Michael Gertz},
title = {A Model for the Visualization Exploration Process},
booktitle = vis,
OPTcrossref = {},
OPTkey = {},
OPTpages = {},
year = {2002},
OPTeditor = {},
OPTvolume = {},
OPTnumber = {},
OPTseries = {},
OPTaddress = {},
OPTmonth = {},
OPTorganization = {},
OPTpublisher = {},
OPTnote = {},
OPTannote = {}
}
@InProceedings{freire@plilp1995,
author = {Juliana Freire and Rui Hu and Terrance Swift and David Scott Warren},
title = {Exploiting Parallelism in Tabled Evaluations},
booktitle = plilp,
pages = {115-132},
year = {1995},
OPTnote = {},
OPTannote = {}
}
@Article{buneman@tods2004,
author = {Peter Buneman and Sanjeev Khanna and Keishi Tajima and Wang Chiew Tan},
title = {Archiving scientific data},
journal = {ACM Transactions on Database Systems},
year = {2004},
OPTkey = {},
volume = {29},
number = {1},
pages = {2-42},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@inproceedings{avnur@sigmod2000,
author = {Ron Avnur and Joseph M. Hellerstein},
title = {Eddies: Continuously Adaptive Query Processing},
booktitle = sigmod,
year = {2000},
pages = {261-272},
}
@InProceedings{chi@vis1997,
author = {Ed {Huai-hsin} Chi and Phillip Barry and John Riedl and Joseph Konstan},
title = {A Spreadsheet Approach to Information Visualization},
OPTcrossref = {},
OPTkey = {},
booktitle = infovis,
pages = {17-24},
year = {1997},
OPTnote = {},
OPTannote = {}
}
@article{chi@cganda1998,
author = {Ed {Huai-hsin} Chi and Phillip Barry and John Riedl and Joseph Konstan},
title = {Principles for Information Visualization Spreadsheets},
journal = cganda,
volume = 18,
number = 4,
year = 1998,
pages = {30-38},
OPTpublisher = {IEEE Computer Society Press},
}
@InProceedings{levoy@siggraph1994,
author = {Mark Levoy},
title = {Spreadsheet for Images},
booktitle = siggraph,
pages = {139-146},
year = 1994
}
@inproceedings{Chiang:1998:IOI,
author = "Yi-Jen Chiang and Cl{\'{a}}udio T. Silva and William
J. Schroeder",
title = "Interactive Out-Of-Core Isosurface Extraction",
year = 1998,
booktitle = vis,
pages = "167-174",
}
@Book{Luebke:2002:LOD,
OPTauthor = {David Luebke and Martin Reddy and Jonathan Cohen and
Amitabh Varshney and Benjamin Watson and Robert
Huebner},
author = {David {Luebke et al}},
title = {Level of Detail for 3D Graphics},
publisher = {Morgan-Kaufmann Publishers},
year = 2002
}
@inproceedings{Weiler:2000:SLOD,
author = {Manfred Weiler and Rudiger Westermann and Chuck
Hansen and Kurt Zimmerman and Thomas Ertl},
title = {Level-Of-Detail Volume Rendering view 3D Textures},
booktitle = {Proceedings of IEEE Volume Visualization 2000},
year = {2000}
}
@inproceedings{Museth:2004:VIS,
author = {Ken Museth and Santiago Lombeyda},
title = {TetSplat: Real-time Rendering and Volume Clipping of
Large Unstructured Tetrahedral Meshes},
booktitle = {Proceedings of IEEE Visualization 2004},
year = {2004},
pages = {433-440}
}
@article{Cignoni:2004:LOD,
author = {Paolo Cignoni and Leila De Floriani and Paola
Magillo and Enrico Puppo and Roberto Scopigno},
title = {Selective Refinement Queries for Volume
Visualization of Unstructured Tetrahedral Meshes.},
journal = "IEEE Transactions on Visualization and Computer
Graphics",
volume = 10,
number = 1,
year = 2004,
pages = {29-45},
}
@inproceedings{Leven:2002:VV,
author = {Joshua Leven and Jason Corso and Jonathan D. Cohen
and Subodh Kumar},
title = {Interactive Visualization of Unstructured Grids
Using Hierarchical 3D Textures},
booktitle = volvis,
year = {2002},
pages = {37-44}
}
@InProceedings{bright@cidr2005,
author = {Laura Bright and David Maier},
title = {Deriving and Managing Data Products in an Environmental Observation and Forecasting System},
OPTcrossref = {},
OPTkey = {},
booktitle = cidr,
pages = {162-173},
year = {2005},
OPTeditor = {},
OPTvolume = {},
OPTnumber = {},
OPTseries = {},
OPTaddress = {},
OPTmonth = {},
OPTorganization = {},
OPTpublisher = {},
OPTnote = {},
OPTannote = {}
}
@inproceedings{franklin@vldb2004,
author = {David T. Liu and Michael J. Franklin},
title = {{The Design of GridDB: A Data-Centric Overlay for the Scientific Grid}},
booktitle = vldb,
year = {2004},
pages = {600-611}
}
@Misc{thetus,
key = {Thetus},
title = {Thetus Publisher},
URL = {http://www.thetuscorp.com},
OPTyear = "2005"
}
@inproceedings{haas@vldb1999,
author = {Mary Tork Roth and Fatma Ozcan and Laura M. Haas},
title = {{Cost Models DO Matter: Providing Cost Information for Diverse Data Sources in a Federated System}},
booktitle = vldb,
year = {1999},
pages = {599-610}
}
@InProceedings{bavoil@vis2005,
author = {L. Bavoil and S. Callahan and P. Crossno and
\freiremarkref{\meabbrev} and C. Scheidegger and C. Silva and H. Vo},
title = {VisTrails: Enabling Interactive Multiple-View
Visualizations},
booktitle = vis,
pages = {135-142},
year = 2005
}
@InProceedings{vanwijk@vis2005,
author = {Jarke {van Wijk}},
title = {The value of visualization},
booktitle = vis,
OPTpages = {79-86},
year = 2005
}
@InProceedings{callahan@sciflow2006,
author = {S. Callahan and J. Freire and E. Santos and C. Scheidegger and C. Silva and H. Vo},
title = { Managing the Evolution of Dataflows with {VisTrails} \emph{(Extended Abstract)}},
booktitle = {IEEE Workshop on Workflow and Data Flow for Scientific Applications (SciFlow)},
OPTpages = {135--142},
year = 2006,
OPTnote = {To appear}
}
@InProceedings{callahan@sigmod2006,
author = {S. Callahan and \freiremarkref{\meabbrev} and E. Santos and C. Scheidegger and C. Silva and H. Vo},
title = {{VisTrails: Visualization meets Data Management}},
booktitle = sigmod,
pages = {745--747},
year = 2006,
note = {Demo description. }
}
@Misc{vistrail@nsf2005,
OPTkey = {},
author = {\freiremarkref{\meabbrev} and Cl\'audio Silva},
title = {Managing Complex Visualizations},
OPThowpublished = {},
month = jul,
year = 2005,
OPTnote = {Proposal submitted to the NSF CISE Research Infrastructure
Program.},
note = {NSF CISE-IIS grant \#0513692},
OPTannote = {}
}
@InProceedings{jimenez@vis2003,
author = {W. Herrera-Jimenez and W. Corr\^{e}a and C. Silva
and A. Baptista},
title = {Visualizing Spatial and Temporal Variability in
Coastal Observatories},
booktitle = {IEEE Visualization 2003},
pages = {269--274},
year = 2003
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Juliana's %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@InProceedings{shrex@widm2004,
author ={Sihem Amer-Yahia and Fang Du and \freiremarkref{\meabbrev}},
title = {{A Comprehensive Solution to the XML-to-Relational
Mapping Problem}},
pages = {31-38},
booktitle = widm,
year = 2004,
}
@InProceedings{barbosa@sbbd2004,
OPTauthor = {Luciano Barbosa and Juliana Freire},
author = {Luciano Barbosa and \freiremarkref{\meabbrev}},
title = {Siphoning Hidden-Web Data through Keyword-Based Interfaces},
booktitle = sbbd,
pages = {309-321},
year = {2004}
}
@TechReport{barbosa@techrep2005,
OPTauthor = {Luciano Barbosa and Juliana Freire},
author = {Luciano Barbosa and \freiremarkref{\meabbrev}},
title = {Searching for Hidden-Web Databases},
institution = {University of Utah},
year = {2005},
OPTkey = {},
OPTtype = {},
OPTnumber = {},
OPTaddress = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@TechReport{vistrail@techrep2005,
author = {Lois Bavoil and Steven Calahan and Patricia Crossno and \freiremarkref{\meabbrev} and Carlos Scheidegger and Cl\'audio Silva and Huy Vo},
title = {VisTrails: Enabling Interactive Multiple-View Visualizations},
institution = {University of Utah},
year = {2005},
OPTkey = {},
OPTtype = {},
OPTnumber = {},
OPTaddress = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@Misc{stc@nsf2004,
OPTkey = {},
author = {Ant\'onio {Baptista et al}},
title = {Science and Tecnology Center (STC) for Coastal
Margin Observation and Prediction},
OPThowpublished = {},
OPTmonth = mar,
year = 2004,
note = {Submitted to NSF. Among the final six proposals recommended for funding
by the Blue Ribbon Panel },
OPTannote = {}
}
@Misc{corie@web,
key = {CORIE},
title = {{CORIE Web site }},
note = {\url{http://www.ccalmr.ogi.edu/CORIE}},
}
@InProceedings{freire@mobilesearch2002,
author = {\freiremarkref{\meabbrev}},
title = {Using Wrappers for Device Independent Web Access: Opportunities, Challenges and Limitations (Extended Abstract)},
booktitle = mobilesearch,
OPTpages = {},
year = {2002},
note = {Invited paper},
OPTannote = {}
}
@inproceedings(webvcr@www9,
author = "V. Anupam and \freiremarkref{\meabbrev} and B. Kumar and D. Lieuwen",
title = "Automating {Web} Navigation with the {WebVCR}",
pages = "503-517",
booktitle = www,
year={2000},
optnote={To appear}
)
@misc(xmldm@www2002,
OPTauthor = "Michael Benedikt and Mary Fernandez and \freiremarkref{Juliana Freire} and Arnaud Sahuguet",
author = "Michael Benedikt and Mary Fernandez and \freiremarkref{\meabbrev} and Arnaud Sahuguet",
title = "{XML} and Data Management",
howpublished = "Full-day tutorial presented at WWW",
note = "Available at \\ \oneurl{http://www.cse.ogi.edu/$\tilde{\ }$juliana/pub/xml-data-management-slides.pdf}",
year={2002},
)
@InProceedings{freire@sigmod99,
author = { H. Davulcu and \freiremarkref{\meabbrev} and M. Kifer and I.V. Ramakrishnan},
title = {A Layered Architecture for Querying Dynamic Web Content},
booktitle = sigmod,
year = {1999},
pages = {491-502},
OPTnote = {},
OPTannote = {}
}
@InProceedings{Freire:2000:WSA,
author = { \freiremarkref{\meabbrev} and Bharat Kumar},
title = {Web Services and Information Delivery for Diverse
Environments},
booktitle = {Proceedings VLDB Workshop on Technologies for E-Services},
year = 2000
}
@inproceedings{ webviews@www2001,
author = " \freiremarkref{\meabbrev} and Bharat Kumar and Daniel
F. Lieuwen",
title = "WebViews: accessing personalized web content and
services",
booktitle = www,
pages = "576-586",
year = 2001,
}
@Book{Larson:1996:Syntactica,
author = { Richard Larson and David S. Warren and \freiremarkref{\meabbrev} and Kostis Sagonas},
title = {Syntactica},
publisher = {MIT Press},
year = 1996
}
@Book{Larson:1997:Semantica,
author = { Richard Larson and David S. Warren and \freiremarkref{\meabbrev} and Patricia Gomez and Kostis Sagonas},
title = {Semantica},
publisher = {MIT Press},
year = 1997
}
@inproceedings{statix@sigmod2002,
author = { \freiremarkref{\meabbrev} and J. Haritsa and M. Ramanath and P. Roy and J. Sim\'eon},
title = {StatiX: Making {XML} Count},
booktitle = sigmod,
OPTpublisher = {ACM},
year = {2002},
pages = {181-191},
}
@inproceedings{statix@icde2004,
author = { \freiremarkref{\meabbrev} and M. Ramanath and L. Zhang},
title = {A Flexible Infrastructure for Gathering {XML} Statistics and
Estimating Query Cardinality},
booktitle = icde,
OPTpublisher = {ACM},
year = {2004},
OPTpages = {181-191},
note = {To appear}
}
@inproceedings{shrex@vldb2004,
author = { Fang Du and Sihem Amer-Yahia and \freiremarkref{\meabbrev}},
title = { {ShreX}: Managing {XML} Documents in Relational Databases},
booktitle = vldb,
year = {2004},
pages = {1297-1300}
}
@inproceedings{imax@icde2005,
author = { Maya Ramanath and Lingzhi Zhang and \freiremarkref{\meabbrev} and Jayant Haritsa},
title = { {IMAX}: The Big Picture of Dynamic {XML} Statistics},
booktitle = icde,
year = {2005},
pages = {273-284}
}
@inproceedings{flexmap@xsym2003,
author = {Maya Ramanath and \freiremarkref{\meabbrev} and Jayant Haritsa and Prasan Roy},
title = {Searching for Efficient {XML}-to-Relational Mappings},
booktitle = xsym,
year = {2003},
pages = {19-36},
OPTnote = {To appear}
}
@inproceedings{barbosa@xsym2004,
author = {Denilson Barbosa and \freiremarkref{\meabbrev} and Alberto Mendelzon},
title = {Information Preservation in {XML}-to-Relational Mappings},
booktitle = xsym,
year = {2004},
pages = {66-81}
}
@InProceedings{legodb@vldb2002,
OPTauthor = {Philip Bohannon and \freiremarkref{\meabbrev} and Jayant Haritsa Maya Ramanath and Prasan Roy J\'er\^ome Sim\'eon},
author = { P. Bohannon and \freiremarkref{\meabbrev} and J. Haritsa and M. Ramanath and P. Roy and J. Sim\'eon},
title = {LegoDB: Customizing Relational Storage for XML Documents},
booktitle = vldb,
pages = {1091-1094},
year = 2002,
OPTaddress = {Honk Kong, China},
OPTmonth = aug
}
@InProceedings{legodb@icde2003,
OPTauthor = {Philip Bohannon and Juliana Freire and Jayant Haritsa Maya Ramanath and Prasan Roy J\'er\^ome Sim\'eon},
author = { P. Bohannon and \freiremarkref{\meabbrev} and J. Haritsa and M. Ramanath and P. Roy and J. Sim\'eon},
title = {Bridging the {XML}-Relational Divide with {LegoDB}: A Demonstration},
booktitle = icde,
year = 2003,
OPTaddress = {Honk Kong, China},
OPTmonth = aug
}
@InProceedings{legodb@eextt2002,
OPTauthor = {Juliana Freire and J\'er\^ome Sim\'eon},
author = {\freiremarkref{\meabbrev} and J. Sim\'eon},
title = { Adaptive {XML} Shredding: Architecture, Implementation, and Challenges},
booktitle = eextt,
pages = {104-116},
year = 2002,
OPTaddress = {Honk Kong, China},
OPTmonth = aug
}
@inproceedings(veriweb@www2002,
author = " M. Benedikt and \freiremarkref{\meabbrev} and P. Godefroid",
title = "VeriWeb: A Platform for Automating Web Site Testing",
OPTpages = "503-517",
booktitle = www,
year={2002},
)
@inproceedings(byers@www2001,
author = " S. Byers and \freiremarkref{\meabbrev} and C.~T.~Silva",
title = "Efficient Acquisition of Web Data through Restricted Query Interfaces",
pages = "184-185",
booktitle = wwwposter,
year={2001},
)
@InProceedings{sihem@icde03,
author = {Sihem Amer-Yahia and Yannis Kotidis and Divesh Srivastava},
title = {{XML} Publishing: Look at Siblings too!},
booktitle = icde,
OPTpages = {},
year = 2003,
note = {Poster paper}
}
@Article{freire@cise2004,
author = { \freiremarkref{\meabbrev} and Michael Benedikt},
title = {Managing XML Data: An Abridged Overview},
journal = {IEEE Computing in Science \& Engineering},
year = {2004},
OPTkey = {},
volume = {6},
number = {4},
pages = {12-19},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% XML %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@InProceedings{sekar@icdt2003,
author = {R. Krishnamurthy and V. Chakaravarthy and J. Naughton},
title = {On the Difficulty of Finding Optimal Relational Decompositions for {XML} Workloads: a Complexity Theoretic Perspective},
booktitle = icdt,
pages = {270-284},
year = {2003},
}
@InProceedings{Shan@vldb99,
author = {J. Shanmugasundaram and K. Tufte and G. He and C. Zhang and D. DeWitt and J. Naughton},
title = {Relational Databases for Querying {XML} Documents: Limitations and Opportunities},
booktitle = vldb,
pages = {302-314},
year = 1999
}
@InProceedings{Deutsch@sigmod99,
author = {A. Deutsch and M. Fernandez and D. Suciu},
title = {Storing Semi-Structured Data with {STORED}},
booktitle = sigmod,
pages = {431-442},
year = 1999
}
@Article{florescu@deb99,
author = {D. Florescu and D. Kossman},
title = {Storing and Querying XML Data using an RDMBS},
journal = {IEEE Data Engineering Bulletin},
year = 1999,
volume = 22,
number = 3,
pages = {27-34}
}
@InProceedings{schmidt@webdb2000,
author = {A. Schmidt and M. Kersten and M. Windhouwer and F. Waas},
title = {Efficient Relational Storage and Retrieval of {XML} Documents},
booktitle = webdb,
pages = {47-52},
year = 2000
}
@InProceedings{shimura@dexa1999,
author = {T. Shimura and M. Yoshikawa and S. Uemura},
title = {Storage and Retrieval of {XML} Documents Using Object-Relational Databases},
booktitle = dexa,
pages = {206-217},
year = 1999
}
@InProceedings{tatarinov@sigmod2001,
author = {Igor Tatarinov and Zachary G. Ives and Alon Y. Halevy and Daniel S. Weld},
title = {Updating XML},
booktitle = sigmod,
OPTpages = {not-available},
year = 2001
}
@MastersThesis{lehti@thesis,
author = {Patrick Lehti},
title = {Design and Implementation of a Data Manipulation Processor
for an XML Query Language},
school = {Fraunhofer IPSI},
year = {2002},
OPTkey = {},
OPTtype = {},
OPTaddress = {},
OPTmonth = {},
note = {\oneurl{http://www.ipsi.fhg.de/$\tilde{\ }$lehti/diplomarbeit.pdf}},
OPTannote = {}
}
@InProceedings{Tatarinov@sigmod2002,
author = {I. Tatarinov and S. Viglas and K. Beyer and J. Shanmugasundara
m and E. Shekita and C. Zhang},
title = {Storing and Querying Ordered {XML} Using a Relational Database
System},
booktitle = sigmod,
pages = {204-215},
year = 2002
}
@Misc{excelon,
key = {Excelon},
title = {Excelon},
note = {\oneurl{http://www.exceloncorp.com}}
}
@Misc{tamino,
key = {Tamino},
title = {Tamino},
note = {\oneurl{http://www.softwareag.com/tamino}}
}
@Misc{xml@oracle,
key = {XML SQL},
title = {Oracle's {XML} {SQL} Utility},
OPThowpublished = {\textsf{\footnotesize http://technet.ora\-cle.com/tech/ xml/oracle\_xsu}},
note = {\oneurl{http://technet.ora\-cle.com/tech/xml/oracle\_xsu}},
OPTnote = {straightforward mapping from xml into ordbms}
}
@Misc{xml@sqlserver,
key = {Microsoft Support for XML},
title = {Microsoft Support for {XML}},
note = {\oneurl{http://msdn.micro\-soft.com/sqlxml}},
}
@Misc{xml@db2,
key = {IBM DB2 XML Extender},
title = {{IBM} {DB2} {XML} {Extender}},
note = {\\ \oneurl{http://www4.ibm.com/soft\-ware/ data/db2/extenders/xmlext.html}}
}
@Misc{oasis,
key = {Oasis},
title = {The {XML} Cover Pages},
note = {\oneurl{http://www.oasis-open.org/cover}}
}
@Misc{coverpages,
key = {Coverpages},
title = {The {XML} Cover Pages},
note = {\oneurl{http://xml.coverpages.org}}
}
@Misc{dtd@w3c,
author = {J. Bosac and T. Bray and D. Connolly and E. Maler and G. Nicol and C.~M. Sperberg-McQueen and L. Wood and J. Clark},
title = {Guide to the {W3C} {XML} Specification ("{XMLspec}") {DTD}},
month = jun,
year = 1998
}
@Misc{xmlspy,
key = {Spy},
title = {{XML} Spy},
note = {\\ \oneurl{http://www.xmlspy.com/}}
}
@Misc{infoset@w3c,
author = {John Cowan and Richard Tobin},
title = {{XML} Information Set},
month = oct,
year = 2001,
note = {{W3C} Recommendation}
}
@Misc{xschema@w3c,
author = {Henry Thompson and David Beech and Murray Maloney and Noah Mendelsohn},
title = {{XML} {Schema} {Part} 1: Structures},
howpublished = {{W3C} Working Draft},
month = feb,
year = 2000
}
@misc{xml@w3ccomplete,
author = {Tim Bray and Jean Paoli and C. M. Sperberg-McQueen},
title = {Extensible markup language ({XML}) 1.0},
note = {\oneurl{http://www.w3.org/TR/REC-xml}},
howpublished = {{W3C} Recommendation},
month = feb,
year = 1998,
}
@Misc{xml@w3c,
key = {XML},
OPTauthor = {W3C},
title = {{Extensible Markup Language (XML)}},
howpublished = {\\\url{http://www.w3.org/XML}}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Hidden Web %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@string{jep = "Journal of Electronic Publishing"}
@article{ lawrence@science98,
author = "Steve Lawrence and C. Lee Giles",
title = "Searching the {World Wide Web}",
journal = "Science",
volume = "280",
number = "5360",
pages = "98--100",
year = "1998",
url = "citeseer.nj.nec.com/lawrence98searching.html" }
@Book{soumen@mk2002,
author = {S. Chakrabarti},
title = {Mining the Web: Discovering Knowledge from Hypertext Data},
publisher = {Morgan Kaufmann},
year = {2002},
}
@Misc{mageml,
key = {MAGEML},
OPTauthor = {},
title = {{MAGE-ML}: Microarray Gene Expression Markup Language},
OPThowpublished = {\oneurl{http://www.mged.org/Workgroups/MAGE/mage-ml.html}},
OPTyear = {},
note = {\\ \oneurl{http://www.mged.org/Workgroups/MAGE/mage-ml.html}},
}
@Misc{OLDvisitr@nsf2003,
OPTkey = {},
author = {Cl\'audio Silva and \freiremarkref{\meabbrev} and Ant\'onio Baptista},
title = {Middleware Infrastruture for Managing Visualization and Data
Exploration in Environmental Observation and Forecasting Systems},
OPThowpublished = {},
month = mar,
year = 2003,
note = {Medium ITR proposal submitted to the NSF Division of Advanced Computational Infrastructure and Research},
OPTannote = {}
}
@Misc{dbitr@nsf2003,
OPTkey = {},
author = {Lois Delcambre and \freiremarkref{\meabbrev} and Paul Gorman
and James Larson and David Maier},
title = {Taming the Information Jungle - Selecting, Organizing and Analyzing Disparate Information},
OPThowpublished = {},
month = mar,
year = 2003,
note = {Medium ITR proposal submitted to the NSF Division of Information
and Intelligent Systems},
OPTannote = {}
}
@Misc{cluster@nsf2003,
OPTkey = {},
author = {\freiremarkref{\meabbrev} and Cl\'audio Silva},
title = { A Cluster Infrastructure to Support Retrieval, Management
and Visualization of Massive Amounts of Data},
OPThowpublished = {},
month = feb,
year = 2003,
OPTnote = {Proposal submitted to the NSF CISE Research Infrastructure
Program.},
note = {NSF CISE-RI-MII \emph{0323604}},
OPTannote = {}
}
@Misc{vistrail@nsf2003,
OPTkey = {},
author = {Cl\'audio Silva and \freiremarkref{\meabbrev}},
title = { VisTrail: A Toolkit for Managing Complex Visualization Processes},
OPThowpublished = {},
month = jul,
year = 2003,
note = {Proposal submitted to the NSF Division of Advanced Computational
Infrastructure \& Research},
OPTannote = {}
}
@Misc{inria@nsf2003,
OPTkey = {},
author = {\freiremarkref{\meabbrev} and Michael Benedikt},
title = { New Automata and Grammar-based Tools for Web Data
Processing},
OPThowpublished = {},
month = may,
year = 2003,
note = {Proposal submitted to the NSF/INRIA Collaborative Research Program},
OPTannote = {}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@InProceedings{chaudhuri@sigmod98,
author = {S. Chaudhuri, V.R. Narasayya},
title = {AutoAdmin 'What-if' Index Analysis Utility},
booktitle = sigmod,
pages = {367-378},
year = 1998
}
@InProceedings{agrawal@sigmod01,
author = {S. Agrawal and S. Chaudhuri and V.R. Narasayya},
title = {Materialized View and Index Selection Tool for Microsoft SQL Server 2000},
booktitle = sigmod,
OPTpages = {},
year = {2001},
OPTnote = {To appear},
OPTannote = {}
}
@InProceedings{klettke@webdb2000,
author = {M. Klettke and H. Meyer},
title = {{XML} and Object-Relational Database Systems - Enhancing Structural Mappings Based on Statistics},
booktitle = webdb,
pages = {63-68},
year = 2000
}
@misc(dom@w3c,
key = "DOM",
title = "{DOM}",
note = {\oneurl{http://www.w3.org/DOM}}
)
@Article{silkroute@tods2002,
author = {Mary F. Fernandez and Yana Kadiyska and Dan Suciu and Atsuyuki Morishima and Wang Chiew Tan},
title = {SilkRoute: A framework for publishing relational data in XML},
journal = tods,
year = {2002},
volume = {27},
number = {4},
pages = {438-493},
}
@InProceedings{xperanto,
author = {M.J. Carey and J. Kiernan and J. Shanmugasundaram and E.J. Shekita and
S.N. Subramanian},
title = { XPERANTO: Middleware for Publishing
Object-Relational Data as XML Documents},
booktitle = vldb,
pages = {646-648},
year = {2000},
OPTnote = {Carey@vldb00},
OPTannote = {}
}
@InProceedings{Agrawal@vldb00,
author = {S. Agrawal and S. Chaudhuri and V.R. Narasayya},
title = {Automated Selection of Materialized Views and Indexes in {SQL} Databases},
booktitle = vldb,
pages = {496-505},
year = {2000},
OPTnote = {To appear},
OPTannote = {}
}
@InProceedings{jirong@dasfaa03,
author = {S. Zheng and J-R. Wen and H. Lu},
title = {Cost-Driven Storage Schema Selection for {XML}},
booktitle = {Proceedings of DASFAA},
year = 2003
}
@InProceedings{sauna@dasfaa2004,
author = {Abhijit Kadlag and Amol V. Wanjari and {\freiremarkref{\meabbrev}} and Jayant R. Haritsa},
title = {Supporting Exploratory Queries in Databases},
booktitle = {Proceedings of DASFAA},
pages = {594-605},
year = 2004
}
@InProceedings{gmap@vldb94,
author = {O. Tsatalos and M. Solomon and Y. Ioannidis},
title = {The GMAP: A Versatile Tool for Physical Data Independence},
booktitle = vldb,
pages = {367-378},
year = 1994
}
@InProceedings{rao@sigmod2002,
author = {Jun Rao and Chun Zhang and Nimrod Megiddo and Guy M. Lohman},
title = {Automating physical database design in a parallel database},
booktitle = sigmod,
pages = {558-569},
year = {2002},
}
@InProceedings{db2advisor@icde2000,
author = {Gary Valentin and Michael Zuliani and Daniel C. Zilio and Guy M. Lohman and Alan Skelley},
title = {DB2 Advisor: An Optimizer Smart Enough to Recommend Its Own Indexes},
booktitle = icde,
OPTpages = {101-110},
year = 2000,
}
@TechReport{galax@techrep,
author = {Byron Choi and Mary Fernandez and Jerome Sim\'eon},
title = {The XQuery Formal Semantics: A Foundation for Implementation and Optimization},
institution = {AT\&T Research},
year = {200},
OPTkey = {},
OPTtype = {},
number = {MS-CIS-02-25},
OPTaddress = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@Misc{searchenginewatch,
key = {searchenginewatch},
OPTauthor = {},
title = {Search Engines Size},
OPThowpublished = {},
month = dec,
year = 2001,
OPTnote = {\oneurl{http://searchenginewatch.com/reports/article.php/2156481}},
OPTannote = {}
}
@Book{googlehacks,
OPTauthor = {},
editor = {Tara Calishain and Rael Dornfest},
title = {Google Hacks: 100 Industrial-Strength Tips \& Tools},
publisher = {O'Reilly \& Associates},
year = {2003},
OPTnote = {},
}
@Article{soumen@www1999,
author = {Soumen Chakrabarti and Martin van den Berg and Byron Dom},
title = {Focused Crawling: A New Approach to Topic-Specific Web Resource Discovery},
journal = {Computer Networks},
volume = {31},
number = {11-16},
pages = {1623-1640},
year = {1999}
}
@InProceedings{doan@sigmod01,
author = {AnHai Doan and Pedro Domingos and Alon Y. Halevy},
title = {Reconciling Schemas of Disparate Data Sources: A Machine-Learning Approach},
booktitle = sigmod,
OPTpages = {},
year = {2001},
OPTnote = {To appear},
OPTannote = {}
}
@Misc{soap@w3c,
key = {SOAP},
OPTauthor = {},
title = {{SOAP} Version 1.2 Part 0: Primer},
howpublished = {W3C Recommendation},
month = jun,
year = {2003},
note = {\\ \oneurl{http://www.w3.org/TR/2003/REC-soap12-part0-20030624}},
OPTannote = {}
}
@Misc{http@w3c,
key = {HTTP},
title = {{HTTP} - Hypertext Transfer Protocol},
note = {\oneurl{http://www.w3.org/Protocols}},
}
@Misc{html@w3c,
key = {HTML},
title = {HyperText Markup Language ({HTML})},
note = {\oneurl{http://www.w3.org/MarkUp}}
}
@Misc{wsdl@w3c,
key = {WSDL},
OPTauthor = {W3C},
title = {Web Service Definition Language (WSDL)},
howpublished = {http://www.w3.org/TR/wsdl.html}
}
@InProceedings{webl@www98,
author = {T. Kistlera and H. Marais},
title = {{WebL}: a programming language for the {Web}},
booktitle = www,
year = {1998},
pages = {283-294},
OPTnote = {http://www.research.digital.com/SRC/WebL/index.html},
OPTannote = {}
}
@Misc{xsym2003,
key = {XSym},
OPTauthor = {},
title = {{XML} {Database} {Symposium} ({XSym2003})},
OPThowpublished = {},
OPTmonth = {},
OPTyear = {},
note = {\oneurl{http://www.lirmm.fr/$\tilde{\ }$bella/XSym}},
OPTannote = {}
}
@Misc{cbr@uw,
key = {Columbia},
title = {{Columbia Basin Research -- School of Aquatic \& Fishery Sciences}},
note = {\oneurl{\\ http://www.cbr.washington.edu}},
}
@InProceedings{vianu@icdt2003,
author = {Yannis Papakonstantinou and Victor Vianu},
title = {Incremental Validation of {XML} Documents},
booktitle = icdt,
year = 2003,
pages = {47-63},
}
@InProceedings{braganholo@webdb2003,
author = {Vanessa P. Braganholo and Susan B. Davidson and Carlos A. Heuser},
title = { On the updatability of {XML} views over relational databases},
booktitle = webdb,
pages = {31-36},
year = 2003
}
@inproceedings{braganholo@vldb2004,
author = {Vanessa P. Braganholo and
Susan B. Davidson and
Carlos A. Heuser},
title = {{From XML View Updates to Relational View Updates: old solutions
to a new problem.}},
booktitle = {VLDB},
year = {2004},
}
@Article{nestedrel@acr1986,
author = {Stan J. Thomas and Patrick C. Fischer},
title = { Nested Relational Structures},
journal = {Advances in Computing Research},
year = {1986},
OPTkey = {},
volume = {3},
OPTnumber = {},
pages = {269-307 },
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@Misc{edr@epa,
key = {EPA},
title = {Environmental Data Registry -- U.S. Environmental
Protection Agency},
note = {http://www.epa.gov/edr},
}
@Misc{cleanair@epa,
key = {EPA},
title = {Clean Air Markets -- Data and Maps},
howpublished = {U.S. Environmental Protection Agency},
note = {http://cfpub.epa.gov/gdm},
}
@Misc{inex2005,
key = {INEX},
OPTauthor = {},
title = {{INitiative} for the {Evaluation} of {XML} Retrieval ({INEX})},
OPThowpublished = {},
OPTmonth = {},
OPTyear = {},
note = {\\ \url{http://inex.is.informatik.uni-duisburg.de/2005}},
OPTannote = {}
}
@inproceedings{parsing@cikm2003,
author = {Matthias Nicola and Jasmi John},
title = {{XML Parsing: a Threat to Database Performance}},
booktitle = CIKM,
year = {2003},
}
@Misc{dblp,
key = {DBLP},
OPTauthor = {},
title = {{DBLP}},
howpublished = {http://dblp.uni-trier.de/xml},
OPTmonth = {},
OPTyear = {},
OPTnote = {},
OPTannote = {}
}
@InProceedings{XSYM03:KKN,
author = {Rajasekar Krishnamurthy and Raghav Kaushik and
Jeffrey F. Naughton},
booktitle = xsym,
year = 2003,
title = {{XML-SQL Query Translation Literature: the State of
the Art and Open Problems}}
}
@InProceedings{chaudhuri@icde2004,
author = {Surajit Chaudhuri and Zhiyuan Chen,
Kyuseok Shim and Yuqing Wu},
title = {Storing XML (with XSD) in SQL Databases},
booktitle = icde,
pages = {842},
year = 2004,
}
@InProceedings{toxgene@webdb2002,
author = {Denilson Barbosa and Alberto O. Mendelzon and John Keenleyside and Kelly A. Lyons},
title = {{ToXgene}: An extensible template-based data generator for {XML}},
booktitle = webdb,
pages = {49-54},
year = 2002,
}
@InProceedings{xbench@icde2004,
author = {{Benjamin Bin} Yao and {M. Tamer} zsu, Nitin Khandelwal},
title = {{XBench} Benchmark and Performance Testing of {XML} {DBMSs}},
booktitle = icde,
pages = {621-633},
year = 2004,
}
@inproceedings{sihem@edbt2002,
author = {Sihem Amer-Yahia and SungRan Cho and Divesh Srivastava},
title = {Tree Pattern Relaxation},
booktitle = edbt,
year = {2002},
OPTisbn = {3-540-43324-4},
pages = {496-513},
OPTpublisher = {Springer-Verlag},
OPTaddress = {London, UK},
}
@inproceedings{xpathlearner@vldb02,
author = {L. Lim and M. Wang and S. Padmanabhan and J. Vitter and R. Parr},
title = {{XP}ath{L}earner: An On-Line Self-Tuning Markov Histogream for {XML} Path Selectivity Estimation},
booktitle = vldb,
pages = {442-453},
year = 2002
}
@inproceedings{barbosa@icde2004,
author = {Denilson Barbosa and Alberto O. Mendelzon and Leonid
Libkin and Laurent Mignet and Marcelo Arenas},
title = {{Efficient Incremental Validation of XML Documents}},
booktitle = icde,
year = 2004,
OPTpublisher = {IEEE Computer Society},
}
@InProceedings{chen@vldb2003,
author = {Yi Chen and Susan Davidson and Carmem S. Hara and
Yifeng Zheng},
title = {{RRXF}: Redundancy reducing {XML} storage in
relations},
booktitle = vldb,
year = 2003,
}
@inproceedings{consens@sigmod2005,
author = {Mariano Consens and Denilson Barbosa and Adian
Teisanu and Laurent Mignet},
title = {{Goals and Benchmarks for Autonomic Configuration
Recommenders}},
booktitle = sigmod,
year = 2005,
note = {To appear}
}
@INPROCEEDINGS{davidson@icde2003,
author = {Susan Davidson and Wenfei Fan and Carmem Hara and
Jing Qin},
booktitle = icde,
title = {{Propagating XML Constraints to Relations}},
year = 2003
}
@InProceedings{kane@cikm2002,
author = {Bintou Kane and Hong Su and Elke A. Rundensteiner},
title = {{Consistently Updating XML Documents Using
Incremental Constraint Check Queries}},
booktitle = cikm,
year = 2002,
}
@InProceedings{donko@icde00,
author = {D. Donjerkovic and Y. Ioannidis and R. Ramakrishnan},
title = {Dynamic Histograms: Capturing Evolving Data Sets},
booktitle = icde,
OPTpages = {86},
year = 2000
}
@inproceedings{multiHistMaint@fsttcs03,
author = {S. Muthukrishnan and M. Strauss},
title = {Maintenance of Multidimensional Histograms},
booktitle = fsttcs,
OPTpages = {352-362},
year = 2003
}
@Misc{repcbr@uw,
key = {CBRE},
title = {Columbia Basin Research -- University of Washington},
note = {\url{http://http://www.cbr.washington.edu}}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{papak@icdt2003,
author = {Yannis Papakonstantinou and Victor Vianu},
title = {Incremental Validation of {XML} Documents},
booktitle = {International Conference on Database Theory},
pages = {47-63},
year = 2003,
address = {Siena, Italy},
month = {January 8-10}
}
@inproceedings{repbarbosa@icde2004,
author = {Denilson Barbosa and Alberto O. Mendelzon and Leonid
Libkin and Laurent Mignet and Marcelo Arenas},
title = {Efficient Incremental Validation of {XML} Documents},
booktitle = {International Conference on Data Engineering},
year = 2004,
note = {To appear}
}
@inproceedings{bouchou@dbpl2003,
author = {Beatrice Bouchou and Mirian Halfeld-Ferrari-Alvez},
title = {{Updates and Incremental Validation of XML
Documents}},
booktitle = {9th International Conference on Data Base
Programming Languages (DBPL)},
year = 2003,
month = {September 6-8},
address = {Potsdam, Germany}
}
@InProceedings{OLDtatarinov@sigmod2001,
author = {Igor Tatarinov and Zachary G. Ives and Alon Y. Halevy and Daniel S. Weld},
title = {Updating XML},
booktitle = sigmod,
OPTpages = {not-available},
year = 2001
}
@InProceedings{mchugh@vldb1999,
author = {J. McHugh and J. Widom},
title = {Query Optimization for {XML}},
booktitle = vldb,
pages = {315-326},
year = {1999},
}
@inproceedings{twig@icde2001,
author = {Z. Chen and H.V. Jagadish and F. Korn and N. Koudas and S. Muthukrishnan and R.T. Ng and D. Srivastava},
title = {Counting Twig Matches in a Tree},
booktitle = icde,
OPTpublisher = {IEEE Computer Society},
year = {2001},
pages = {595-604}
}
@InProceedings{aboulnaga@vldb2001,
author = {A. Aboulnaga and A.R. Alameldeen and J.Naughton},
title = {Estimating the Selectivity
of {XML} Path Expressions for {Internet} Scale Applications},
booktitle = vldb,
pages = {591-600},
year = 2001
}
@InProceedings{jag@edbt2002,
author = {Y. Wu and J.~M. Patel and H.~V. Jagadish},
title = {Estimating Answer Sizes for XML Queries},
booktitle = edbt,
year = {2002},
OPTnote = {},
OPTannote = {}
}
@InProceedings{minos@sigmod2002,
author = {N. Polyzotis and M. Garofalakis},
title = {Statistical Synopses for Graph Structured {XML} Databases},
booktitle = sigmod,
year = {2002},
pages = {358-369},
OPTnote = {},
OPTannote = {}
}
@Misc{OLDgalax,
key = {Galax},
title = {Galax},
OPTmonth = oct,
OPTyear = 2001,
note = {\oneurl{http://db.bell-labs.com/galax}}
}
@InProceedings{aboulnaga@sigmod1999,
author = {A. Aboulnaga and S. Chaudhuri},
title = {Self-tuning Histograms: Building Histograms Without Looking at Data},
booktitle = sigmod,
pages = {181-192},
year = {1999}
}
@Book{tree-automata,
ALTauthor = {},
editor = {G. Rozenberg and A. Salomaa},
title = {Handbook of formal languages},
publisher = {Springer Verlag},
year = {1997},
volume = {3},
}
@Article{ioannidis@tods1993,
author = {Y. Ioannidis and S. Christodoulakis},
title = {Optimal Histograms for Limiting Worst-Case Error Propagation in the Size of
Join Results},
journal = tods,
year = {1993},
OPTkey = {},
volume = {18},
number = {4},
pages = {709-748},
}
@InProceedings{kemper@sigmod1990,
author = {A. Kemper and G. Moerkotte},
title = {Access Support in Object Bases},
booktitle = sigmod,
pages = {364-374},
year = {1990}
}
@InProceedings{kemper@vldb1990,
author = {A. Kemper and G. Moerkotte},
title = {Advanced Query Processing in Object Bases Using Access Support Relations},
booktitle = vldb,
pages = {290-301},
year = {1990}
}
@InProceedings{toxin@webdb2001,
author = {F. Rizzolo and A. Mendelzon.},
title = {Indexing {XML} Data with ToXin},
booktitle = {Workshop on the Web and Databases (WebDB},
OPTpages = {},
year = {2001},
OPTnote = {},
OPTannote = {}
}
@inproceedings{OLDlegodb@icde2002,
author = {P. Bohannon and J. Freire and P. Roy and J. Sim\'eon},
title = {From {XML} Schema to Relations: A Cost-Based Approach to {XML} Storage},
booktitle = icde,
OPTpublisher = {IEEE Computer Society},
year = {2002},
pages = {64-75},
OPTnote = {To appear}
}
@Misc{blindlegodb@icde2002,
key = {zzz},
howpublished = {Reference removed for double-blind review},
}
@inproceedings{OLDstatix@sigmod2002,
author = { J. Freire and J. Haritsa and M. Ramanath and P. Roy and J. Sim\'eon},
title = {StatiX: Making {XML} Count},
booktitle = sigmod,
OPTpublisher = {ACM},
year = {2002},
pages = {181-191},
}
@inproceedings{DUPstatix@sigmod2002,
author = {J. Freire and J. Haritsa and M. Ramanath and P. Roy and J. Sim\'eon},
title = {{StatiX}: Making {XML} Count},
booktitle = sigmod,
OPTpublisher = {ACM},
year = {2002},
OPTpages = {209-218},
note = {To appear}
}
@TechReport{statix@techrep2002,
author = {J. Freire and J. Haritsa and M. Ramanath and P. Roy and J. Sim\'eon},
OPTtitle = {{StatiX}: Making {XML} Count},
title = {Gathering and Deriving Statistics for {XML} Data},
institution = {Bell Labs},
year = {2002},
OPTkey = {},
OPTtype = {},
OPTnumber = {},
OPTaddress = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@InProceedings{goldman@vldb97,
author = {R. Goldman and J. Widom},
title = {DataGuides: Enabling Query Formulation and
Optimization in Semistructured Databases},
booktitle = vldb,
pages = {436-445},
year = {1997},
OPTnote = {},
}
@InProceedings{milo@icdt99,
author = {T. Milo and D. Suciu},
title = {Index Structures for Path Expressions},
booktitle = icdt,
pages = {277-295},
year = {1999},
OPTnote = {},
}
@InProceedings{DUPaboulnaga@vldb2001,
author = {A. Aboulnaga and A.R. Alameldeen and J.Naughton},
title = {Estimating the Selectivity
of {XML} Path Expressions for {Internet} Scale Applications},
booktitle = vldb,
pages = {591-600},
year = 2001
}
@InProceedings{OLDgmap@vldb94,
author = {O. Tsatalos and M. Solomon and Y. Ioannidis},
title = {The GMAP: A Versatile Tool for Physical Data Independence},
booktitle = vldb,
pages = {367-378},
year = 1994
}
@InProceedings{OLDShan@vldb99,
author = {J. Shanmugasundaram and K. Tufte and G. He and C. Zhang and D. DeWitt and J. Naughton},
title = {Relational Databases for Querying {XML} Documents: Limitations and Opportunities},
booktitle = vldb,
pages = {302-314},
year = 1999
}
@InProceedings{Sellis@vldb97,
author = {D. Theodoratos and T. K. Sellis},
title = {Data Warehouse Configuration},
booktitle = vldb,
pages = {126-135},
year = 1997
}
@InProceedings{Carey@vldb99,
author = {M. Carey and D. Chamberlin and S. Narayanan and B. Vance and D. Doole and S. Rielau and R. Swagerman and N. Mattos},
title = {O-O, What Have They Done to DB2},
booktitle = vldb,
year = 1999
}
@InProceedings{OLDDeutsch@sigmod99,
author = {A. Deutsch and M. Fernandez and D. Suciu},
title = {Storing Semi-Structured Data with {STORED}},
booktitle = sigmod,
pages = {431-442},
year = 1999
}
@InProceedings{Deutsch@www99,
author = {A. Deutsch and M. Fernandez and D. Florescu and A. Levy and D. Suciu},
title = {{XML-QL}: A Query Language for {XML}},
booktitle = www,
year = 1999
}
@InProceedings{BROKENFernandez@www9-conf,
author = { M.F. Fernandez and W.C. Tan and D. Suciu},
title = {SilkRoute: trading between relations and {XML}},
booktitle = {WWW9},
year = 2000
}
@Article{silkroute,
author = {M.F. Fernandez and W.C. Tan and D. Suciu},
title = {SilkRoute: trading between relations and {XML}},
journal = {WWW9/Computer Networks},
year = {2000},
volume = {33},
number = {1-6},
pages = {723-745},
OPTnote = {},
OPTannote = {Fernandez@www00}
}
@Misc{xql,
author = {J. Robie and J. Lapp and D. Schach},
title = {{XML} Query Language ({XQL})},
howpublished = {http://www.w3.org/TandS/QL/QL98/pp/xql.html},
year = 1998
}
@Misc{oasis,
key = {Oasis},
title = {The {XML} Cover Pages},
note = {\oneurl{http://www.oasis-open.org/cover}}
}
@Misc{DUPoasis,
OPTauthor = {},
key = {Oasis},
title = {{XML} Query Language (XQL)},
howpublished = {http://www.oasis-open.org},
year = 2001
}
@Misc{tianVarious,
author = {F. Tian and D. DeWitt and J. Chen and C. Zhung},
title = {The Design and Performance Evaluation of Various {XML} Storage Strategies},
howpublished = {http://www.cs.wisc.edu/niagra/Publications.html},
year = 2001
}
@Book{Raghu@book1997,
author = {R. Ramakrishnan},
title = {Database Management Systems},
publisher = {Morgan Kaufman},
year = 1997
}
@Misc{html,
key = {HTML},
title = {www.w3.org/HTML}
}
@Misc{OLDxml@w3c,
key = {XML},
author = {T. Bray and J. Paoli and C. Sperberg-McQueen},
title = {Extensible Markup Language ({XML}) 1.0},
month = feb,
year = 1998,
note = {{W3C} recommendation available at http://www.w3.org/TR/1998/REC-xml-19980219}
}
@Misc{xquery-requirements@w3org,
key = {Requirements},
author = {D. Chamberlin and P. Fankhauser and J. Robie},
title = {{XML} Query Requirements},
month = feb,
year = 2001,
note = {{W3C} Working Draft available at http://www.w3.org/}
}
@Misc{xml-dm@w3org,
key = {XDM},
author = {M. Fernandez and J. Robie},
title = {The {XML} Query Data Model},
month = feb,
year = 2001,
note = {{W3C} Working Draft available at http://www.w3.org/}
}
@Misc{xml-algebra@w3org,
key = {XAlgebra},
author = {P. Fankhauser and M. Fernandez and A. Malhotra and M. Rys and J. Sim\'{e}on and P. Wadler},
title = {The {XML} Query Algebra},
month = feb,
year = 2001,
note = {http://www.w3.org/TR/2001/WD-query-algebra-20010215}
}
@Misc{xquery@w3crep,
author = {S. Boag and D. Chamberlin and M. Fernandez and D. Florescu and J. Robie and J. Sim\'eon and M. Stefanescu},
title = {{XQuery} 1.0: An {XML} Query Language},
howpublished = {{W3C} Working Draft},
month = jun,
year = 2001
}
@Misc{xquery@w3org,
key = {XQuery},
author = {D. Chamberlin and D. Florescu and J. Robie and J. Sim\'{e}on and M. Stefanescu},
title = {{XQuery}: A Query Language for {XML}},
month = feb,
year = 2001,
note = {{W3C} Working Draft available at http://www.w3.org/}
}
@Misc{excelon,
key = {EXCELON},
title = {Excelon},
howpublished = {http://www.odi.com/excelon}
}
@Misc{suciu@ss-tutorial,
author = {D. Suciu},
title = {From Semi-Structured Data to {XML}},
howpublished = {http://www.research.att.com/\verb$~$suciu/slides.ppt},
year = 1999,
note = {Tutorial presented at VLDB}
}
@Book{abiteboul@book1999,
author = {S. Abiteboul and P. Buneman and D. Suciu},
title = {Data on the {Web}},
publisher = {Morgan Kaufmann},
year = 1999
}
@Article{lore@sigmod-record,
author = {J. McHugh and S. Abiteboul and R. Goldman and D. Quass and J. Widom},
title = {A Database Management System for Semistructured Data},
journal = sigmod-record,
year = 1997,
volume = 26,
number = 3,
pages = {54-66},
month = sep
}
@TechReport{lore@sigrec,
author = {J. McHugh and S. Abiteboul and R. Goldman and D. Quass and J. Widom},
title = {A Database Management System for Semistructured Data},
institution = {Stanford},
year = 1997
}
@InProceedings{cluet@sigmod98,
author = {S. Cluet and C. Delobel and J. Sim\'{e}on and K. Smaga},
title = {Your Mediators Need Data Conversion!},
booktitle = sigmod,
pages = {177-188},
year = 1998
}
@Misc{widom@xml-note,
author = {J. Widom},
title = {Data Management for {XML} - Reseach Directions},
howpublished = {http://www-db.stanford.edu/\verb$~$widom/xml-whitepaper.html},
year = 1999
}
@book{ullman@book1,
AUTHOR = "J. Ullman",
TITLE = "Principles of Data and Knowledge-base Systems Vol {I}",
PUBLISHER = "Computer Science Press",
YEAR = 1989}
@book{ullman@book2,
AUTHOR = "J. Ullman",
TITLE = "Principles of Data and Knowledge-base Systems Vol {II}",
PUBLISHER = "Computer Science Press",
YEAR = 1989}
@Unpublished{dcd,
author = {T. Bray and C. Frankston and A. Malhotra},
title = {Document Content Description for {XML}},
note = {http://www.w3.org/TR/NOTE-dcd},
year = 1998
}
@Misc{OLDxquery@w3c,
author = {D. Chambelin and J. Clark and D. Florescu and Jonathan Robie and J. Sim\'eon and M. Stefanescu},
title = {{XQuery} 1.0: An {XML} Query Language},
howpublished = {{W3C} Working Draft},
month = jun,
year = 2001
}
@Misc{OLDxschema@w3c,
author = {H. Thompson and D. Beech and M. Maloney and N. Mendelsohn},
title = {{XML} {Schema} {Part} 1: Structures},
howpublished = {{W3C} Working Draft},
month = feb,
year = 2000
}
@Misc{OLDdtd@w3c,
author = {J. Bosac and T. Bray and D. Connolly and E. Maler and G. Nicol and C.M. Sperberg-McQueen and L. Wood and J. Clark},
title = {Guide to the {W3C} {XML} Specification ("{XMLspec}") {DTD}},
howpublished = {http://www.w3.org/XML/1998/06/xmlspec-report},
month = jun,
year = 1998
}
@TechReport{florescu@inria99,
author = {D. Florescu and D. Kossmann},
title = {A Performance Evaluation of Alternative
Mapping Schemes for Storing {XML} in a Relational Database},
institution = {INRIA},
year = 1999,
number = 3680
}
@InProceedings{OLDchaudhuri@sigmod98,
author = {S. Chaudhuri, V.R. Narasayya},
title = {AutoAdmin 'What-if' Index Analysis Utility},
booktitle = sigmod,
pages = {367-378},
year = 1998
}
@InProceedings{selinger@sigmod79,
author = {P. Selinger and M. Astrahan and D. Chamberlin and R. Lorie and T. Price},
title = {Access Path Selection in a Relational Database Management System},
booktitle = sigmod,
pages = {23-34},
year = 1979
}
@inproceedings{Graefe@icde93,
author = {G. Graefe and W. McKenna},
title = {The Volcano Optimizer Generator: Extensibility and Efficient
Search},
OPTbooktitle = {Proceedings of the Ninth International Conference on Data Engineering,
April 19-23, 1993, Vienna, Austria},
booktitle = icde,
OPTpublisher = {IEEE Computer Society},
year = {1993},
OPTisbn = {0-8186-3570-3},
pages = {209-218},
OPTcrossref = {DBLP:conf/icde/93},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@InProceedings{abiteboul@icdt97,
author = {S. Abiteboul},
title = {Access Path Selection in a Relational Database Management System},
booktitle = icdt,
pages = {1-18},
year = 1997
}
@InProceedings{buneman@pods97,
author = {P. Buneman},
title = {Semistructured Data},
booktitle = pods,
pages = {117-121},
year = 1997
}
@Book{kroenke@book1995,
author = {David M. Kroenke},
title = {Database Processing: Fundamentals, Design, and Implementation},
publisher = {Prentice Hall},
year = 1995
}
@InProceedings{OLDschmidt@webdb2000,
author = {A. Schmidt and M. Kersten and M. Windhouwer and F. Waas},
title = {Efficient Relational Storage and Retrieval of {XML} Documents},
booktitle = webdb,
pages = {47-52},
year = 2000
}
@InProceedings{kanne@icde2000,
author = {C. Kanne and G. Moerkotte},
title = {Efficient Storage of {XML} Data},
booktitle = icde,
pages = 198,
year = 2000
}
@InProceedings{fiebig@webdb2000,
author = {T. Fiebig, G. Moerkotte},
title = {Evaluating Queries on Structure with eXtended Access Support Relations},
booktitle = webdb,
pages = {41-46},
year = 2000
}
@InProceedings{OLDklettke@webdb2000,
author = {M. Klettke and H. Meyer},
title = {{XML} and Object-Relational Database Systems - Enhancing Structural Mappings Based on Statistics},
booktitle = webdb,
pages = {63-68},
year = 2000
}
@InProceedings{klettke@xml2000,
author = {M. Klettke and H. Meyer},
title = {Managing {XML} documents in object-relational databases},
booktitle = {Proceedings of the {XML} Conference},
pages = {63-68},
year = 2000
}
@InProceedings{kha@icde2001,
author = {D. Kha and M. Yoshikawa and S. Uemura},
title = {An {XML} Indexing Structure with Relative Region Coordinate},
pages = {313-320},
booktitle = icde,
year = 2001,
OPTnote = {To appear}
}
@InProceedings{OLDshimura@dexa1999,
author = {T. Shimura and M. Yoshikawa and S. Uemura},
title = {Storage and Retrieval of {XML} Documents Using Object-Relational Databases},
booktitle = dexa,
pages = {206-217},
year = 1999
}
@Book{AbBuSu1999,
author = {S. Abiteboul and P. Buneman and D. Suciu},
title = {Data on the Web: From Relations to Semistructured Data and {XML}},
publisher = {Morgan Kaufmann},
year = 1999
}
@InProceedings{FaKuSi2001,
author = {W. Fan and G. Kuper and J. Sim\'eon},
title = {A Unified Constraint Model for {XML}},
booktitle = WWW,
pages = {179-190},
year = 2001,
address = {Hong Kong, China},
month = may,
OPTnote = {to appear}
}
@InProceedings{PaVi2000,
author = {Yannis Papakonstantinou and Victor Vianu},
title = {{DTD} Inference for Views of {XML} Data},
booktitle = PODS,
year = 2000,
address = {Dallas, Texas},
month = may
}
@Book{RoSa1997,
editor = {Grzegorz Rozenberg and Arto Salomaa},
title = {Handbook of Formal Languages},
publisher = {Springer-Verlag},
year = 1997
}
@InProceedings{Agrawal@sigmod01,
author = {S. Agrawal and S. Chaudhuri and V.R. Narasayya},
title = {Index Tuning Wizard for Microsoft {SQL} Server 2000},
booktitle = sigmod,
OPTpages = {},
year = {2001},
note = {To appear},
OPTannote = {}
}
@InProceedings{DUPmchugh@vldb1999,
author = {J. McHugh and J. Widom},
title = {Query Optimization for {XML}},
booktitle = vldb,
pages = {315-326},
year = {1999},
}
@InProceedings{OLDAgrawal@vldb00,
author = {S. Agrawal and S. Chaudhuri and V.R. Narasayya},
title = {Automated Selection of Materialized Views and Indexes in {SQL} Databases},
booktitle = vldb,
pages = {496-505},
year = {2000},
OPTnote = {To appear},
OPTannote = {}
}
@Misc{xmlsql@oracle,
key = {XML SQL},
OPTauthor = {},
title = {Oracle's {XML} {SQL} Utility},
howpublished = {http://technet.oracle.com/tech/xml/oracle\_xsu},
OPTnote = {straightforward mapping from xml into ordbms},
OPTannote = {}
}
@Article{sqlserverxml@icdebulletin,
author = {M. Rhys},
title = {State-of-the-art {XML} Support in {RDBMS}: {M}icrosoft {SQL} {S}erver's {XML} Features},
journal = {Bulletin of the Technical Committee on Data Engineering} ,
year = 2001,
volume = 24,
number = 2,
pages = {3-11},
month = jun
}
@Misc{imdb,
key = {IMDB},
OPTauthor = {},
title = {Internet {Movie} {Database}},
howpublished = {\url{http://www.imdb.com}},
OPTnote = {Data can be downloaded from {\TTT ftp://ftp.fu-berlin.de/pub/misc/movies/database/tools/}},
OPTannote = {}
}
@InProceedings{OLDxperanto,
author = {M.J. Carey and J. Kiernan and J. Shanmugasundaram and E.J. Shekita and
S.N. Subramanian},
title = { XPERANTO: Middleware for Publishing
Object-Relational Data as {XML} Documents},
booktitle = vldb,
pages = {646-648},
year = {2000},
OPTnote = {Carey@vldb00},
OPTannote = {}
}
@InProceedings{HoPi2000,
author = {Haruo Hosoya and Benjamin C. Pierce},
title = {{XDuce}: an {XML} Processing Language},
booktitle = {International Workshop on the Web and Databases (WebDB'2000)},
year = 2000,
address = {Dallas, Texas},
month = may
}
@inproceedings{volc:icde93,
Author = "Goetz Graefe and William J. McKenna",
Title = "The Volcano Optimizer Generator: Extensibility and
Efficient Search",
Booktitle = icde,
Year = 1993}
@inproceedings{rssb:sigmod00,
Author = "P. Roy and S. Seshadri and S. Sudarshan and S.
Bhobe",
Title = "Efficient and Extensible Algorithms for Multi Query
Optimization",
pages = "249-260",
Booktitle = sigmod,
Year = 2000}
@inproceedings{xtract@sigmod00,
Author = "M. Garofalakis and A. Gionis and R. Rastogi and S. Seshadri and K. Shim",
Title = "XTRACT: A System for Extracting Document Type
Descriptors from {XML} Documents",
Booktitle = sigmod,
pages = "165-176",
Year = 2000}
@InProceedings{ChAbClSc1994,
author = {V. Christophides and S. Abiteboul and S.
Cluet and M. Scholl},
title = {From Structured Documents to Novel Query Facilities},
booktitle = SIGMOD,
year = 1994,
address = {Minneapolis, Minnesota},
month = may,
pages = {313-324}
}
@InProceedings{poosala@sigmod1996,
author = {V. Poosala and Y. Ioannidis and P. Haas and E. Shekita},
title = {Improved Histograms for Selectivity Estimation of Range Predicates},
booktitle = sigmod,
pages = {294-305},
year = {1996},
OPTnote = {},
OPTannote = {}
}
@InProceedings{poosala@vldb1997,
author = {V. Poosala and Y. Ioannidis},
title = {Selectivity Estimation Without the Attribute
Value Independence Assumption},
booktitle = vldb,
pages = {486-495},
year = {1997},
OPTnote = {},
OPTannote = {}
}
@InProceedings{yannis@vldb1993,
author = {Y. Ioannidis},
title = {Universality of Serial Histograms},
booktitle = vldb,
pages = {256-267},
year = {1993},
OPTnote = {},
OPTannote = {}
}
@Misc{OLDxerces,
key = {Xerces},
title = {Xerces Java Parser 1.4.3 },
howpublished = {http://xml.apache.org/xerces-j/},
OPTmonth = {},
OPTyear = {},
OPTnote = {},
OPTannote = {}
}
@Misc{xmark,
key = {XMark},
title = {{XMark}},
howpublished = {http://monetdb.cwi.nl/xml},
}
@Misc{infoset@w3c,
author = {John Cowan and Richard Tobin},
title = {{XML} Information Set},
month = oct,
year = 2001,
note = {{W3C} recommendation available at
http://www.w3.org/TR/xml-infoset/}
}
@Misc{xmlspy,
key = {Spy},
title = {{XML} Spy},
note = {http://www.xmlspy.com/}
}
@Misc{schemaformal@w3crepeated,
author = {Allen Brown and Matthew Fuchs and Jonathan Robie and
Philip Wadler},
title = {{XML Schema}: Formal Description},
year = 2001,
note = {{W3C} Working Draft}
}
@Misc{schemaformal@w3c,
author = {Allen Brown and Matthew Fuchs and Jonathan Robie and
Philip Wadler},
title = {{XML Schema}: Formal Description},
year = 2001,
note = {{W3C} Working Draft},
OPTnote = {{W3C} working draft available at
http://www.w3.org/TR/2001/WD-xmlschema-formal-20010320/}
}
@InProceedings{xduce,
author = {Haruo Hosoya and Jerome Vouillon and Benjamin
Pierce},
title = {Regular Expression Types for {XML}},
booktitle = {Proceedings of the International Conference on
Functional Programming (ICFP)},
pages = {11-22},
year = 2000,
month = sep
}
@PhdThesis{neumannphd,
author = {Andreas Neumann},
title = {Parsing and Querying {XML} Documents in {SML}},
school = {Universitt Trier},
year = 1999,
type = {Dissertation},
month = dec
}
@Misc{DUPgalax,
key = {Galax},
title = {Galax System},
month = oct,
year = 2001,
note = {http://db.bell-labs.com/galax/}
}
@Misc{tata97,
author = {H. Comon and M. Dauchet and R. Gilleron and
F. Jacquemard and D. Lugiez and S. Tison and M. Tommasi},
title = {Tree Automata Techniques and Applications},
howpublished = {Available on:
http://www.grappa.univ-lille3.fr/tata},
year = 1997
}
@article{berry86,
author = "Gerard Berry and Ravi Sethi",
title = "From Regular Expressions to Deterministic Automata",
journal = "Theoretical Computer Science",
volume = "48",
number = "1",
pages = "117--126",
year = "1986"
}
@Article{klein1,
author = {A. Br\"uggemann-Klein},
title = {Regular Expressions into Finite Automata},
journal = {TCS},
year = 1993,
volume = 120,
number = 2,
pages = {197-213}
}
@Article{klein2,
author = {A. Br\"uggemann-Klein and D. Wood},
title = {One-Unambiguous Regular Languages},
journal = {Information and Computation},
year = 1998,
volume = 140,
number = 2,
pages = {229-253}
}
@InProceedings{DUPminos@sigmod2002,
author = {N. Polyzotis and M. Garofalakis},
title = {Statistical Synopses for Graph Structured {XML} Databases},
booktitle = sigmod,
year = {2002},
OPTnote = {},
OPTannote = {}
}
@InProceedings{minos@vldb2002,
author = {N. Polyzotis and M. Garofalakis},
title = {Structure and Value Synopses for {XML} Data Graphs},
booktitle = vldb,
year = {2002},
pages = {466-477},
OPTnote = {},
OPTannote = {}
}
@InProceedings{DUPjag@edbt2002,
author = {Y. Wu and J.~M. Patel and H.~V. Jagadish},
title = {Estimating Answer Sizes for XML Queries},
booktitle = edbt,
year = {2002},
OPTnote = {},
OPTannote = {}
}
@InProceedings{piatetsky-shapiro@sigmod1984,
author = {G. Piatetsky-Shapiro and C. Connell},
title = {Accurate Estimation of the Number of Tuples Satisfying a Condition},
booktitle = sigmod,
year = {1984},
pages = {256-276},
OPTnote = {},
OPTannote = {}
}
@InProceedings{xmill@sigmod2000,
author = {H. Liefke and D. Suciu},
title = {XMill: An Efficient Compressor for XML Data},
booktitle = sigmod,
pages = {},
year = {2000},
OPTnote = {},
}
@InProceedings{xgrind@icde2002,
author = {P. Tolani and J. Haritsa},
title = {XGRIND: A Query-friendly XML Compressor},
booktitle = icde,
pages = {},
year = {2002},
OPTnote = {},
}
@InProceedings{xpress@sigmod2003,
author = {J. Min, M. Park and C. Chung},
title = {XPRESS: A Queriable Compression for XML data},
booktitle = sigmod,
pages = {},
year = {2003},
OPTnote = {},
}
@InProceedings{xquec@edbt2004,
author = {A. Arion et al},
title = {Efficient Query Evaluation over Compressed XML Data},
booktitle = edbt,
pages = {},
year = {2004},
OPTnote = {},
}
@Article{gmp@tods2002,
author = {P. Gibbons, Y. Matias and V. Poosala},
title = {Fast Incremental Maintenance of Approximate Histograms},
journal = tods,
year = {2002},
OPTkey = {},
volume = {27},
number = {3},
pages = {261-298},
}
@PhdThesis{poosala@diss1997,
author = {Viswanath Poosala},
title = { Histogram-based Estimation Techniques in Databases},
school = {University of Wisconsin Madison},
year = {1997},
}
@MastersThesis{OLDlehti@thesis,
author = {Patrick Lehti},
title = {Design and Implementation of a Data Manipulation Processor for an XML Query Language},
school = {Universit\"{a}t Darmstadt},
year = {2001},
}
Denilson Barbosa, Alberto O. Mendelzon, John Keenleyside, Kelly A. Lyons: .WebDB 2002: 49-54
@InProceedings{toxgene,
author = {Denilson Barbosa and Alberto O. Mendelzon and John Keenleyside and Kelly A. Lyons},
title = {{ToXgene}: An extensible template-based data generator for {XML}},
booktitle = webdb,
pages = {49-54},
year = 2002
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@InProceedings{benedikt@sigmod2003,
author = {M. Benedikt and C. Y. Chan and W. Fan and \freiremarkref{\meabbrev} and R. Rastogi},
title = {Capturing both Types and Constraints in Data Integration},
booktitle = sigmod,
year = {2003},
pages = {277-288},
OPTnote = {To appear},
OPTannote = {}
}
@Misc{Clar1999,
author = {James Clark},
title = {{XSL} Transformations ({XSLT})},
howpublished = {W3C Recommendation},
month = nov,
year = 1999,
note = {\\ \oneurl{http://www.w3.org/TR/xslt}}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@misc{csilva1,
Author = {Bavoil, Louis and Callahan, Steven and Crossno,
Patricia and Freire, Juliana and Scheidegger, Carlos
and Silva, Claudio T. and Vo, Huy T.},
Title = {VisTrails: Enabling Interactive Multiple-View
Visualizations},
Year = 2005
}
@article{csilva2,
Author = {Bernardon, Fabio and Pagot, C. and Comba, Joao
L. D. and Silva, Claudio T.},
Title = {{GPU}-based Tiled Ray Casting using Depth Peeling},
Journal = {Journal of Graphics Tools},
Year = 2005
}
@article{csilva3,
Author = {Callahan, Steven and Ikits, Milan and Comba, Joao
L. D. and Silva, Claudio T.},
Title = {Hardware-Assisted Visibility Sorting for
Unstructured Volume Rendering},
Journal = {IEEE Transactions on Visualization and Computer
Graphics},
Year = 2005
}
@incollection{csilva4,
Author = {Comba, Joao L. D. and Mitchell, Joseph S. B. and
Silva, Claudio T.},
Title = {On the Convexification of Unstructured Grids From A
Scientific Visualization Perspective},
BookTitle = {Scientific Visualization: Extracting Information and
Knowledge from Scientific Datasets},
Editor = {Bonneau, G.-P. and Ertl, T. and Nielson, G. M.},
Publisher = {Springer-Verlag},
Year = 2005
}
@article{csilva5,
Author = {Cook, Richard and Max, Nelson and Silva, Claudio
T. and Williams, Peter},
Title = {Efficient, Exact Visibility Ordering of Unstructured
Meshes},
Journal = {IEEE Transactions on Visualization and Computer
Graphics},
Volume = 10,
Number = 6,
Pages = {695-707},
Year = 2004
}
@article{csilva6,
Author = {Fleishman, Shachar and Cohen-Or, Daniel and Silva,
Claudio T.},
Title = {Robust Moving-least Squares Fitting With Sharp
Features},
Journal = {ACM Transactions on Graphics},
Year = 2005
}
@inproceedings{csilva7,
Author = {Pesco, Sinesio and Lindstrom, Peter and Pascucci,
Valerio and Silva, Claudio T.},
Title = {Implicit Occluders},
BookTitle = {IEEE Symposium on Volume Visualization and Graphics
2004},
Pages = {47-54},
Year = 2004
}
@techreport{csilva8,
Author = {Scheidegger, Carlos and Fleishman, Shachar and
Silva, Claudio T.},
Title = {Triangulating Point Set Surfaces with Bounded Error},
institution = {University of Utah},
Year = 2005
}
@techreport{csilva9,
Author = {Vo, Huy T. and Callahan, Steven and Lindstrom, Peter
and Pascucci, Valerio and Silva, Claudio T.},
Title = {Streaming Simplification of Tetrahedral Meshes},
institution = {University of Utah},
Year = {2005}
}
@inproceedings{csilva10,
Author = {Uesu, Dirce and Bavoil, Louis and Fleishman, Shachar
and Shepherd, Jason F. and Silva, Claudio T.},
Title = {Simplification of Unstructured Tetrahedral Meshes by
Point Sampling},
BookTitle = {Volume Graphics 2005},
Year = 2005
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@proceedings{webdb2003,
editor = {Vassilis Christophides and
\freiremarkref{\meabbrev}},
title = {International Workshop on Web and Databases},
booktitle = {WebDB},
year = {2003},
OPTbibsource = {DBLP, http://dblp.uni-trier.de}
}
: , 4th Edition. McGraw-Hill Book Company 2001
@Book{silber@book,
author = {Abraham Silberschatz and Henry F. Korth and S. Sudarshan},
title = {Database System Concepts},
publisher = {McGraw-Hill},
year = {2005},
}
@Book{mitchell@book1997,
author = {Tom Mitchell},
title = {Machine Learning},
publisher = {McGraw Hill},
year = {1997},
}
@Book{baeza@book1999,
author = {Ricardo A. Baeza-Yates and Berthier A. Ribeiro-Neto},
ALTeditor = {},
title = {Modern Information Retrieval},
publisher = {ACM Press/Addison-Wesley},
year = {1999},
OPTnote = {}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@Article{eureka,
author = {John C. Shafer and Rakesh Agrawal},
title = {Continuous querying in database-centric Web applications},
journal = {Computer Networks},
year = {2000},
volume = {33},
number = {1-6},
pages = {519-531},
}
@article{mohan@deb1995,
author = {C. Mohan and
Gustavo Alonso and
Roger G{\"u}nth{\"o}r and
Mohan Kamath},
title = {Exotica: A Research Perspective ob Workflow Management Systems},
journal = {IEEE Data Eng. Bull.},
volume = {18},
number = {1},
year = {1995},
pages = {19-26},
OPTee = {db/journals/debu/MohanAGK95.html},
OPTbibsource = {DBLP, http://dblp.uni-trier.de}
}
@TechReport{alonso@ieeeexpert1997,
author = {G. Alonso and D. Agrawal and A. {El Abbadi} and C. Mohan},
title = {Functionalities and Limitations of Current Workflow Management Systems},
institution = {ETH---Zurich},
year = {1997},
OPTkey = {},
OPTtype = {},
OPTnumber = {},
OPTaddress = {},
OPTmonth = {},
OPTnote = {},
OPTannote = {}
}
@article{lee-dataflow@2002,
author = {Edward A. Lee and Thomas M. Parks},
title = {Dataflow process networks},
book = {Readings in hardware/software co-design},
year = {2002},
OPTisbn = {1-55860-702-1},
pages = {59-85},
OPTpublisher = {Kluwer Academic Publishers},
OPTaddress = {Norwell, MA, USA},
}
@InCollection{lee-dataflow@book2002,
author = {Edward A. Lee and Thomas M. Parks},
title = {Dataflow process networks},
editor = {Giovanni {de Micheli} and R. Ernst and Wayne Wolf},
booktitle = {Readings in hardware/software co-design},
publisher = {Kluwer Academic Publishers},
year = {2002},
pages = {59-85},
}
@Book{aalst@book2002,
author = {{W. van der} Aalst and {K. van} Hee},
title = {Workflow Management: Models, Methods, and
Systems},
publisher = {MIT Press},
year = {2002},
}
@inproceedings{ailamaki@ssdbm1998,
author = {Anastassia Ailamaki and
Yannis E. Ioannidis and
Miron Livny},
OPTeditor = {Maurizio Rafanelli and
Matthias Jarke},
title = {Scientific Workflow Management by Database Management},
OPTbooktitle = {10th International Conference on Scientific and Statistical Database
Management, Proceedings, Capri, Italy, July 1-3, 1998},
booktitle = {Proceedings of SSDBM},
publisher = {IEEE Computer Society},
year = {1998},
OPTisbn = {0-8186-8575-1},
pages = {190-199},
OPTee = {db/conf/ssdbm/AilamakiIL98.html},
OPTcrossref = {DBLP:conf/ssdbm/98},
OPTbibsource = {DBLP, http://dblp.uni-trier.de}
}
@Misc{taverna,
key = {Taverna},
title = {{The Taverna Project}},
OPTyear = {},
note = {\url{http://taverna.sourceforge.net}},
}
@Misc{triana,
key = {Triana},
title = {{The Triana Project}},
OPTyear = {},
note = {\url{http://www.trianacode.org}},
}
@Misc{euprovenance,
key = {Provenance},
title = {{The EU Provenance Project}},
OPTyear = {},
note = {\\\url{http://twiki.gridprovenance.org/bin/view/Provenance}},
}
@InProceedings{gupta@icdt1997,
author = {Himanshu Gupta},
title = {Selection of Views to Materialize in a Data Warehouse},
booktitle = icdt,
pages = {98-112},
year = 1997
}
@InProceedings{gupta@icdt1999,
author = {Himanshu Gupta and Inderpal Singh Mumick},
title = {Selection of Views to Materialize Under a Maintenance Cost Constraint},
booktitle = icdt,
pages = {453-470},
year = 1999
}
@Misc{sciflow2006,
key = {SCIFLOW},
title = {{IEEE Workshop on Workflow and Data Flow for Scientific Applications
(SciFlow 2006)}},
note = {\url{http://www.cc.gatech.edu/~cooperb/sciflow06}},
}
@Misc{sdm2003,
key = {SDM},
title = {{Scientific Data Management Framework Workshop}},
note = {\\ \url{http://sdm.lbl.gov/$\tilde{ }$arie/sdm/SDM.Framework.wshp.htm}},
}
@Misc{escience2004,
key = {escience},
title = {{e-Science Grid Environments Workshop}},
note = {\url{http://www.nesc.ac.uk/esi}},
}
@Article{sigmodrecord@sciflow2005,
title = {Special Section on Scientific Workflows },
year = {2005},
key = {SIGMOD},
author = { B. Ludaescher and C.Goble },
journal = {ACM SIGMOD Record},
volume = {34},
number = {3},
OPTseries = {},
OPTaddress = {},
month = sep,
OPTorganization = {},
OPTpublisher = {},
OPTnote = {},
OPTannote = {}
}
Himanshu Gupta, Venky Harinarayan, Anand Rajaraman, Jeffrey D. Ullman: Index Selection for OLAP. ICDE 1997: 208-219
@InProceedings{crossno@vis2004,
author = {Patricia Crossno and David H. Rogers and Rebecca M. Brannon and David Coblentz},
title = {Visualization of Salt-Induced Stress Perturbations},
booktitle = vis,
OPTpages = {369-376},
year = 2004
}
@InProceedings{wilson@vis2005,
author = {Andrew Wilson and Rebecca M. Brannon},
title = {Exploring 2D Tensor Fields Using Stress Nets},
booktitle = vis,
OPTpages = {2-9},
year = 2005
}
@InProceedings{levoy@VBC1990,
author = {M. Levoy and H. Fuchs and S. Pizer and J. Rosenman and E. L. Chaney and G. W. Sherouse and V. Interrante and J. Kiel},
title = {Volume Rendering in Radiation Treatment Planning},
booktitle = {Proceedings of the First Conference on Visualization in Biomedical Computing},
year = {1990},
month = {May},
}
@article{pelizzari@CRDI2000,
author = {C. A. Pelizzari and G. T. Y. Chen},
title = {Volume Visualization in Radiation Treatment Planning},
journal = {Critical Reviews in Diagnostic Imaging},
volume = {41},
number = {6},
pages = {379--364},
year = {2000}
}
@article{jankun-kelly@tvcg2007,
author = {T.J. Jankun-Kelly and Kwan-Liu Ma and Michael Gertz},
title = {A Model and Framework for Visualization Exploration},
year = {2007},
journal = {IEEE Transactions on Visualization and Computer Graphics},
volume = {13},
number = {2},
pages = {357--369},
}
@article{groth@tvcg2006,
author = {Dennis P. Groth and Kristy Streefkerk},
title = {Provenance and Annotation for Visual Exploration Systems},
journal = {IEEE Transactions on Visualization and Computer Graphics},
volume = {12},
number = {6},
year = {2006},
pages = {1500-1510},
}
@InProceedings{Freire:2006:IPAW,
author = {J. Freire and C. T. Silva and S. P. Callahan and E. Santos and C. E. Scheidegger and H. T. Vo},
title = {Managing Rapidly-Evolving Scientific Workflows},
booktitle = {International Provenance and Annotation Workshop (IPAW)},
year = {2006},
pages = {10--18},
publisher = {Springer Verlag},
series = {LNCS 4145},
}
@article{tory05a,
author = {Melanie Tory and Simeon Potts and Torsten M\"oller},
title = {A Parallel Coordinates Style Interface for Exploratory Volume Visualization},
journal = {IEEE Transactions on Visualization and Computer Graphics},
volume = {11},
number = {1},
year = {2005},
pages = {71--80},
}
@article{tory05b,
author = {Melanie Tory and Torsten M\"oller},
title = {Evaluating Visualizations: Do Expert Reviews Work?},
journal = {IEEE Computer Graphics and Applications},
volume = {25},
number = {5},
year = {2005},
pages = {8--11},
}
@article{roth01,
author = {Mark Derthick and Steven F. Roth},
title = {Enhancing Data Exploration with a Branching History of User Operations},
journal = {Knowledge Based Systems},
volume = {14},
number = {1--2},
pages = {65--74},
year = {2001},
}
@book{johnson79,
author = {Michael R. Garey and David S. Johnson},
title = {Computers and Intractability: A Guide to the Theory of NP-Completeness},
publisher = {W. H. Freeman},
isbn = {0-7167-1045-5},
pages = {202},
year = {1979},
}
@ARTICLE{myGrid:Challenge06,
AUTHOR = {Jun Zhao and Carole Goble and Robert Stevens and Daniele
Turi},
TITLE = {Mining Taverna's Semantic Web of Provenance},
JOURNAL = {Concurrency and Computation: Practice and Experience},
YEAR = {2007},
OPTKEY = {},
OPTVOLUME = {},
OPTNUMBER = {},
OPTPAGES = {},
OPTMONTH = {},
OPTNOTE = {},
OPTANNOTE = {},
ABSTRACT = {Taverna is a workflow workbench and execution environment developed as part of the UK's myGrid project. Taverna's provenance model captures: information about the origin of experimental data results collected during workflow runs; derivation paths that present a datum's lineage; an audit trail of the experiment execution leading to the data; the context of the workflow; and the evidence of the knowledge outcomes as a result of its execution. Flexible and open models are required to cater for an accumulative body of knowledge as workflows are multiply re-run, and as the same data are gathered from external repositories by different workflows. Hence we adopt the RDF graph-based data model formalism. The provenance graphs generated by workflow runs are semantically enriched with descriptions about the workflows and their products, captured during workflow design, execution, interpretation and publication. This enables context-based analysis combining origin and domain knowledge about these experimental entities. Previous work has shown how Taverna's provenance is represented using Semantic Web technologies, combining external third-party metadata with semantic annotations capturing the signatures of workflow components, leading to a ``Semantic Web of Provenance''. This paper shows how this Semantic Web of Provenance can be mined by a 5-tiered provenance usage framework, ProQA (Provenance Query and Answer). ProQA supports a wide range of provenance operations, from fine-grained provenance retrieval, to high-level provenance analysis and reasoning for supporting a collection of user scenarios. This framework is implemented as the ProQA query API, and a set of system provenance workflows that analyze experiment results using the provenance records. These provenance workflows are consistent with the experiment practice of Taverna's users, and enable the provenance of the data analysis and interpretation process to be automatically collected during the runs of these workflows. We show how these features of Taverna's provenance support us in answering the questions from the provenance challenge workshop and a set of additional provenance queries.}
}
|