Oracle ϵͳ±í´óÈ«
Êý¾Ý×Öµädict×ÜÊÇÊôÓÚOracleÓû§sysµÄ¡£
¡¡¡¡1¡¢Óû§£º
¡¡¡¡¡¡select username from dba_users;
¡¡¡¡¸Ä¿ÚÁî
¡¡¡¡¡¡alter user spgroup identified by spgtest;
¡¡¡¡2¡¢±í¿Õ¼ä£º
¡¡¡¡¡¡select * from dba_data_files;
¡¡¡¡¡¡select * from dba_tablespaces;//±í¿Õ¼ä
¡¡¡¡¡¡select tablespace_name,sum(bytes), sum(blocks)
¡¡¡¡¡¡¡¡from dba_free_space group by tablespace_name;//¿ÕÏбí¿Õ¼ä
¡¡¡¡¡¡select * from dba_data_files
¡¡¡¡¡¡¡¡where tablespace_name='RBS';//±í¿Õ¼ä¶ÔÓ¦µÄÊý¾ÝÎļþ
¡¡¡¡¡¡select * from dba_segments
¡¡¡¡¡¡¡¡where tablespace_name='INDEXS';
¡¡¡¡3¡¢Êý¾Ý¿â¶ÔÏó£º
¡¡¡¡¡¡select * from dba_objects;
¡¡¡¡¡¡CLUSTER¡¢DATABASE LINK¡¢FUNCTION¡¢INDEX¡¢LIBRARY¡¢PACKAGE¡¢PACKAGE BODY¡¢
¡¡¡¡¡¡PROCEDURE¡¢SEQUENCE¡¢SYNONYM¡¢TABLE¡¢TRIGGER¡¢TYPE¡¢UNDEFINED¡¢VIEW¡£
¡¡¡¡4¡¢±í£º
¡¡¡¡¡¡select * from dba_tables;
¡¡¡¡¡¡analyze my_table compute statistics;->dba_tablesºó6ÁÐ
¡¡¡¡¡¡select extent_id,bytes from dba_extents
¡¡¡¡¡¡where segment_name='CUSTOMERS' and segment_type='TABLE'
¡¡¡¡¡¡order by extent_id;//±íʹÓõÄextentµÄÐÅÏ¢¡£segment_type='ROLLBACK'²é¿´»Ø¹ö¶ÎµÄ¿Õ¼ä·ÖÅäÐÅÏ¢
¡¡¡¡¡¡ÁÐÐÅÏ¢£º
¡¡¡¡¡¡¡¡select distinct table_name
¡¡¡¡¡¡¡¡from user_tab_columns
¡¡¡¡¡¡¡¡where column_name='SO_TYPE_ID';
¡¡¡¡5¡¢Ë÷Òý£º¡¡
¡¡¡¡¡¡select * from dba_indexes;//Ë÷Òý£¬°üÀ¨Ö÷¼üË÷Òý
¡¡¡¡¡¡select * from dba_ind_columns;//Ë÷ÒýÁÐ
¡¡¡¡¡¡select i.index_name,i.uniqueness,c.column_name
¡¡¡¡¡¡¡¡from user_indexes i,user_ind_columns c
¡¡¡¡¡¡¡¡¡¡where i.index_name=c.index_name
¡¡¡¡¡¡¡¡¡¡and i.table_name ='ACC_NBR';//Áª½ÓʹÓÃ
¡¡¡¡6¡¢ÐòÁУº
¡¡¡¡¡¡select * from dba_sequences;
¡¡¡¡7¡¢ÊÓͼ£º
¡¡¡¡¡¡select * from dba_views;
¡¡¡¡¡¡select * from all_views;
¡¡¡¡text ¿ÉÓÃÓÚ²éѯÊÓͼÉú³ÉµÄ½Å±¾
¡¡¡¡8¡¢¾Û´Ø£º
¡¡¡¡¡¡select * from dba_clusters;
¡¡¡¡9¡¢¿ìÕÕ£º
¡¡¡¡¡¡select * from dba_snapshots;
¡¡¡¡¿ìÕÕ¡¢·ÖÇøÓ¦´æÔÚÏàÓ¦µÄ±í¿Õ¼ä¡£
¡¡¡¡10¡¢Í¬Òå´Ê£º
¡¡¡¡¡¡select * from dba_synonyms
¡¡¡¡¡¡¡¡where table_owner='SPGROUP';
¡¡¡¡¡¡¡¡//if owner is PUBLIC,then the synonyms is a public synonym.
¡¡¡¡¡¡¡¡¡¡if owner is one
Ïà¹ØÎĵµ£º
²»ÊÇORACLEµÄÎÊÌâ
2009-12-30 15:00
  ......
extent--×îС¿Õ¼ä·ÖÅ䵥λ --tablespace management
block --×îСi/oµ¥Î» --segment management
create tablespace james
datafile '/export/home/oracle/oradata/james.dbf'
size 100M ¡¡¡¡¡¡¡¡¡¡¡¡--³õʼµÄÎļþ´óС¡¡
autoextend On¡¡¡¡¡¡¡¡ --×Ô¶¯Ôö³¤
next 10M¡ ......
Ò»¡¢±³¾°½éÉÜ
¡¡¡¡
¡¡¡¡½á¹¹»¯²éѯÓïÑÔ(Structured Query Language£¬¼ò³ÆSQL)ÊÇÓÃÀ´·ÃÎʹØÏµÐÍÊý¾Ý¿âÒ»ÖÖͨÓÃÓïÑÔ£¬ÊôÓÚµÚËÄ´úÓïÑÔ£¨4GL£©£¬ÆäÖ´ÐÐÌØµãÊǷǹý³Ì»¯£¬¼´²»ÓÃÖ¸Ã÷Ö´ÐеľßÌå·½·¨ºÍ;¾¶£¬¶øÊǼòµ¥µØµ÷ÓÃÏàÓ¦Óï¾äÀ´Ö±½ÓÈ¡µÃ½á¹û¼´¿É¡£ÏÔÈ»£¬ÕâÖÖ²»¹Ø×¢ÈκÎʵÏÖϸ½ÚµÄÓïÑÔ¶ÔÓÚ¿ª·¢ÕßÀ´ËµÓÐ׿«´óµÄ±ãÀû¡£È»¶ø£¬Ó ......
SELECT
T.ELES_FLG,
T.SENDUNIT_NAME,
T.ROM_SEQNO,
LTRIM(MAX(SYS_CONNECT_BY_PATH(T.MODEL, ',')), ',') MODEL
from (SELECT
......
ÔÎĵØÖ·£ºhttp://space.itpub.net/12330444/viewspace-249140
¹ØÓÚtkprofµÄÏêϸʹÓÃÇé¿ö¿ÉÔÚoracle10gÁª»úÎĵµPerformance Tuning GuideÖÐÕÒµ½¡£
TkprofÊÇÒ»¸ö·ÖÎöORACLE¸ú×ÙÎļþ²¢ÇÒ²úÉúÒ»¸ö¸ü¼ÓÈËÐÔ»¯ÇåÎúµÄÊä³ö½á¹ûµÄ¿ÉÖ´Ðй¤¾ß£»¿ÉÓÃÀ´¸ñʽ»¯sql trace²úÉúµÄÎļþ£¬ÈÃÄã¸üÈÝÒ׿´¶®traceµÄÄÚÈÝ¡£
Tkprof´æ·ÅλÖãºC:\ ......