Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Pick operating system
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Short description|Business data processing operating system released in 1965}} {{Infobox OS | name = Pick operating system | logo = | screenshot = | caption = | developer = Don Nelson<br/>Dick Pick<br/>[[TRW Inc.|TRW]] | source_model = | kernel_type = [[monolithic kernel|Monolithic]] (or none for [[operating environment]] implementations) | supported_platforms = [[Solaris (operating system)|Solaris]], [[Linux]], [[AIX]], [[Windows Server]] (2000 and up) | ui = [[text-based (computing)|Text-based]] | family = | released = 1965 ([[Generalized Information Retrieval Language System (GIRLS)|GIRLS]]), 1973 (Reality Operating System) | latest_release_version = | latest_release_date = | latest_test_version = | latest_test_date = | marketing_target = Business [[data processing]] | programmed_in = [[Assembly language]] | prog_language = Data/BASIC ([[BASIC]]-like), PROC procedure language, [[ENGLISH (programming language)|ENGLISH]] | language = [[English language|English]] | updatemodel = | package_manager = | working_state = | license = [[Proprietary software|Proprietary]] | website = }} The '''Pick Operating System''', also known as the '''Pick System''' or simply '''Pick''',<ref name=IEEE.Pick>{{cite journal |title=The pick operating system – a Practical Guide |journal=Proceedings of the IEEE |volume=77 |issue=2 |pages=363 |last1=Ramming |first1=D |last2=Bourdon |first2=Roger J. |date=1989|doi=10.1109/JPROC.1989.1203777 |s2cid=9328922 }}</ref> is a [[demand paging|demand-paged]], [[Multi-user software|multi-user]], [[virtual memory]], [[time-sharing]] [[computer]] [[operating system]] based around a [[MultiValue database]]. Pick is used primarily for business [[data processing]]. It is named after one of its developers, Dick Pick.<ref>{{Cite web |last=Woodyard |first=Chris |date=1994-10-19 |title=Software Developer Dick Pick Dies at 56 |url=https://www.latimes.com/archives/la-xpm-1994-10-19-me-52018-story.html |access-date=2023-06-17 |website=Los Angeles Times |language=en-US |archive-date=2023-03-15 |archive-url=https://web.archive.org/web/20230315113106/https://www.latimes.com/archives/la-xpm-1994-10-19-me-52018-story.html |url-status=live }}</ref><ref name="LAT.Obit94" /> The term "Pick system" has also come to be used as the general name of all [[operating environment]]s which employ this multivalued database and have some implementation of Pick/BASIC and [[ENGLISH (programming language)|ENGLISH]]/[[Access query language|Access]] queries. Although Pick started on a variety of [[minicomputer]]s, the system and its various implementations eventually spread to a large assortment of [[microcomputer]]s, personal computers,<ref>{{cite magazine|date=July 27, 1987|title=PICK Operating System – brings Mainframe Power to your PC|url=https://books.google.com/books?id=6DsEAAAAMBAJ|magazine=InfoWorld|page=80}}</ref> and [[mainframe computer]]s.<ref name=CP/> ==Overview== The Pick Operating System is an integrated computing platform with a database, query and procedural operation languages, peripheral and multi-user management, and [[BASIC]] programming capabilities. Its database utilizes a hash-file system, enabling efficient data storage and retrieval by organizing data into dynamic associative arrays managed by associative files. Data within the Pick system is organized into a hierarchical structure of accounts, dictionaries, files, and sub-files based on a [[Hash table|hash-table]] model with linear probing. This structure comprises variable-length records, fields, and sub-fields, with unique naming conventions that reflect its multivalued database characteristics. Records are identified by unique keys that facilitate direct access to their storage locations.<ref name="SiskProGuide"/> Initially constrained by the era's technological limitations, the Pick system's capacity has expanded over time, removing earlier record-size limits and introducing dynamic file allocation and [[B-tree]] indexing to enhance data management capabilities. The Pick database operates without explicit [[data type]]s,<ref name="SiskProGuide"/> treating all data as character strings, which places the onus of data integrity on the applications developed for the system. This flexibility allows Pick to store data in [[Unnormalized form|non-first-normal-form]], avoiding the need for [[Join (SQL)|join]] operations by containing all related data within single records. This approach can optimize storage and retrieval efficiency for specific kinds of datasets. ==History== Pick was originally implemented as the '''Generalized Information Retrieval Language System'''<!--boldface per [[WP:R#PLA]]--> (GIRLS) on an [[IBM System/360]] in 1965 by Don Nelson and Dick Pick at [[TRW Inc.|TRW]], whose government contract for the Cheyenne Helicopter project required developing a database.<ref name="CP">{{cite web |url=http://www.jes.com/cdp/cdp_faqx.html |title=General Overview of Classic Pick – a short history |date=1995 |access-date=2017-09-27 |archive-date=2018-08-08 |archive-url=https://web.archive.org/web/20180808233754/http://www.jes.com/cdp/cdp_faqx.html |url-status=live }}</ref> It was supposed to be used by the [[U.S. Army]] to control the inventory of [[Lockheed AH-56 Cheyenne|Cheyenne helicopter]] parts.<ref>{{cite web |author1=Nelson |first=Donald B. |date=March 19, 1965 |title=Generalized Information Retrieval Language and System (GIRLS) User Requirements Specification |url=http://www.tincat-group.com/mv/Nelson-GIRLS-1965.html |access-date=February 6, 2015 |archive-date=March 5, 2016 |archive-url=https://web.archive.org/web/20160305003745/http://www.tincat-group.com/mv/Nelson-GIRLS-1965.html |url-status=live }}</ref> Pick was subsequently commercially released in 1973 by [[Microdata Corporation]] (and its British distributor CMC) as the Reality Operating System now supplied by [[Northgate Information Solutions]].<ref>{{cite book|author=Elleray |first=Dick |date=July 16, 1986 |title=Project Management Bulletin 1986/09 – "The Reality Operating System Revealed |version=1986/09 |publisher=Project Management Group, McDonnell Douglas Informations Systems Group}}</ref> [[McDonnell Douglas]] bought Microdata in 1981.<ref name=CP/> The first Microdata implementation, called the Reality, came only with a procedural language (PROC), and a query language (ENGLISH). In 1975, Ken Simms of Pick Systems created an implementation of Dartmouth [[BASIC]] for the Reality, with numerous syntax extensions for [[Dumb terminal|smart terminal interface]] and database operations, and it was called Data/BASIC. At or near the same time, SMI of Chicago, created an extended procedural language and called it RPL. PROC, the procedure language was provided for executing [[scripting language|scripts]]. A [[SQL]]-style language called ENGLISH allowed database retrieval and reporting, but not updates (although later, the ENGLISH command "REFORMAT" allowed updates on a batch basis). ENGLISH did not fully allow manipulating the 3-dimensional multivalued structure of data records. Nor did it directly provide common [[relational database|relational]] capabilities such as [[join (SQL)|join]]s. This was because powerful [[data dictionary]] redefinitions for a field allowed joins via the execution of a calculated lookup in another file. The system included a [[spooler]]. A simple [[text editor]] for file-system records was provided, but the editor was only suitable<ref name=SiskProGuide>{{Cite web|url=https://jonsisk.com/downloads_1|title=Jonathan E. Sisk's Pick/BASIC: A Programmer's Guide|website=jonsisk.com|access-date=2023-03-04|archive-date=2023-03-04|archive-url=https://web.archive.org/web/20230304155804/https://jonsisk.com/downloads_1|url-status=live}}</ref> for system maintenance, and could not lock records, so most applications were written with the other tools such as Batch, RPL, or the BASIC language so as to ensure data validation and allow [[record locking]]. By the early 1980s observers saw the Pick Operating System as a strong competitor to [[Unix]].<ref name="fiedler198310">{{cite news |author=Fiedler, Ryan |date=October 1983 |title=The Unix Tutorial / Part 3: Unix in the Microcomputer Marketplace |pages=132 |work=BYTE |url=https://archive.org/stream/byte-magazine-1983-10/1983_10_BYTE_08-10_UNIX#page/n133/mode/2up |access-date=January 30, 2015}}</ref> ''[[BYTE]]'' in 1984 stated that "Pick is simple and powerful, and it seems to be efficient and reliable, too ... because it works well as a multiuser system, it's probably the most cost-effective way to use an [[IBM Personal Computer XT|XT]]".<ref name="rochkind1985fall">{{cite news |author=Rochkind, Marc J. |date=Fall 1985 |title=Pick, Coherent, and THEOS |pages=231 |work=BYTE |url=https://archive.org/stream/byte-magazine-1985-11/1985_11_BYTE_10-11_Inside_the_IBM_PCs#page/n233/mode/2up |access-date=March 19, 2016}}</ref> Dick Pick founded Pick & Associates, later renamed Pick Systems, then Raining Data, then ({{as of | 2011 | lc = on}}) TigerLogic, and finally Rocket Software. He licensed "Pick" to a large variety of manufacturers and vendors who have produced different "flavors" of Pick. The database flavors sold by TigerLogic were D3, mvBase, and mv Enterprise. Those previously sold by [[IBM]] under the "[[IBM U2|U2]]" umbrella are known as UniData and UniVerse. [[Rocket Software]] purchased IBM's U2 family of products in 2010 and Tiger Logic's D3 and mvBase family of products in 2014. In 2021, Rocket acquired OpenQM and jBASE as well. Dick Pick died at age 56 due to stroke complications in October 1994.<ref name="LAT.Obit94">{{Cite web |last=Johnson |first=Will |title=Richard A "Dick" Pick (d. 19 Oct 1994) |url=http://www.countyhistorian.com/knol/4hmquk6fx4gu-596-richard-a-dick-pick-d-19-oct-1994.html |website=www.countyhistorian.com |access-date=27 September 2017 |archive-date=27 September 2017 |archive-url=https://web.archive.org/web/20170927202550/http://www.countyhistorian.com/knol/4hmquk6fx4gu-596-richard-a-dick-pick-d-19-oct-1994.html |url-status=live }}</ref><ref>{{cite news |author=Woodyard |first=Chris |date=October 19, 1994 |title=Software Developer Dick Pick Died at 56 |newspaper=[[The Los Angeles Times]] |url=https://www.latimes.com/archives/la-xpm-1994-10-19-me-52018-story.html |access-date=November 13, 2022 |archive-date=October 12, 2018 |archive-url=https://web.archive.org/web/20181012065731/http://articles.latimes.com/1994-10-19/local/me-52018_1_database-management-system |url-status=live }}</ref> Pick Systems often became tangled in licensing litigation, and devoted relatively little effort to marketing<ref name="LAT.85">{{cite news |author=Lazzareschi |first=Carla |date=November 3, 1985 |title=Computer Wiz Tries Harder to Get Users to Pick His System |newspaper=[[The Los Angeles Times]] |url=https://www.latimes.com/archives/la-xpm-1985-11-03-fi-4222-story.html |access-date=November 13, 2022 |archive-date=September 28, 2017 |archive-url=https://web.archive.org/web/20170928005606/http://articles.latimes.com/1985-11-03/business/fi-4222_1_computer |url-status=live }}</ref><ref>"Pick's lack of marketing"</ref> and improving its software. Subsequent ports of Pick to other platforms generally offered the same tools and capabilities for many years, usually with relatively minor improvements and simply renamed (for example, Data/BASIC became Pick/BASIC and ENGLISH became [[Access query language|ACCESS]]).<ref name="SiskProGuide"/> Licensees often developed proprietary variations and enhancements; for example, Microdata created an input processor called ScreenPro. ==Derivative and related products== {{multiple issues|{{prose|section|date=April 2020}}{{tone|section|date=April 2020}}}} The Pick database was licensed to roughly three dozen licensees between 1978 and 1984. Application-compatible implementations evolved into derivatives and also inspired similar systems. * Reality – The first implementation of the Pick database was on a Microdata platform using firmware and called [[Northgate Information Solutions|Reality]]. The first commercial release was in 1973. Microdata acquired CMC Ltd. in the early 80s and were based in Hemel Hempstead, England. The Microdata implementations ran in [[firmware]], so each upgrade had to be accompanied by a new configuration chip. Microdata itself was eventually bought by [[McDonnell Douglas Information Systems]]. Pick and Microdata sued each other for the right to market the database, the final judgment being that they both had the right. In addition to the Reality Sequoia and Pegasus series of computers, Microdata and CMC Ltd. sold the Sequel (Sequoia) series which was a much larger class able to handle over 1000 simultaneous users. The earlier Reality minicomputers were known to handle well over 200 simultaneous users, although performance was slow and it was above the official limit. Pegasus systems superseded Sequoia and could handle even more simultaneous users than its predecessors. The modern version of this original Pick implementation is owned and distributed by Northgate Information Solutions Reality. * Ultimate – The second implementation of the Pick database was developed in about 1978 by an American company called The Ultimate Corp, run by Ted Sabarese. Like the earlier Microdata port, this was a firmware implementation, with the Pick instruction set in firmware and the monitor in assembly code on a [[Honeywell Level 6]] machine. The system had dual personalities in that the monitor/kernel functions (mostly hardware I/O and scheduling) were executed by the native Honeywell Level 6 instruction set. When the monitor "select next user" for activation control was passed to the Honeywell WCS (writable control store) to execute Pick assembler code (implemented in microcode) for the selected process. When the user's time slice expired control was passed back to the kernel running the native Level 6 instruction set. ** Ultimate took this concept further with the DEC LSI/11 family of products by implementing a co-processor in hardware (bit-slice, firmware driven). Instead of a single processor with a WCS microcode enhanced instruction set, this configuration used two independent but cooperating CPUs. The LSI11 CPU executed the monitor functions and the co-processor executed the Pick assembler instruction set. The efficiencies of this approach resulted in a 2× performance improvement. The co-processor concept was used again to create a 5×, 7×, and dual-7× versions for Honeywell Level 6 systems. Dual ported memory with private busses to the co-processors were used to increase performance of the LSI11 and Level 6 systems. ** Another version used a DEC [[LSI-11]] for the IOP and a 7X board. Ultimate enjoyed moderate success during the 1980s, and even included an implementation running as a layer on top of DEC VAX systems, the 750, 780, 785, and later the [[MicroVAX]]. Ultimate also had versions of the Ultimate Operating System running on IBM 370 series systems (under VM and native) and also the 9370 series computers. Ultimate was renamed Allerion, Inc., before liquidation of its assets. Most assets were acquired by [[Groupe Bull]], and consisted of mostly maintaining extant hardware. Bull had its own problems and in approximately 1994 the US maintenance operation was sold to [[Wang Laboratories|Wang]]. * Prime INFORMATION – Devcom, a Microdata reseller, wrote a Pick-style database system called INFORMATION in [[FORTRAN]] and assembler in 1979 to run on [[Prime Computer]] 50-series systems. It was then sold to Prime Computer and renamed Prime INFORMATION.<ref>{{cite news |last=Gill |first=Philip |date=March 24, 1986 |title=Pick Operating System Makes Converts of Users |page=93 |newspaper=[[Computerworld]] |url=https://books.google.com/books?id=MskyBf-SNfUC |access-date=November 13, 2022}}</ref> It was subsequently sold to [[VMark Software Inc]]. This was the first of the guest operating environment implementations. INFO/BASIC, a variant of [[Dartmouth BASIC]],<ref name="SiskProGuide"/> was used for database applications. * [[Applied Digital Data Systems]] (ADDS) – First developed in 1981. This was the first implementation to be done in software only, so upgrades were accomplished by a tape load, rather than a new chip. The "Mentor" line was initially based on the Zilog Z-8000 chipset and this port set off a flurry of other software implementations across a wide array of processors with a large emphasis on the [[Motorola 68000]]. * ''UniVerse'' – Another implementation of the system, called [[Rocket U2|UniVerse]], was created by VMark Software and operated under [[Unix]] and [[Microsoft Windows]]. This was the first one to incorporate the ability to emulate other implementations of the system, such as Microdata's Reality Operating System, and Prime INFORMATION. Originally running on Unix, it was later also made available for Windows. It now is owned by Rocket Software. (The systems developed by Prime Computer and VMark are now owned by Rocket Software and referred to as "U2".) * UniData – Very similar to UniVerse, but [[Rocket U2|UniData]] had facilities to interact with other Windows applications. It is also owned and distributed by Rocket Software. * PI/open – Prime Computer rewrote Prime INFORMATION in C for the Unix-based systems it was selling, calling it PI+. It was then ported to other Unix systems offered by other hardware vendors and renamed PI/open. * Fujitsu Microsystems of America – Another software implementation, existing in the late 1980s. Fujitsu Microsystems of America was acquired by Alpha Microsystems on October 28, 1989.<ref>{{Cite web |last=Olmos |first=David |date=October 28, 1989 |title=Alpha Micro Says It Will Purchase Fujitsu Company |url=https://www.latimes.com/archives/la-xpm-1989-10-28-fi-801-story.html |access-date=November 13, 2022 |website=[[The Los Angeles Times]] |archive-date=November 13, 2022 |archive-url=https://web.archive.org/web/20221113160844/https://www.latimes.com/archives/la-xpm-1989-10-28-fi-801-story.html |url-status=live }}</ref><ref>{{Cite news |date=March 11, 1990 |title=Alpha Micro Previews Apix Concurrent Pick+Unix V.4 |work=Computer Business Review}}</ref> * Pyramid – Another software implementation in the 1980s * General Automation "Zebra" – Another software implementation in the 1980s * Altos – A software implementation on an 8086 chipset platform launched around 1983. * [[Wicat]]/Pick – Another software implementation existing in the 1980s * Sequoia – Another software implementation, existing from 1984. Sequoia was most well known for its fault-tolerant multi-processor model,<ref>{{cite journal |last1=Mark |first1=Peter B. |year=1985 |title=The Sequoia computer |journal=ACM SIGARCH Computer Architecture News |publisher=Portal.acm.org |volume=13 |issue=3 |pages=232 |doi=10.1145/327070.327218 |s2cid=16954105 |doi-access=free }}</ref><ref>{{cite book |last1=Simons |first1=Barbara |url=https://books.google.com/books?id=KaoKOvqhe2YC&q=sequoia+fault-tolerant&pg=PA217 |title=Fault-tolerant distributed computing – Google Boeken |last2=Spector |first2=Alfred Z. |year=1990 |publisher=Springer |isbn=9783540973850 |access-date=January 21, 2012}}</ref> which could be dialed into with the user's permission and his switching terminal zero to remote with the key on the system console. He could watch what was done by the support person who had dialed on his terminal 0, a printer with a keyboard. Pegasus came out in 1987. The Enterprise Systems business unit (which was the unit that sold Pick), was sold to General Automation in 1996/1997.<ref>{{cite web |title=Sequoia Systems Reports Results for Second Quarter 1997 – Business Wire |url=http://www.highbeam.com/doc/1G1-19052836.html |access-date=January 21, 2012 |publisher=Highbeam.com}}{{dead link|date=February 2019|bot=medic}}{{cbignore|bot=medic}}</ref> * Revelation – In 1984, Cosmos released a Pick-style database called Revelation, later Advanced Revelation, for [[DOS]] on the [[IBM PC]]. Advanced Revelation is now owned by Revelation Technologies, which publishes a GUI-enabled version called OpenInsight. * jBASE – jBASE was released in 1991 by a small company of the same name in [[Hemel Hempstead]], England. Written by former Microdata engineers, jBASE emulates all implementations of the system to some degree. jBASE compiles applications to native machine code form, rather than to an intermediate byte code. In 2015, cloud solutions provider Zumasys<ref>{{Cite web |last= |date=January 5, 2015 |title=Zumasys Acquires jBASE Database From Temenos Software {{!}} Zumasys |url=https://www.zumasys.com/2015/01/05/zumasys-acquires-jbase-database/ |access-date=April 5, 2021 |archive-date=March 2, 2021 |archive-url=https://web.archive.org/web/20210302112246/https://www.zumasys.com/2015/01/05/zumasys-acquires-jbase-database/ |url-status=live }}</ref> in Irvine, California, acquired the jBASE distribution rights from Mpower1 as well as the intellectual property from [[Temenos Group]].<ref>{{cite web |date=January 5, 2015 |title=Zumasys Acquires jBASE Database From Temenos Software - |url=http://www.zumasys.com/admin/zumasys-acquires-jbase-database/ |website=www.zumasys.com |access-date=February 6, 2015 |archive-date=February 6, 2015 |archive-url=https://web.archive.org/web/20150206213535/http://www.zumasys.com/admin/zumasys-acquires-jbase-database/ |url-status=live }}</ref> On 14 Oct 2021, Zumasys announced they had sold their databases and tools, including jBASE to Rocket Software.<ref>{{Cite web |title=Rocket Software Acquires Database and Tools Products of Zumasys, Inc.; Companies Partner to Drive Modernization of MultiValue Applications {{!}} Rocket Software |url=https://www.rocketsoftware.com/news/rocket-software-acquires-database-and-tools-products-zumasys-inc-companies-partner-drive |access-date=November 11, 2022 |website=[[Rocket Software]] |date=14 October 2021 |archive-date=October 1, 2022 |archive-url=https://web.archive.org/web/20221001060142/https://www.rocketsoftware.com/news/rocket-software-acquires-database-and-tools-products-zumasys-inc-companies-partner-drive |url-status=live }}</ref> * UniVision – UniVision was a Pick-style database designed as a replacement for the Mentor version, but with extended features, released in 1992 by EDP in [[Sheffield]], England. * OpenQM – The only [[MultiValue]] database product available both as a fully supported non-open source commercial product and in open source form under the [[GNU General Public License|General Public License]]. OpenQM is available from its exclusive worldwide distributor, Zumasys.<ref>{{Cite web |title=Home |url=https://www.openqm.com/ |access-date=April 5, 2021 |website=OpenQM |archive-date=April 16, 2021 |archive-url=https://web.archive.org/web/20210416025223/https://www.openqm.com/ |url-status=live }}</ref> * Caché – In 2005 [[InterSystems]], the maker of [[Caché (software)|Caché]] database, announced support for a broad set of [[MultiValue]] extensions, Caché for MultiValue.<ref>{{Cite web |title=Caché for Unstructured Data Analysis {{!}} InterSystems |url=https://www.intersystems.com/products/cache/ |access-date=April 5, 2021 |website=InterSystems Corporation |language=en-US |archive-date=April 13, 2021 |archive-url=https://web.archive.org/web/20210413005308/https://www.intersystems.com/products/cache/ |url-status=live }}</ref> * ONware – ONware equips MultiValue applications with the ability to use common databases such as [[Oracle Database|Oracle]] and [[Microsoft SQL Server|SQL Server]]. Using ONware, MultiValue applications can be integrated with relational, object, and object-relational applications. * D3 – Pick Systems ported the Pick Operating System to run as a database product utilizing host [[Operating system|operating systems]] such as Unix, Linux, or Windows servers, with the data stored within the file system of the host operating system. Previous Unix or Windows versions had to run in a separate partition, which made interfacing with other applications difficult. The D3 releases opened the possibility of integrating internet access to the database or interfacing to popular word processing and spreadsheet applications, which has been successfully demonstrated by a number of users. The D3 family of databases and related tools is owned and distributed by Rocket Software. Through the implementations above, and others, Pick-like systems became available as database, programming, and emulation environments running under many variants of Unix and Microsoft Windows. ==See also == * [[MUMPS]], the predecessor of ''Caché'' * [[DBOS]], a new Database-Oriented Operating System ==References== {{reflist}} ==Bibliography== * ''The REALITY Pocket Guide''; Jonathan E. Sisk; Irvine, CA; JES & Associates, Inc.; 1981 {{OCLC|216178915}} * [https://www.dropbox.com/s/qtb2m5io54no31g/The%20PICK%20Pocket%20Guide%20by%20Jonathan%20E.%20Sisk%205th%20ed%201989.pdf?dl=0 ''The PICK Pocket Guide, 5th edition'']; Jonathan E. Sisk; Irvine, CA; Pick Systems; 1982 * [https://www.dropbox.com/s/f3eopjbsfolxlmi/Exploring%20the%20PICK%20Operating%20System%202nd%20Edition%20by%20Jonathan%20E%20Sisk%20and%20Steve%20VanArsdale.pdf?dl=0 ''Exploring The Pick Operating System, 2nd Edition'']; Jonathan E. Sisk; Steve VanArsdale; Hasbrouck Heights, N.J.; Hayden Book Co. 1985. {{OCLC|12967951}} * {{cite book |last=Taylor |first=Martin |date=1985 |title=Pick For Users |publisher=Blackwell Scientific Publications |isbn=0-632-01492-X }} * [https://www.dropbox.com/s/qtb2m5io54no31g/The%20PICK%20Pocket%20Guide%20by%20Jonathan%20E.%20Sisk%205th%20ed%201989.pdf?dl=0 ''The Pick Pocket Guide, 5th Edition'']; Jonathan E. Sisk; Desk reference ed; Hasbrouck Heights, N.J.; Hayden Book Co. 1985. {{OCLC|18872552}} * [https://www.dropbox.com/s/8p9ad0baauvvtll/The%20PICK%20Perspective%20by%20Ian%20Sandler.pdf?dl=0 ''The Pick Perspective'']; Ian Jeffrey Sandler; Blue Ridge Summit, PA; TAB Professional and Reference Books; 1989. {{OCLC|18521562}} Part of The Pick Library Series, Edited by Jonathan E. Sisk * [https://www.dropbox.com/s/fioktf7k5hfigvl/PICK%20for%20Professionals%20Advanced%20Methods%20and%20Techniques%20by%20Harvey%20E%20Rodstein.pdf?dl=0 ''Pick for Professionals : Advanced Methods and Techniques'']; Harvey Rodstein; Blue Ridge Summit, PA; TAB Professional and Reference Books; 1990. {{OCLC|20452708}} Part of The Pick Library Series, Edited by Jonathan E. Sisk * [https://www.dropbox.com/s/kmpm1eq82ehj6ze/Encyclopedia%20Pick%201st%20edition%20Oct%201992.pdf?dl=0 Encyclopedia PICK (EPICK)]; Jonathan E. Sisk; Irvine, CA; Pick Systems; 1992 {{OCLC|28725247}} * ''Le Système d'exploitation PICK''; Malcolm Bull; Paris: Masson, 1989. {{OCLC|21247561}} * ''The Pick operating system''; Joseph St John Bate; Mike Wyatt; New York : Van Nostrand Reinhold, 1986. {{OCLC|14904780}} * ''The Pick operating system''; Malcolm Bull; London; New York : Chapman and Hall, 1987. {{OCLC|13666782}} * ''Systeme pick''; Patrick Roussel, Pierre Redoin, Michel Martin; Paris: CEdi Test, 1988. {{OCLC|19546897}} * [https://www.dropbox.com/s/gvo36yj3ra7w36u/Advanced%20PICK%20%26%20UNIX%20-%20Bruno%20Beninca.pdf?dl=0 ''Advanced PICK et UNIX : la nouvelle norme informatique'']; Bruno Beninca; Aulnay-sous-Bois, Seine-Saint-Denis; Relais Informatique International, 1990. {{OCLC|23242884}} * ''Le systeme PICK : mode d'emploi d'un nouveau standard informatique''; Michel Lallement, Jeanne-Françoise Beltzer; Aulnay-sous-Bois, Seine-Saint-Denis; Relais Informatique International, 1987. {{OCLC|20877971}} * ''The Pick operating system : a practical guide''; Roger J Bourdon; Wokingham, England; Reading, Mass. : Addison-Wesley, 1987. {{OCLC| 13945808}} * ''Le Système d'éxploitation : réalités et perspectives''; Bernard de Coux; Paris : Afnor, 1988. {{OCLC|20078135}} * [https://www.dropbox.com/s/nbxn55yu7yt44g1/PICK%20BASIC%20A%20Programmers%20Guide%20by%20Jonathan%20E%20Sisk%201st%20ed%201987.pdf?dl=0 ''Pick BASIC : A Programmer's Guide'']; Jonathan E Sisk;Blue Ridge Summit, PA : TAB Professional and Reference Books, 1987. {{OCLC|16355134}} Part of The Pick Library Series, Edited by Jonathan E. Sisk *''Pick BASIC : a reference guide''; Linda Mui; Sebastopol, CA : O'Reilly & Associates, 1990. {{OCLC|22147353}} *[https://www.dropbox.com/s/20sc0oapbubyymt/Programming%20with%20IBM%20PC%20BASIC%20and%20the%20PICK%20Database%20System%20by%20David%20L%20Clark.pdf?dl=0 ''Programming with IBM PC Basic and the Pick database system'']; Blue Ridge Summit, PA : TAB Books, 1990. {{OCLC|19723037}} Part of The Pick Library Series, Edited by Jonathan E. Sisk *''An overview of PICK system'';Shailesh Kamat; 1993. {{OCLC|29287280}} *{{cite book |last1=Taylor |first1=Martin |last2=Rees |first2=Stuart |date=1995 |title=Unix and Unidata |publisher=Datamatters |isbn=1-900176-00-9 }} *''Pick: A Multilingual Operating System''; Charles M. Somerville; Computer Language Magazine, May 1987, p. 34. *[https://www.dropbox.com/s/jsvkonswwxvcon4/EPICK%20Encyclopedia%20Pick%20%28c%29%201993%20by%20PICK%20Systems.pdf?dl=0 ''Encyclopedia Pick (EPICK)'']; Jonathan E. Sisk; Pick Systems, 1993 ==External links== *[http://jes.com/gfx/people/csn_1983_11_28_antigrav_dick_001.jpg Photo of Dick Pick in his anti-gravity boots on the cover of Computer Systems News, 1983.] *[http://www.mannyneira.com/universe Life the Universe and Everything]: introduction to and online training course in Universe developed by Pick software engineer Manny Neira. *[https://www.youtube.com/watch?v=6ms0yvJAUAk Video]: "History of the PICK System" made in 1990 *[https://www.multivalue-world.com/documents Pick Publications Database] *[https://www.youtube.com/watch?v=9Sz3MDl1XRw 1987 Interview with Dick Pick in the Pick Pavilion at COMDEX] *[https://www.youtube.com/watch?v=VGNRReaQ0Og 1990 Interview with Dick Pick in the Pick Pavilion at COMDEX] *[https://www.youtube.com/watch?v=mHlRJCrxI-g 1990 Interview with Jonathan Sisk in the Pick Pavilion at COMDEX] *[https://www.youtube.com/watch?v=CFpK8440HZA&t=83s 1991 Pick Rap Show at COMDEX, co-written by Jonathan Sisk and John Treankler] *[https://www.youtube.com/watch?v=iSB6ozApdX4 1992 Video of Dick and Zion Pick, who appeared in the Ross Perot campaign rally - includes entire unedited Perot speech] *[https://seeinggreen.typepad.com/my_weblog/2020/10/the-poet-the-physicist-and-the-immigrant.html An insightful early history of the Pick System, by Chandru Murthi, who was there at the time] *[https://books.google.com/books?id=9eJxx_ZGKngC&pg=PA321 1984 PC Magazine article "Choosing the Pick of the Litter", by Jonathan E. Sisk and Steve VanArsdale] *[https://books.google.com/books?id=PfrdbIUydyoC&dq=pick/basic&pg=PA59 Database Management Approach to Operating Systems Development, by Richard A. Pick Chapter 5 of New Directions for Database Systems, Gad Ariav, James Clifford editors] *[https://www.computerhistory.org/revolution/minicomputers/11/367 Doing More With Less Hardware, Computer History Museum piece on Pick] {{Time-sharing operating systems}} {{DEFAULTSORT:Pick Operating System}} [[Category:1965 software]] [[Category:Data processing]] [[Category:Legacy systems]] [[Category:Proprietary database management systems]] [[Category:Proprietary operating systems]] [[Category:Assembly language software]] [[Category:Time-sharing operating systems]] [[Category:X86 operating systems]] [[Category:68k architecture]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:As of
(
edit
)
Template:Cbignore
(
edit
)
Template:Cite book
(
edit
)
Template:Cite journal
(
edit
)
Template:Cite magazine
(
edit
)
Template:Cite news
(
edit
)
Template:Cite web
(
edit
)
Template:Dead link
(
edit
)
Template:Infobox OS
(
edit
)
Template:Multiple issues
(
edit
)
Template:OCLC
(
edit
)
Template:Reflist
(
edit
)
Template:Short description
(
edit
)
Template:Time-sharing operating systems
(
edit
)