RelationalDBDesign
SiteMap
Advanced Tuning
SQL Tuning
Perform Tuning
Tuning Instance
Tuning Basics
External Environment
External Performance
«Prev
Next»
DBA Taks
Database Monitoring
Tuning Components
Tuning Roles
Network Performance
Disk I/O DB Performance
Memory Usage Performance
CPU Usage
OS Tuning Conclusion
Control File Parameters
iostat Utility
Define hot Disk
Disk Load Balancing
OS methods File Striping
OS File Striping Methods
PCTfree Striped Table
Disk IO Tuning
Managing Redo Log
Virtual Memory
Unix Memory Management
CPU Bottlenecks vmstat
Oracle Table Statistics
Reduce Memory Usage
Virtual Memory Conclusion
Redolog Files
Monitor CPU Usage
Monitor CPU via vmstat
CPU Dispatching
Changing Dispatch Priorities
Monitoring CPU Consumption
Manage Tablespace Files
Resequence Table Rows
ctas Resequence Table Rows
Remove Table Extents
Table Freelists
File Striping across disks - Exercise
Stripe Data File
Objective:
Stripe a data file evenly across five disks
Exercise scoring
This exercise is worth a total of 10 points. To receive full credit, you must correctly write the CTAS syntax required by the scenario below. Once you complete your answer, submit your answer.
Background
You must take a very large order table and move it into a new tablespace, making sure that it is evenly striped across 5 physical disks. A new tablespace must be created and the CTAS syntax written to copy the order table into its new home.
Instructions
You must give the create tablespace syntax and formulate a CTAS command that will copy the order table into its new home while splitting the customer table into 100 megabyte chunks.
Hints
Here is a template for your SQL:
Create table new_order Tablespace new_order_tablespace As Select * from order Storage (????);
Submitting your exercise
Once you enter your response into the text box, click the
Submit
Button to submit the exercise.