How to install CockroachDB for Windows Last Updated : 02 Oct, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report Prerequisite -Windows 8 or higher CockroachDB : It is built on a transactional and strongly-consistent key-value store. It is a distributed SQL database. It scales horizontally It has survives disk, machine, rack, and even datacenter failures with minimal latency disruption.It has no manual intervention.It supports strongly-consistent ACID transactions. It provides a familiar SQL API for structuring, manipulating, and querying data.Installing for Windows : Installing CockroachDB involves 3 steps as follows. DownloadAdd it to Environment variables pathRun itStep-1 : Download : The download is from here and extracts the executable someplace. People usually place that in the program files folder of the OS drive but it can be anywhere. Once it is extracted, we would copy the path as shown below. Step-2 : Adding it to the Environment variables path : We need to add it to the environment variables path so that it can be accessed from any directory on the system. To do that, press the Windows button and search for "Edit the system environment variables" and press enter. This should open a new window where you should click on the Environment Variables button as shown below. This should open another window where we would select Path and click edit. You can see the given screenshot for your reference. In the next window, clicking on the New button will add a new text field where we would paste the path to CockroachDB.exe and then click on the OK button. Step-3 : Run it : Now to check if it's done correctly we would open a Windows Power Shell or command prompt and type cockroach and press enter. This should give the following output. Comment More infoAdvertise with us Next Article How to install CockroachDB for Windows K kevalprajapatimus Follow Improve Article Tags : SQL how-to-install Similar Reads How to Install Code Blocks for C++ on Windows? In this article, we will look into the process of installing code blocks for C++ on windows. Installation Code Blocks for C++ on Windows: Follow the below steps to install Code Blocks for C++ on windows: Step 1: Open Your Web Browser Step 2: Go to the Search Panel and Search for "Code Blocks" Step 3 2 min read How to Install conda in Windows? Anaconda is open-source software that contains Jupyter, spyder, etc that is used for large data processing, data analytics, heavy scientific computing. Conda is a package and environment management system that is available across Windows, Linux, and MacOS, similar to PIP. It helps in the installatio 2 min read How to Install Cmder on Windows? Cmder is a command prompt user interface. It is often used in windows machines mainly. Generally, users like to interact with graphical user interfaces. As in command prompt in windows are not that graphical. Understanding some concepts of the GUI method is most important nowadays. Cmder is one of t 2 min read How to Install Go on Windows? Prerequisite: Introduction to Go Programming Language Before, we start with the process of Installing Golang on our System. We must have first-hand knowledge of What the Go Language is and what it actually does? Go is an open-source and statically typed programming language developed in 2007 by Robe 3 min read How to Install Anaconda on Windows Anaconda is a popular open-source distribution of Python and R and is widely used in the field of data science, machine learning and scientific computing. It contains Jupyter, Sypder, etc. that are well capable of handling a large number of data sets and processes as per user's need. It helps in sim 4 min read Like