Skip to Main Content

Java Security

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Disable Java Update

0b21974f-0d85-4e86-a249-6d419064fbe4Jan 25 2019 — edited Jan 25 2019

Have created a group policy to disable Java updates by setting the following registry values:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Update\Policy

EnableAutoUpdateCheck DWORD 0

NotifyDownload         DWORD 0

EnableJavaUpdate     DWORD 0

Delete SunJavaUpdateSched for the below:

HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Run

The group policies are applying successfully and the registry entries are also updated, however the Update Tab does not disappear from the Java Control Panel. It is Java Version 8. Any idea on this, how to make the update tab disappear? The check for updates automatically is still checked in the Java Control panel, will it still

check for updates on a periodic basis, anything else needs to be done to disable the Java updates from group policy?

Comments

450441
Isn't DENSE_RANK() OVER (partition by c_id, name ... ) what you want?
Aketi Jyuuzou
with WorkView as (
SELECT 'GULSU1' NAME, 111 C_ID,10 as SortKey FROM DUAL UNION
SELECT 'GULSU1', 111,20 FROM DUAL UNION
SELECT 'GULSU1', 111,30 FROM DUAL UNION
SELECT 'GULSU1', 111,40 FROM DUAL UNION
SELECT 'GULSU1', 111,50 FROM DUAL UNION
SELECT 'GULSU1', 111,60 FROM DUAL UNION
SELECT 'GULSU1', 111,70 FROM DUAL UNION
SELECT 'GULSU1', 111,80 FROM DUAL UNION
SELECT 'GULSU1', 111,90 FROM DUAL UNION
SELECT 'GULSU2', 112,100 FROM DUAL UNION
SELECT 'GULSU2', 112,110 FROM DUAL UNION
SELECT 'GULSU2', 112,120 FROM DUAL UNION
SELECT 'GULSU2', 112,130 FROM DUAL UNION
SELECT 'GULSU2', 112,140 FROM DUAL UNION
SELECT 'GULSU2', 112,150 FROM DUAL UNION
SELECT 'GULSU2', 112,160 FROM DUAL UNION
SELECT 'GULSU1', 112,170 FROM DUAL UNION
SELECT 'GULSU1', 112,180 FROM DUAL)
select NAME,C_ID,SortKey,
sum(willSum) over(partition by NAME order by SortKey) as version
from (select NAME,C_ID,SortKey,
       case when lnnvl(NAME = Lag(NAME) over(order by SortKey))
            then 1 else 0 end as willSum
       from WorkView)
order by SortKey;

NAME    C_ID  SortKey  version
------  ----  -------  -------
GULSU1   111       10        1
GULSU1   111       20        1
GULSU1   111       30        1
GULSU1   111       40        1
GULSU1   111       50        1
GULSU1   111       60        1
GULSU1   111       70        1
GULSU1   111       80        1
GULSU1   111       90        1
GULSU2   112      100        1
GULSU2   112      110        1
GULSU2   112      120        1
GULSU2   112      130        1
GULSU2   112      140        1
GULSU2   112      150        1
GULSU2   112      160        1
GULSU1   112      170        2
GULSU1   112      180        2
On Oracke9i,
we must emulate lnnvl.

similar thread
450745

and my site :-)
http://www.geocities.jp/oraclesqlpuzzle/10-130.html
1 - 2

Post Details

Added on Jan 25 2019
0 comments
6,155 views