Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Batch move table\ re-indexing

2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Select 'alter table' | | table_name | | 'move tablespace rpt;' from user_tables

Select 'alter index' | | index_name | | 'rebuild tablespace RPT_IDX;' from user_indexes

CREATE OR REPLACE PROCEDURE BATCH_REBUILD_INDEX (USER_NAME IN VARCHAR2) IS

S_SQL VARCHAR2 (500)

ACCOUNT NUMBER: = 0

BEGIN

FOR LINE2 IN (SELECT T.OWNER

T.INDEX_NAME

FROM ALL_INDEXES T

WHERE T.OWNER = UPPER (USER_NAME)

AND T.TABLE_TYPE = 'TABLE'

AND T.TEMPORARY ='N'

AND T.INDEX_TYPE = 'NORMAL') LOOP

S_SQL: = 'alter index' | | LINE2.OWNER | |'. | | LINE2.INDEX_NAME | | 'rebuild'

ACCOUNT: = ACCOUNT + 1

EXECUTE IMMEDIATE S_SQL

END LOOP

DBMS_OUTPUT.PUT_LINE (ACCOUNT)

EXCEPTION

WHEN OTHERS THEN

DBMS_OUTPUT.PUT_LINE (SQLERRM)

END BATCH_REBUILD_INDEX

Begin

BATCH_REBUILD_INDEX ('SCOTT')

End

Multiple tablespaces import one tablespace:

Expdp rpt/rpt dumpfile=struncuredata.dmp directory=DIR_DP logfile=structuredata.log schemas=rpt content=metadata_only

Impdp rptmgr/rptmgr directory=DIR_DP dumpfile=struncuredata.dmp remap_schema=rpt:rptmgr remap_tablespace=' (RPT:USERS,RPT_IDX:USERS,RPT_HISTORY_IDX:USERS,RPT_HISTORY:USERS) 'logfile=struncuredata.log content=metadata_only

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report