如果就是我本地的服务器
时间: 2024-02-11 21:06:44 浏览: 80
如果要将本地服务器上的Informix数据库中的表数据导出为文本文件,可以将-sserver选项设置为localhost或者127.0.0.1,例如:
```
dbexport -sserver=localhost -d mydatabase -t customers -e customers_export.unl
```
或者
```
dbexport -sserver=127.0.0.1 -d mydatabase -t customers -e customers_export.unl
```
在这里,-sserver选项指定了本地服务器的地址。
阅读全文