Topic: Database Administration >> Abount the Sql Query
|
Disclaimer: The purpose of all dbapool forums including OCP and Other Oracle Certification forums is to help each other with specific issues but not to share dump and copyrighted exam content, materials or intellectual property.
You may review the entire Oracle Certification Program Candidate Agreement online Here.
|
|
|
|
| Title: Abount the Sql Query |
| |
Posted: Feb 13, 2008 07:59:26 AM |
Total Post: 27
Joined: Feb, 2008
|
Q1.:- After dropping the table view does not dropped. then how we can see the result of view.
Q2. What is the difference between Dynamic performance table and Dynamic performance view.
Q3. How can i see the values or parameter at the time of table creation.
Q4. How can we give the unused column
Example Alter table emp_4 set unused column parameter. |
|
|
MOH_DBA |
| Posted: Feb 13, 2008 05:11:10 PM | |
|
Total Post: 155
Joined: Nov, 2007
|
Q1.:- Do you mean by the result, the status or the data? the data you cannot see, the status you can query the all_objects table as follow
select * from all_objects where status = 'INVALID'.
Q2. V$View
- These are base on x$ tables -memory structures which hold instance information and are therefore aviable when instance is in a nomount or mount state.
- They are listed in v$fixed_table.
-the v$ view (actually synonyms for v_$ views) belong tp sys user.
X$ Tables
- These are not usually quered directly; not all the information is necessarily useful, and column names tend to be abbreviated and obscure.
- the x$ tables are dynamic, and their contents are constantly changing.
- the v$ views, and the underlying X$ tables, are populated at instance startup and cleared out at shutdown.
- they hold timig information if you set the timed_statistics init.ora parameter to true or if you execute the following sql command:
alter system set timed_statistics = true;
Q3. Do you mean database parameter of table creation opetions, table creation option can be found on dba_tables.
The database parameters, you see when did the database parameters changed and compare them with table creation time.
Q4. What do you mean give unused column? the unused process like the drop column process cannot be rollbacked, unless some incomplete recovery.
|
|
|
|
|
| Time Zone: EDT |
Send this thread to your friend |
|
|
|
|
Forum Rules & Description
Who Can Read The Forum? Any registered user or guest
Who Can Post New Topics? Any registered user
Who Can Post Replies? Any registered user
|
| |
Get FREE Magazines
|
Top 10 Forum User
|
| Murtuja Khokhar | 857 |
| Mohammed Taj | 746 |
| positive fanatic | 483 |
| Jayanta Sur | 479 |
| Vigyan Kaushik | 386 |
| Gopu Gopi | 333 |
| Gitesh Trivedi | 322 |
| Vinoth Kumar | 264 |
| neeraj sharma | 258 |
| Ramesh Jois | 246 |
|
|