David,
The ID that Data Manager logs into the DB with should be the Schema Owner.
That Schema owner USERID should have a "Default Table Space" set and it should be the one you created for Data Manager.
The first of the four tablespaces is called "HYP_DM_TBL" for this example script shown below.
It appears that your default TableSpace is set to USERS, instead of the Data Manager TableSpaces.
It is creating all the views and things in your "default" tablespace for the ID you login with, which may be Users.
This would explain why your Users tablespace is filling up instead of the DM table spaces.
See this script below is an example of how the Schema Owner should be setup: (See Bold Line)
-- Create UserID that will be Schema Owner
-- ID for this example will be "HYP_CCC3" search and replace to something else if desired.
Prompt User HYP_CCC3;
--
-- HYP_CCC3 (User)
--
Prompt User HYP_CCC3;
CREATE USER HYP_CCC3
IDENTIFIED BY <password>
DEFAULT TABLESPACE HYP_DM_TBL
TEMPORARY TABLESPACE TEMP2
PROFILE DEFAULT
ACCOUNT UNLOCK
/
-- 2 Roles for HYP_CCC3
GRANT CONNECT TO HYP_CCC3
/
-- GRANT DBA TO HYP_CCC3 -- This is not required...but it makes the installation easier!
--/
-- ALTER USER HYP_CCC3 DEFAULT ROLE ALL
--/
-- 14 System Privileges for HYP_CCC3
GRANT ANALYZE ANY TO HYP_CCC3
/
GRANT CREATE CLUSTER TO HYP_CCC3
/
GRANT CREATE INDEXTYPE TO HYP_CCC3
/
GRANT CREATE JOB TO HYP_CCC3
/
GRANT CREATE OPERATOR TO HYP_CCC3
/
GRANT CREATE PROCEDURE TO HYP_CCC3
/
GRANT CREATE SEQUENCE TO HYP_CCC3
/
GRANT CREATE SYNONYM TO HYP_CCC3
/
GRANT CREATE TABLE TO HYP_CCC3
/
GRANT CREATE MATERIALIZED VIEW TO HYP_CCC3
/
GRANT CREATE TRIGGER TO HYP_CCC3
/
GRANT CREATE TYPE TO HYP_CCC3
/
GRANT CREATE VIEW TO HYP_CCC3
/
GRANT SELECT ANY DICTIONARY TO HYP_CCC3
/
GRANT UNLIMITED TABLESPACE TO HYP_CCC3
/
-- 3 Object Privileges for HYP_CCC3
Prompt Privs on PACKAGE SYS.DBMS_RANDOM to HYP_CCC3;
GRANT EXECUTE ON SYS.DBMS_RANDOM TO HYP_CCC3
/
Prompt Privs on PACKAGE SYS.DBMS_SCHEDULER to HYP_CCC3;
GRANT EXECUTE ON SYS.DBMS_SCHEDULER TO HYP_CCC3
/
Prompt Privs on PACKAGE SYS.DBMS_XMLGEN to HYP_CCC3;
GRANT EXECUTE ON SYS.DBMS_XMLGEN TO HYP_CCC3
/