如何从unix开发服务器获取oracle数据库参数值?

发布于 2024-08-09 04:11:50 字数 513 浏览 2 评论 0原文

如何从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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

你怎么敢 2024-08-16 04:11:50

从V$PARAMETER中选择*;
这将导致所有数据库参数的列表

select * from V$PARAMETER;
This will result the list of all the database parameters

偏闹i 2024-08-16 04:11:50

如果您可以连接到它(不太确定您的问题),您可以使用以下查询找到一些有趣的信息:

从 v$instance 中选择*;

If you can connect to it (not quite sure about your question), you can find some interesting information using the following query:

SELECT * FROM v$instance;

短叹 2024-08-16 04:11:50

如果要将参数保存在文件中,可以这样做:

SET WRAP OFF;
SET TRIMSPOOL ON;
SPOOL memory_parameters.txt;
select * from v$parameter;
SPOOL OFF;

If you want to save parameters in a file, you can do it this way:

SET WRAP OFF;
SET TRIMSPOOL ON;
SPOOL memory_parameters.txt;
select * from v$parameter;
SPOOL OFF;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文