Best Of
Re: how to unset _smu_debug_mode in 11g database
Hi,
Greetings, thanks for reaching community. Please find the below inline response.
Once you set this parameter its set in the database. You dont have option to get it removed ( Workaround is below)
»set the following command to set to unset the parameter( This is default parameter value):-
SQL>alter system set "_smu_debug_mode" = 0;
Although you have one option to get it removed from show parameter.
Solution:
Get temporary pfile created from that spfile;
Edit pfile and remove that _smu_debug_mode from pfile and startup database using the modified pfile
voila…
Example:
++++
SQL> create pfile='/tmp/a.ora' from spfile;
File created.
SQL> exit
Disconnected from Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.23.0.0.0
[oracle@celvp**** ~]$ vi /tmp/a.ora
[oracle@celvp***** ~]$ cat /tmp/a.ora | grep smu
*._smu_debug_mode=0
[oracle@celvp**** ~]$ vi /tmp/a.ora
[oracle@celvp****** ~]$ sqlplus / as sysdba
SQL*Plus: Release 19.0.0.0.0 - Production on Tue Oct 22 16:19:01 2024
Version 19.23.0.0.0
Copyright (c) 1982, 2023, Oracle. All rights reserved.
Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.23.0.0.0
SQL> shut immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup pfile='/tmp/a.ora';
ORACLE instance started.
Total System Global Area 1073740632 bytes
Fixed Size 9186136 bytes
Variable Size 675282944 bytes
Database Buffers 381681664 bytes
Redo Buffers 7589888 bytes
Database mounted.
Database opened.
SQL> show parameter smu
SQL> SELECT x.ksppinm "Parameter",
Y.ksppstvl "Session Value",
Z.ksppstvl "Instance Value"
FROM x$ksppi X,
x$ksppcv Y,
x$ksppsv Z
WHERE x.indx = Y.indx
AND x.indx = z.indx
AND x.ksppinm LIKE '/_%' escape '/'
and x.ksppinm like '%smu_debug%'
order by x.ksppinm ; 2 3 4 5 6 7 8 9 10 11
++++++
_smu_debug_mode
0
0
SQL> show parameter smu
SQL»»»»»»»» NOTHING SHOWING HERE.
SQL>
Now use this pfile and change this pfile to spfile using known method.
Regards,
Rahul Kumar
[Please Mark the Answers as accepted. If it helps or resolves your issue/queries.]
Re: is it possible to clone a mounted pdb?
Hi,
basically no, it must be in open mode. why do you need that? you may open database in read only mode and then open it.
Re: newer java version certified with Java Web Starter
Hi,
For Java Web Start, Java 1.8.x is the only certified version to work.
Other than Java 1.8, webstart will not work.
Refer :
Regards,
Rajagopalan H
Re: Tax update notes-where can I find them?
Please review document Payroll for North America Tax Update Documentation (Doc ID 2820620.2).
Thanks.
Re: Tax update notes-where can I find them?
Hello,
You can find the tax update 25-B notes in the following article:
Payroll for North America Tax Update Documentation (Doc ID 2820620.2)
If you scroll down to "Tax Update 25-B / Update Image 9.2.52", you will see the PDF document to download.
Regards,
Re: Cannot select a resource list in Project type form
Hi SKG,
You are responding to a very old conversation. If you are just commenting so future readers know you had to enter a mandatory one, that's fine. If you are having an issue or want to review this discussion in regards to a more current version of the application, you may get more responses if you open a new discussion.
Regards,
J
Re: 37847857 OJVM Patch - Warning during datapatch process
I think if all objects in DBA_OBJECTS and DBA_REGISTRY are VALID, there is no point to worry. If some of them are not VALID, you should try to resolve the issue.
Re: I am looking to create a graph tool that opens the metric graph for an edge.
Personally, I am not sure if that type if tool or extension is currently available or not. I like the idea!
That said, I would recommend raising a Service Request (SR) in MOS regarding your requirement. The OCUA product support team will then investigate further for you.
Kind regards.
Re: Why are we not able to run Create Accounting online for transactions with Invoicing Rule
Hello
The pop error that you are getting usually appears when there is something wrong to account and you need to run the concurrent program separately so the error will display in the output.
If you are able to account successfully with the concurrent program but not with online create accounting option you might have a conflict with the MO profile options.
I suggest to open an SR to investigate the further.
Best regards
Maylin
Re: Can /u01/app/odaorahome size be increased while it is online?
Thanks Krisz! Why is the documentation the last place I look when it should be the first?




