02-database.md 4.2 KB
Newer Older
D
dingbo 已提交
1
---
2
sidebar_label: Database
3
title: Database
4
description: "create and drop database, show or change database parameters"
D
dingbo 已提交
5 6
---

7
## Create Datable
D
dingbo 已提交
8 9 10 11 12 13

```
CREATE DATABASE [IF NOT EXISTS] db_name [KEEP keep] [DAYS days] [UPDATE 1];
```

:::info
14 15 16 17 18 19 20 21

1. KEEP specifies the number of days for which the data in the database to be created will be kept, the default value is 3650 days, i.e. 10 years. The data will be deleted automatically once its age exceeds this threshold.
2. UPDATE specifies whether the data can be updated and how the data can be updated.
   1. UPDATE set to 0 means update operation is not allowed, the data with an existing timestamp will be dropped silently.
   2. UPDATE set to 1 means the whole row will be updated, the columns for which no value is specified will be set to NULL
   3. UPDATE set to 2 means updating a part of columns for a row is allowed, the columns for which no value is specified will be kept as no change
3. The maximum length of database name is 33 bytes.
4. The maximum length of a SQL statement is 65,480 bytes.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
5. Below are the parameters that can be used when creating a database
   - cache: [Description](/reference/config/#cache)
   - blocks: [Description](/reference/config/#blocks)
   - days: [Description](/reference/config/#days)
   - keep: [Description](/reference/config/#keep)
   - minRows: [Description](/reference/config/#minrows)
   - maxRows: [Description](/reference/config/#maxrows)
   - wal: [Description](/reference/config/#wallevel)
   - fsync: [Description](/reference/config/#fsync)
   - update: [Description](/reference/config/#update)
   - cacheLast: [Description](/reference/config/#cachelast)
   - replica: [Description](/reference/config/#replica)
   - quorum: [Description](/reference/config/#quorum)
   - maxVgroupsPerDb: [Description](/reference/config/#maxvgroupsperdb)
   - comp: [Description](/reference/config/#comp)
G
gccgdb1234 已提交
37
   - precision: [Description](/reference/config/#precision)
G
gccgdb1234 已提交
38
6. Please be noted that all of the parameters mentioned in this section can be configured in configuration file `taosd.cfg` at server side and used by default,  can be override if they are specified in `create database` statement.
39
   
D
dingbo 已提交
40 41
:::

42
## Show Current Configuration
D
dingbo 已提交
43 44 45 46 47

```
SHOW VARIABLES;
```

48
## Specify The Database In Use
D
dingbo 已提交
49 50 51 52 53

```
USE db_name;
```

54 55 56 57
:::note
This way is not applicable when using a REST connection

:::
D
dingbo 已提交
58

59
## Drop Database
D
dingbo 已提交
60 61 62 63 64

```
DROP DATABASE [IF EXISTS] db_name;
```

65 66 67 68 69
:::note
All data in the database will be deleted too. This command must be used with caution.

:::

70
## Change Database Configuration
D
dingbo 已提交
71

72
Some examples are shown below to demonstrate how to change the configuration of a database. Please be noted that some configuration parameters can be changed after the database is created, but some others can't, for details of the configuration parameters of database please refer to [Configuration Parameters](/reference/config/).
D
dingbo 已提交
73 74 75 76 77

```
ALTER DATABASE db_name COMP 2;
```

78
COMP parameter specifies whether the data is compressed and how the data is compressed.
D
dingbo 已提交
79 80 81 82 83

```
ALTER DATABASE db_name REPLICA 2;
```

84
REPLICA parameter specifies the number of replications of the database.
D
dingbo 已提交
85 86 87 88 89

```
ALTER DATABASE db_name KEEP 365;
```

90
KEEP parameter specifies the number of days for which the data will be kept.
D
dingbo 已提交
91 92 93 94 95

```
ALTER DATABASE db_name QUORUM 2;
```

96
QUORUM parameter specifies the necessary number of confirmations to determine whether the data is written successfully.
D
dingbo 已提交
97 98 99 100 101

```
ALTER DATABASE db_name BLOCKS 100;
```

102
BLOCKS parameter specifies the number of memory blocks used by each VNODE.
D
dingbo 已提交
103 104 105 106 107

```
ALTER DATABASE db_name CACHELAST 0;
```

108
CACHELAST parameter specifies whether and how the latest data of a sub table is cached.
D
dingbo 已提交
109 110

:::tip
111
The above parameters can be changed using `ALTER DATABASE` command without restarting. For more details of all configuration parameters please refer to [Configuration Parameters](/reference/config/).
D
dingbo 已提交
112

113 114
:::

115
## Show All Databases
D
dingbo 已提交
116 117 118 119 120

```
SHOW DATABASES;
```

121
## Show The Create Statement of A Database
D
dingbo 已提交
122 123 124 125 126

```
SHOW CREATE DATABASE db_name;
```

127
This command is useful when migrating the data from one TDengine cluster to another one. Firstly this command can be used to get the CREATE statement, which in turn can be used in another TDengine to create an exactly same database.