الانتقال إلى المحتوى
View in the app

A better way to browse. Learn more.

مجموعة مستخدمي أوراكل العربية

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

مساعدة في حل الواجب

Featured Replies

بتاريخ:

Oracle DBA admin reporting Assistant



Develop a system that allows a user to login and visualize various information on Oracle Server.

At a minimum the system should allow a user to:

1. Display initialization parameter information
2. Control file information: for example Control file records section
3. Information on users
4. Display the tree tablespaces and information about tablespaces and datafiles
5. Information on the objects that belong to each tablespace
6. Statistics on performance related to the datafiles (file I/O).
7. Detailed information on fragmentation on tablespaces in the database
8. security scan reports

بتاريخ:

أخي الكريم
لن يساعدك أحد في تقديم حل أكاديمي --- اليك الحل بطريقة عملية متمنين لك النجاح وانصح اخواني الطلاب بمحاولة الحل أولا بالاجتهاد ويمكننا المساعدة في أضيق الحدود حرصا علي الفائدة التي يتمناها المحاضر لكم لا أن يتم نسخ الموضوع بأكمله وعموما هاك الحل لكن للامانه ينبغي أولا تعلم مبادئ ادارة قواعد البيانات وعمل سيرفر للتجربة وتعلم كيفية اجراء العمليات التالية للفائدة

تمنياتي لكم بدوام النجاح والتوفيق

1-Display initialization parameter information

The initialization parameters can be set in the init.ora file.
There are two common ways to find out to what value an initialization parameter is set:

* show parameter <param_name> in sql*plus, or
* select value from v$parameter where name = lower('param_name')


2-Control file information

SELECT VALUE FROM V$PARAMETER WHERE NAME = 'CONTROL_FILES';

3. Information about users
select * from all_users

4. Display the tree tablespaces and information about tablespaces and datafiles
and
5. Information on the objects that belong to each tablespace

SELECT tablespace_name
FROM dba_data_files
WHERE file_name = '<your data file name>';

SELECT file_name, status
FROM dba_data_files
WHERE tablespace_name = '<your tablespace name>';

SELECT status
FROM dba_tablespaces
WHERE tablespace_name = '<your tablespace name>';


SELECT file_name, status
FROM dba_data_files
WHERE tablespace_name = '<your tablespace name>';

SELECT name FROM v$datafile;

6. Statistics on performance related to the datafiles (file I/O).
الملف مرفق اسمه spatial_perf_twp.pdf

7. Detailed information on fragmentation on tablespaces in the database
List tablespace fragmentation information






SELECT tablespace_name,COUNT(*) AS fragments,
SUM(bytes) AS total,
MAX(bytes) AS largest
FROM dba_free_space
GROUP BY tablespace_name;


security scan reports

8. security scan reports
هي واجب لك أرجوا البحث عنها

تحياتي

spatial_perf_twp.pdf

بتاريخ:
  • كاتب الموضوع

الله لا يهينك ويوفقك دنيا وآخره

انضم إلى المناقشة

يمكنك المشاركة الآن والتسجيل لاحقاً. إذا كان لديك حساب, سجل دخولك الآن لتقوم بالمشاركة من خلال حسابك.

زائر
أضف رد على هذا الموضوع...

برجاء الإنتباه

بإستخدامك للموقع فأنت تتعهد بالموافقة على هذه البنود: سياسة الخصوصية

Account

Navigation

البحث

إعداد إشعارات المتصفح الفورية

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.