Difference between revisions of "Database Server"

From BaseX Documentation
Jump to navigation Jump to search
Line 1: Line 1:
 
This step by step tutorial shows you how to run BaseX in client-server mode from a terminal.  You can copy & paste the commands to get it running on your machine. After you finished this tutorial, you will be familiar with the basic administration of BaseX. Visit the [[Commands|commands section]] for a complete list of database commands.
 
This step by step tutorial shows you how to run BaseX in client-server mode from a terminal.  You can copy & paste the commands to get it running on your machine. After you finished this tutorial, you will be familiar with the basic administration of BaseX. Visit the [[Commands|commands section]] for a complete list of database commands.
  
==Start BaseX Server and Client==
+
==Start BaseX server and client==
 
Please have a look at the [[Startup Overview]], and start a server and a client instance of BaseX.
 
Please have a look at the [[Startup Overview]], and start a server and a client instance of BaseX.
  
Line 22: Line 22:
 
Databases are stored in the BaseXData directory which is located in your home folder. Depending on your operating system the location of your home folder varies. For example, on a mac it's /Users/John, if your name is John.
 
Databases are stored in the BaseXData directory which is located in your home folder. Depending on your operating system the location of your home folder varies. For example, on a mac it's /Users/John, if your name is John.
  
==Execute a Query==
+
==Execute a query==
 
The [[Commands|xquery]] command lets you run a query.
 
The [[Commands|xquery]] command lets you run a query.
 
* For example, this query returns all country nodes in the currently opened database.
 
* For example, this query returns all country nodes in the currently opened database.
Line 34: Line 34:
 
</code>
 
</code>
  
==Create a new Database==
+
==Create a new database==
 
Now we will create another database. You can find the example document here: [http://phobos101.inf.uni-konstanz.de/basex/demo].
 
Now we will create another database. You can find the example document here: [http://phobos101.inf.uni-konstanz.de/basex/demo].
  
Line 52: Line 52:
 
</code>
 
</code>
  
==Switch the Database==
+
==Switch the database==
 
* You can explicitly query the factbook database with the doc()-funtion, no matter what the current context is.
 
* You can explicitly query the factbook database with the doc()-funtion, no matter what the current context is.
 
<code>
 
<code>
Line 75: Line 75:
 
</pre>
 
</pre>
  
==Close or delete a Database==
+
==Close or delete a database==
 
* To [[Commands|close]] the current context database type:  
 
* To [[Commands|close]] the current context database type:  
 
<code>
 
<code>
Line 86: Line 86:
 
</code>
 
</code>
  
==Create a Collection==
+
==Create a collection==
 
'''What is a collection?'''
 
'''What is a collection?'''
 
With BaseX you can group documents into one logical collection. A collection is a database that contains two or more documents. Collections accept any type of XML documents, regardless of their structure.
 
With BaseX you can group documents into one logical collection. A collection is a database that contains two or more documents. Collections accept any type of XML documents, regardless of their structure.
Line 102: Line 102:
 
</code>
 
</code>
  
==Delete a Document==
+
==Delete a document==
 
* Deleting a document from a collection is very easy:
 
* Deleting a document from a collection is very easy:
 
<code>
 
<code>
Line 110: Line 110:
 
Make sure the collection which contains the xmark.xml document is opened.
 
Make sure the collection which contains the xmark.xml document is opened.
  
==Delete a Collection==
+
==Delete a collection==
 
Deleting a collection is the same as deleting a database.
 
Deleting a collection is the same as deleting a database.
  
Line 118: Line 118:
 
</code>
 
</code>
  
==Get Server Information==
+
==Get server information==
 
Several commands help to explore the state of a server. For a complete list visit the [[Commands|commands section]].
 
Several commands help to explore the state of a server. For a complete list visit the [[Commands|commands section]].
  
Line 141: Line 141:
 
</code>
 
</code>
  
==Backup and Restore==
+
==Backup and restore==
 
To backup your database, type:
 
To backup your database, type:
 
:<code>
 
:<code>

Revision as of 14:11, 17 January 2011

This step by step tutorial shows you how to run BaseX in client-server mode from a terminal. You can copy & paste the commands to get it running on your machine. After you finished this tutorial, you will be familiar with the basic administration of BaseX. Visit the commands section for a complete list of database commands.

Start BaseX server and client

Please have a look at the Startup Overview, and start a server and a client instance of BaseX.

Create a database

  • To create a database you need an XML document, e.g. factbook.xml.
  • Save this document to the directory your working in.
  • On the client terminal, run:

> CREATE DB factbook factbook.xml

factbook - is the name of the database
factbook.xml - is the xml file, which is used to create the database

If everything works you see the following lines:

Database 'factbook' created in 1950.83 ms.
Where is the database stored?

Databases are stored in the BaseXData directory which is located in your home folder. Depending on your operating system the location of your home folder varies. For example, on a mac it's /Users/John, if your name is John.

Execute a query

The xquery command lets you run a query.

  • For example, this query returns all country nodes in the currently opened database.

> XQUERY //country

  • You can also run queries in files:

> RUN /Users/John/query.xq

Create a new database

Now we will create another database. You can find the example document here: [1].

  • Create the new database, named 'xmark'.

> CREATE DB xmark xmark.xml

  • Set the new database xmark as the context:

> OPEN xmark

  • Now you can easily execute queries on your new database:

> XQUERY //people/person/name

Switch the database

  • You can explicitly query the factbook database with the doc()-funtion, no matter what the current context is.

> XQUERY doc("factbook")//country

  • Otherwise, to set factbook as the current context, execute the following:

> OPEN factbook

  • To list the current context, type:

> SHOW DATABASES

That yields the following lines:

1 opened database(s):
- factbook (1x)

Close or delete a database

  • To close the current context database type:

> CLOSE

  • Use the drop command to delete the xmark database:

> DROP DBxmark

Create a collection

What is a collection? With BaseX you can group documents into one logical collection. A collection is a database that contains two or more documents. Collections accept any type of XML documents, regardless of their structure.

Let's add the xmark.xml document to the factbook database to create a collection. The name of the original factbook database remains.

  • First make sure factbook is opened:

> OPEN factbook

  • Now add the xmark.xml document:

> ADD xmark.xml

Delete a document

  • Deleting a document from a collection is very easy:

> DELETE xmark.xml

Make sure the collection which contains the xmark.xml document is opened.

Delete a collection

Deleting a collection is the same as deleting a database.

  • To delete the collection factbook, type:

> DROP factbook

Get server information

Several commands help to explore the state of a server. For a complete list visit the commands section.

  • To see all databases on the server, type:

> LIST

  • To see which database is currently opened:

> SHOW DATABASES

  • To see the general information of the opened database, type:

> INFO

  • To see the users in BaseX, type:

> SHOW USERS

Backup and restore

To backup your database, type:

> BACKUP factbook

To restore your database, type:

> RESTORE factbook

Where is the backup-file stored?

The backup-file is stored in the database directory. The file is named factbook-timestamp.zip (db_name-timestamp.zip). To restore the database the file with the newest timestamp is taken.

See also

Standalone Tutorial, GUI Tutorial, Getting Started, Advanced Usage