Gesti贸n tablespaces
Tengo una bd creada a trav茅s de un import. Las tablas debieron haberse creado en un tablespace x, pero al hacer el limport las cre贸 en el tablespace system.
Puedo hacer algo para cambiar las tablas de tablespace?
Puedo hacer algo para cambiar las tablas de tablespace?
Hi,
Puedes usar el comando:
alter table <table name> move tablespace <tablespace name>;
Para los indices puedes usar:
alter index <index name> rebuild tablespace <tablespace name>;
Si tienes otros tipos de problemas no dudes en escribir...
bye..
suerte.
Puedes usar el comando:
alter table <table name> move tablespace <tablespace name>;
Para los indices puedes usar:
alter index <index name> rebuild tablespace <tablespace name>;
Si tienes otros tipos de problemas no dudes en escribir...
bye..
suerte.
