Literatura científica selecionada sobre o tema "Transaction systems (Computer systems)"
Crie uma referência precisa em APA, MLA, Chicago, Harvard, e outros estilos
Consulte a lista de atuais artigos, livros, teses, anais de congressos e outras fontes científicas relevantes para o tema "Transaction systems (Computer systems)".
Ao lado de cada fonte na lista de referências, há um botão "Adicionar à bibliografia". Clique e geraremos automaticamente a citação bibliográfica do trabalho escolhido no estilo de citação de que você precisa: APA, MLA, Harvard, Chicago, Vancouver, etc.
Você também pode baixar o texto completo da publicação científica em formato .pdf e ler o resumo do trabalho online se estiver presente nos metadados.
Artigos de revistas sobre o assunto "Transaction systems (Computer systems)"
Кучук, Н. Г., Г. М. Зубрицький e Г. А. Кучук. "Resource distribution method in computer systems on integrated software platforms". Системи обробки інформації, n.º 1 (168) (10 de fevereiro de 2022): 36–42. http://dx.doi.org/10.30748/soi.2022.168.04.
Texto completo da fontePolovina, Simon. "A Transaction-Oriented Architecture for Enterprise Systems". International Journal of Intelligent Information Technologies 9, n.º 4 (outubro de 2013): 69–79. http://dx.doi.org/10.4018/ijiit.2013100105.
Texto completo da fonteMarifati, Imam Soleh, e Vadlya Maarif. "Sistem Informasi Akuntansi Pemesanan dan Pembayaran (Ordering and Billing) Makanan dan Minuman Berbasis Android Pada RM. Ayam Goreng “Padamara” Purbalingga". Indonesian Journal on Software Engineering (IJSE) 4, n.º 2 (23 de julho de 2019): 33–38. http://dx.doi.org/10.31294/ijse.v4i2.5978.
Texto completo da fonteRUSINKIEWICZ, MAREK, PIOTR KRYCHNIAK e ANDRZEJ CICHOCKI. "TOWARDS A MODEL FOR MULTIDATABASE TRANSACTIONS". International Journal of Cooperative Information Systems 01, n.º 03n04 (dezembro de 1992): 579–617. http://dx.doi.org/10.1142/s0218215792000155.
Texto completo da fonteStewart, Brian H. "Transaction exchange management systems for successful systems integration". Computers & Industrial Engineering 17, n.º 1-4 (janeiro de 1989): 536–41. http://dx.doi.org/10.1016/0360-8352(89)90119-8.
Texto completo da fonteBaldoni, R. "Consistent Checkpointing for Transaction Systems". Computer Journal 44, n.º 2 (1 de fevereiro de 2001): 92–100. http://dx.doi.org/10.1093/comjnl/44.2.92.
Texto completo da fonteAppelbaum, Deniz, e Robert A. Nehmer. "Auditing Cloud-Based Blockchain Accounting Systems". Journal of Information Systems 34, n.º 2 (25 de outubro de 2019): 5–21. http://dx.doi.org/10.2308/isys-52660.
Texto completo da fonteAlekhin, V. A. "Designing Electronic Systems Using SystemC and SystemC–AMS". Russian Technological Journal 8, n.º 4 (6 de agosto de 2020): 79–95. http://dx.doi.org/10.32362/2500-316x-2020-8-4-79-95.
Texto completo da fonteRaza, Zeeshan, Irfan ul Haq, Muhammad Muneeb e Omair Shafiq. "Energy Efficient Multiprocessing Solo Mining Algorithms for Public Blockchain Systems". Scientific Programming 2021 (31 de outubro de 2021): 1–13. http://dx.doi.org/10.1155/2021/9996132.
Texto completo da fonteMarjudi, Suziyanti, Roziyani Setik, Raja Mohd Tariqi Raja Lope Ahmad, Wan Azlan Wan Hassan e Aza Azlina Md Kassim. "Utilization of Business Analytics by SMEs In Halal Supply Chain Management Transactions". JOIV : International Journal on Informatics Visualization 7, n.º 2 (5 de maio de 2023): 407. http://dx.doi.org/10.30630/joiv.7.2.1308.
Texto completo da fonteTeses / dissertações sobre o assunto "Transaction systems (Computer systems)"
Yoo, Richard M. "Adaptive transaction scheduling for transactional memory systems". Thesis, Atlanta, Ga. : Georgia Institute of Technology, 2008. http://hdl.handle.net/1853/22587.
Texto completo da fonteCommittee Chair: Lee, Hsien-Hsin; Committee Member: Blough, Douglas; Committee Member: Yalamanchili, Sudhakar.
Prabhu, Nitin Kumar Vijay. "Transaction processing in Mobile Database System". Diss., UMK access, 2006.
Encontre o texto completo da fonte"A dissertation in computer science and informatics and telecommunications and computer networking." Advisor: Vijay Kumar. Typescript. Vita. Title from "catalog record" of the print edition Description based on contents viewed Nov. 9, 2007. Includes bibliographical references (leaves 152-157). Online version of the print edition.
Chen, Jianwen, University of Western Sydney, of Science Technology and Environment College e School of Computing and Information Technology. "Data and knowledge transaction in mobile environments". THESIS_CSTE_CIT_Chen_J.xml, 2004. http://handle.uws.edu.au:8081/1959.7/806.
Texto completo da fonteDoctor of Philosophy (PhD) (Science)
Xia, Yu S. M. Massachusetts Institute of Technology. "Logical timestamps in distributed transaction processing systems". Thesis, Massachusetts Institute of Technology, 2018. https://hdl.handle.net/1721.1/122877.
Texto completo da fonteCataloged from PDF version of thesis.
Includes bibliographical references (pages 73-79).
Distributed transactions are such transactions with remote data access. They usually suffer from high network latency (compared to the internal overhead) during data operations on remote data servers, and therefore lengthen the entire transaction executiont time. This increases the probability of conflicting with other transactions, causing high abort rates. This, in turn, causes poor performance. In this work, we constructed Sundial, a distributed concurrency control algorithm that applies logical timestamps seaminglessly with a cache protocol, and works in a hybrid fashion where an optimistic approach is combined with lock-based schemes. Sundial tackles the inefficiency problem in two ways. Firstly, Sundial decides the order of transactions on the fly. Transactions get their commit timestamp according to their data access traces. Each data item in the database has logical leases maintained by the system. A lease corresponds to a version of the item. At any logical time point, only a single transaction holds the 'lease' for any particular data item. Therefore, lease holders do not have to worry about someone else writing to the item because in the logical timeline, the data writer needs to acquire a new lease which is disjoint from the holder's. This lease information is used to calculate the logical commit time for transactions. Secondly, Sundial has a novel caching scheme that works together with logical leases. The scheme allows the local data server to automatically cache data from the remote server while preserving data coherence. We benchmarked Sundial along with state-of-the-art distributed transactional concurrency control protocols. On YCSB, Sundial outperforms the second best protocol by 57% under high data access contention. On TPC-C, Sundial has a 34% improvement over the state-of-the-art candidate. Our caching scheme has performance gain comparable with hand-optimized data replication. With high access skew, it speeds the workload by up to 4.6 x.
"This work was supported (in part) by the U.S. National Science Foundation (CCF-1438955)"
by Yu Xia.
S.M.
S.M. Massachusetts Institute of Technology, Department of Electrical Engineering and Computer Science
Tang, Rong. "Transaction management in peer-to-peer multidatabase systems". Thesis, University of Ottawa (Canada), 2005. http://hdl.handle.net/10393/27055.
Texto completo da fonteGao, Shen. "Transaction logging and recovery on phase-change memory". HKBU Institutional Repository, 2013. http://repository.hkbu.edu.hk/etd_ra/1549.
Texto completo da fonteChen, Jianwen. "Data and knowledge transaction in mobile environments". Thesis, View thesis, 2004. http://handle.uws.edu.au:8081/1959.7/806.
Texto completo da fonteSleat, Philip M. "A static, transaction based design methodology for hard real-time systems". Thesis, City, University of London, 1991. http://openaccess.city.ac.uk/17414/.
Texto completo da fonteDwyer, Barry. "Automatic design of batch processing systems". Title page, abstract, table of contents and introduction only, 1999. http://web4.library.adelaide.edu.au/theses/09PH/09phd993.pdf.
Texto completo da fonteGin, Andrew. "Building a Secure Short Duration Transaction Network". Thesis, University of Canterbury. Computer Science and Software Engineering, 2007. http://hdl.handle.net/10092/1188.
Texto completo da fonteLivros sobre o assunto "Transaction systems (Computer systems)"
Krishnamurthy, E. V. Transaction processing systems. New York: Prentice Hall, 1991.
Encontre o texto completo da fonteBreitbart, Y. Overview of multidatabase transaction management. Stanford, Calif: Stanford University, Dept. of Computer Science, 1992.
Encontre o texto completo da fonteInternational Business Machines Corporation. International Technical Support Organization, ed. IBM CICS Explorer. 2a ed. [Poughkeepsie, NY: IBM Corp., International Technical Support Organization], 2010.
Encontre o texto completo da fonteMock, M. Implementing atomic objects with the RelaX transaction facility. (Dublin): Trinity College Dublin, 1992.
Encontre o texto completo da fonteClaybrook, Billy G. OLTP, online transaction processing systems. New York: J. Wiley, 1992.
Encontre o texto completo da fonteInternational Business Machines Corporation. International Technical Support Organization, ed. The complete guide to CICS transaction gateway: Configuration and administration. Poughkeepsie, NY: IBM Corp., International Technical Support Organization, 2014.
Encontre o texto completo da fonteMartin, R. Jason. Transaction processing facility: A guide for application programmers. Englewood Cliffs, N.J: Yourdon Press, 1990.
Encontre o texto completo da fonteSoparkar, Nandit R. Time-constrained transaction management: Real-time constraints in database transaction systems. Boston: Kluwer, 1996.
Encontre o texto completo da fontePrimatesta, Fulvio. TUXEDO, an open approach to OLTP. London: Prentice Hall, 1995.
Encontre o texto completo da fonteSushil, Jajodia, e Kerschberg Larry, eds. Advanced transaction models and architectures. Boston: Kluwer Academic Publishers, 1997.
Encontre o texto completo da fonteCapítulos de livros sobre o assunto "Transaction systems (Computer systems)"
DevirmiŞ, TimuÇin, e özgür Ulusoy. "A transaction model for multidatabase systems". In Lecture Notes in Computer Science, 862–65. Berlin, Heidelberg: Springer Berlin Heidelberg, 1996. http://dx.doi.org/10.1007/bfb0024787.
Texto completo da fonteWang, Jiahong, Jie Li e Hisao Kameda. "Scheduling algorithms for parallel transaction processing systems". In Lecture Notes in Computer Science, 283–97. Berlin, Heidelberg: Springer Berlin Heidelberg, 1997. http://dx.doi.org/10.1007/3-540-63371-5_29.
Texto completo da fonteLarkin, Eugene, Alexey Ivutin, Alexander Novikov e Anna Troshina. "Transaction Flows in Multi-agent Swarm Systems". In Lecture Notes in Computer Science, 43–52. Cham: Springer International Publishing, 2018. http://dx.doi.org/10.1007/978-3-319-93818-9_5.
Texto completo da fonteWietrzyk, Vlad Ingar, e Venkat Ramaswamy. "Real-time transaction scheduling in database systems". In Lecture Notes in Computer Science, 633–43. Berlin, Heidelberg: Springer Berlin Heidelberg, 1996. http://dx.doi.org/10.1007/bfb0034717.
Texto completo da fonteZhang, Youhui, Liu Dong, Gu Yu e Dongsheng Wang. "Exploring Design Space Using Transaction Level Models". In Advances in Computer Systems Architecture, 589–99. Berlin, Heidelberg: Springer Berlin Heidelberg, 2005. http://dx.doi.org/10.1007/11572961_48.
Texto completo da fonteSoparkar, Nandit, Henry F. Korth e Avi Silberschatz. "Autonomous Transaction Managers in Responsive Computing". In Responsive Computer Systems: Steps Toward Fault-Tolerant Real-Time Systems, 167–86. Boston, MA: Springer US, 1995. http://dx.doi.org/10.1007/978-1-4615-2271-3_9.
Texto completo da fonteAwan, Malik Khurram, e Agostino Cortesi. "Blockchain Transaction Analysis Using Dominant Sets". In Computer Information Systems and Industrial Management, 229–39. Cham: Springer International Publishing, 2017. http://dx.doi.org/10.1007/978-3-319-59105-6_20.
Texto completo da fonteTürker, Can, Kerstin Schwarz e Gunter Saake. "Global Transaction Termination Rules in Composite Database Systems". In Lecture Notes in Computer Science, 122–39. Berlin, Heidelberg: Springer Berlin Heidelberg, 2000. http://dx.doi.org/10.1007/3-540-45033-5_9.
Texto completo da fonteGünthör, Roger, e Stefan Jablonski. "Transaction-based application integration in workflow management systems". In Lecture Notes in Computer Science, 456–66. Berlin, Heidelberg: Springer Berlin Heidelberg, 1996. http://dx.doi.org/10.1007/bfb0034701.
Texto completo da fonteFindenig, Rainer, Thomas Leitner e Wolfgang Ecker. "Transaction-Level Modeling and Refinement Using State Charts". In Computer Aided Systems Theory - EUROCAST 2013, 134–41. Berlin, Heidelberg: Springer Berlin Heidelberg, 2013. http://dx.doi.org/10.1007/978-3-642-53856-8_17.
Texto completo da fonteTrabalhos de conferências sobre o assunto "Transaction systems (Computer systems)"
Damoah, Dominic, James B. Hayfron-Acquah, Shamo Sebastian, Edward Ansong, Brighter Agyemang e Roy Villafane. "Transaction recovery in federated distributed database systems". In 2014 International Conference on Computer Communication & Systems (ICCCS). IEEE, 2014. http://dx.doi.org/10.1109/icccs.2014.7068178.
Texto completo da fontePop, Eugen, Mihnea Alexandru Moisescu e Ioan Stefan Sacala. "A Cyber-Physical Systems Oriented Transaction Platform". In 2017 21st International Conference on Control Systems and Computer Science (CSCS). IEEE, 2017. http://dx.doi.org/10.1109/cscs.2017.76.
Texto completo da fonteHunka, Frantisek, e Roman Belunek. "Transaction Based Business Process Modeling". In 2015 Federated Conference on Computer Science and Information Systems. IEEE, 2015. http://dx.doi.org/10.15439/2015f149.
Texto completo da fonteZhou, Mingxun, Liyi Zeng, Yilin Han, Peilun Li, Fan Long, Dong Zhou, Ivan Beschastnikh e Ming Wu. "Mercury: Fast Transaction Broadcast in High Performance Blockchain Systems". In IEEE INFOCOM 2023 - IEEE Conference on Computer Communications. IEEE, 2023. http://dx.doi.org/10.1109/infocom53939.2023.10228972.
Texto completo da fonteDarwish, Saad M., Shawkat K. Guirguis e Mahmoud M. Ghozlan. "Intrusion detection in role administrated database: Transaction-based approach". In 2013 8th International Conference on Computer Engineering & Systems (ICCES). IEEE, 2013. http://dx.doi.org/10.1109/icces.2013.6707175.
Texto completo da fonteHayden, R., e J. T. Bradley. "Shared Transaction Markov Chains for fluid analysis of massively parallel systems". In amp; Simulation of Computer and Telecommunication Systems (MASCOTS). IEEE, 2009. http://dx.doi.org/10.1109/mascot.2009.5367050.
Texto completo da fonteHaetzer, Bastian, e Martin Radetzki. "Asynchronous parallel simulation with transaction events". In 2014 International Conference on Embedded Computer Systems: Architectures, Modeling, and Simulation (SAMOS XIV). IEEE, 2014. http://dx.doi.org/10.1109/samos.2014.6893217.
Texto completo da fonteGundebahar, Mucahit, e Sinem Zeynep Bastas. "Periodic transaction processing architecture with high performance in financial systems". In 2013 International Conference on Technological Advances in Electrical, Electronics and Computer Engineering (TAEECE). IEEE, 2013. http://dx.doi.org/10.1109/taeece.2013.6557303.
Texto completo da fonteNair, Srijit, Sunil Kumar Khatri e Himanshu Gupta. "A Model to Enhance Security Of Digital Transaction". In 2019 4th International Conference on Information Systems and Computer Networks (ISCON). IEEE, 2019. http://dx.doi.org/10.1109/iscon47742.2019.9036225.
Texto completo da fonteZhou, Bo, Linfeng Wang, Ning Xu, Nan Xu, Hongshan Zhang, Yanan Wang e Suhang Yao. "Application of blockchain technology in smarter energy transaction". In International Conference on Intelligent Systems, Communications, and Computer Networks (ISCCN 2022), editado por Tok Wang Ling. SPIE, 2022. http://dx.doi.org/10.1117/12.2652521.
Texto completo da fonteRelatórios de organizações sobre o assunto "Transaction systems (Computer systems)"
Khandelia, Mukul, e Shuvra S. Bhattacharyya. Contention-Conscious Transaction Ordering in Embedded Multiprocessors Systems. Fort Belvoir, VA: Defense Technical Information Center, março de 2000. http://dx.doi.org/10.21236/ada457629.
Texto completo da fonteAbbott, Russell, e Scott Cannon. Adaptive Computer Systems. Fort Belvoir, VA: Defense Technical Information Center, janeiro de 2002. http://dx.doi.org/10.21236/ada436050.
Texto completo da fonteSECRETARY OF THE AIR FORCE WASHINGTON DC. Computer Systems Management. Fort Belvoir, VA: Defense Technical Information Center, fevereiro de 2001. http://dx.doi.org/10.21236/ada405169.
Texto completo da fonteCostich, Oliver, e Sushil Jajodia. Maintaining Multilevel Transaction Atomicity in MLS Database Systems with Kernelized Architecture. Fort Belvoir, VA: Defense Technical Information Center, janeiro de 1993. http://dx.doi.org/10.21236/ada465420.
Texto completo da fonteForrest, Stephanie. Automated Diversity in Computer Systems. Fort Belvoir, VA: Defense Technical Information Center, setembro de 2005. http://dx.doi.org/10.21236/ada439916.
Texto completo da fonteHaley, Cornelius J., Steven M. LaFountain, Holly M. Traxler, Dixie B. Baker e R. Brown. Gould, Inc. Computer Systems Division. Fort Belvoir, VA: Defense Technical Information Center, dezembro de 1986. http://dx.doi.org/10.21236/ada208006.
Texto completo da fonteSteinauer, Dennis D. Security of personal computer systems. Gaithersburg, MD: National Bureau of Standards, 1985. http://dx.doi.org/10.6028/nbs.sp.500-120.
Texto completo da fontePayne, Jerome F. Recapitalization of Tactical Computer Automation Systems. Fort Belvoir, VA: Defense Technical Information Center, abril de 2002. http://dx.doi.org/10.21236/ada404333.
Texto completo da fonteSatran, J., K. Meth, C. Sapuntzakis, M. Chadalapaka e E. Zeidner. Internet Small Computer Systems Interface (iSCSI). RFC Editor, abril de 2004. http://dx.doi.org/10.17487/rfc3720.
Texto completo da fonteAndriole, S. Computer-Aided Systems Engineering. Version 01.00.00. Fort Belvoir, VA: Defense Technical Information Center, junho de 1994. http://dx.doi.org/10.21236/ada283230.
Texto completo da fonte