কিভাবে Ords Was Unable To Connect To Database সমাধান করবেন
APEX অ্যাকাউন্টের পাসওয়ার্ড পরিবর্তন করুন এবং সেই অ্যাকাউন্টগুলি আনলক করুন,কোন ব্যবহারকারীদের সেই সীমাবদ্ধ সেশন দেখার অধিকার রয়েছে...
ALTER USER APEX_PUBLIC_USER
    IDENTIFIED BY test_123
    ACCOUNT UNLOCK;
ALTER USER APEX_LISTENER
    IDENTIFIED BY test_123
    ACCOUNT UNLOCK;
ALTER USER APEX_REST_PUBLIC_USER
    IDENTIFIED BY test_123
    ACCOUNT UNLOCK;
ALTER USER ORDS_PUBLIC_USER
    IDENTIFIED BY test_123
    ACCOUNT UNLOCK; SELECT b.grantee, a.grantee || '(Role)' AS granted
  FROM dba_sys_privs a, dba_role_privs b
 WHERE a.privilege = 'RESTRICTED SESSION' AND a.grantee = b.granted_role
UNION
SELECT b.username, 'User (Direct)'
  FROM dba_sys_privs a, dba_users b
 WHERE a.privilege = 'RESTRICTED SESSION' AND a.grantee = b.username; APEX-ORDS-এর সাথে সংযোগ করার জন্য প্রয়োজনীয় কিছু ব্যবহারকারীকে ব্লক করার কারণে এই ত্রুটিটি সাধারণত ঘটে থাকে
SELECT username, account_status
    FROM dba_users
   WHERE username IN ('ANONYMOUS',
                      'APEX_210100',
                      'APEX_LISTENER',
                      'APEX_PUBLIC_USER',
                      'APEX_REST_PUBLIC_USER',
                      'APEX_INSTANCE_ADMIN_USER',
                      'ORDS_PUBLIC_USER',
                      'ORDS_METADATA',
                      'PDBADMIN',
                      'SYS',
                      'XDB')
ORDER BY username; ALTER USER ANONYMOUS
    IDENTIFIED BY test_123
    ACCOUNT UNLOCK; ALTER USER APEX_210100
    IDENTIFIED BY test_123
    ACCOUNT UNLOCK;
ALTER USER APEX_LISTENER
    IDENTIFIED BY test_123
    ACCOUNT UNLOCK;
ALTER USER APEX_PUBLIC_USER
    IDENTIFIED BY test_123
    ACCOUNT UNLOCK; CREATE PROFILE apex_profile LIMIT PASSWORD_LIFE_TIME UNLIMITED;
ALTER USER apex_public_user
    PROFILE apex_profile;
ALTER USER apex_rest_public_user
    PROFILE apex_profile;
ALTER USER apex_listener
    PROFILE apex_profile;
ALTER USER ords_public_user
    PROFILE apex_profile; SELECT instance_number,
       instance_name,
       startup_time,
       status,
       logins,
       shutdown_pending,
       database_status,
       instance_role
  FROM v$instance; 🔗 Demo Application-
        
            URL- Demo Application 
            Username - demo,
            Pass- demo  
    
 
            I hope everyone will like it. Please watch the full video, Comment on any of your problems, 
            I will try my best to solve the problem,In-Shah Allah. Everyone's cooperation is desirable. Visit my blog site, new technology related videos, you will get different types of tutorials of Oracle Apex, and hopefully, you can use them in your daily work. 
 
            Please stay tuned by subscribing to the YouTube channel, and encourages new videos to be uploaded 
            ================= 
            Visit my site to get more collaborative posts about Oracle Apex and subscribe to my YouTube channel. Thanks. 
            Comment on any of your issues, I will try my best to solve the problem, In-Shah Allah. Everyone' s cooperation is desirable.
            Visit my blog site, New technology-related videos, you will get different types of tutorials of Oracle Apex, and hopefully, you can use them in your daily work 
            ==============================
            🙍🏾 Md jABER HOSSEN
📲 Mobile-+8801760688286
            📨 Email- jaberit786@gmail.combr />
            🌐 FB- facebook.com/mdjaber.hossen1
            
            Please Subscribe to My Channel
            Many thanks for visiting the site.
    
Then Enjoy.........................


0 Comments