如何从unix开发服务器获取oracle数据库参数值?
如何从unix开发服务器获取以下详细信息?
应在 .dbc 文件中提供以下参数值
它应该映射到 ETL 服务器。
dbms:<br> db_version:<br>
db_home:
<br> db_name: <br> db_nodes: <br>
case: <br>
generate_dml_with_nulls:<br>
field_type_preference:<br>
treat_blanks_as_null:<br>
oldstyle_emptystring_as_null:<br>
fully_qualify_dml: <br>
dml_with_maximum_length:<br>
interface: <br> direct_parallel:
<br>
如果我问这个问题有任何错误,请纠正我?
非常感谢!!
How to get the fallowing details from the unix development server?
The below parameter values should be provided in the .dbc file
and it should be mapped to the ETL Server .
dbms:<br> db_version:<br>
db_home:
<br> db_name: <br> db_nodes: <br>
case: <br>
generate_dml_with_nulls:<br>
field_type_preference:<br>
treat_blanks_as_null:<br>
oldstyle_emptystring_as_null:<br>
fully_qualify_dml: <br>
dml_with_maximum_length:<br>
interface: <br> direct_parallel:
<br>
Please correct me if i am any where wrong in asking this question?
Many Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从V$PARAMETER中选择*;
这将导致所有数据库参数的列表
select * from V$PARAMETER;
This will result the list of all the database parameters
如果您可以连接到它(不太确定您的问题),您可以使用以下查询找到一些有趣的信息:
If you can connect to it (not quite sure about your question), you can find some interesting information using the following query:
如果要将参数保存在文件中,可以这样做:
If you want to save parameters in a file, you can do it this way: